diff --git a/paket.dependencies b/paket.dependencies index bd54e5d..b3bd2b3 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -4,6 +4,9 @@ group Server storage: none nuget FSharp.Core + nuget Lucene.Net ~> 4.8 prerelease + nuget Lucene.Net.Analysis.Common ~> 4.8 prerelease + nuget Lucene.Net.QueryParser ~> 4.8 prerelease nuget Saturn nuget Fable.Remoting.Giraffe ~> 3 nuget Fsharp.Data diff --git a/paket.lock b/paket.lock index ba10a30..52f12b9 100644 --- a/paket.lock +++ b/paket.lock @@ -820,6 +820,18 @@ NUGET System.Xml.XmlSerializer (>= 4.3) TaskBuilder.fs (>= 2.1) Utf8Json (>= 1.3.7) + Lucene.Net (4.8.0-beta00006) + Microsoft.CSharp (>= 4.4) + Lucene.Net.Analysis.Common (4.8.0-beta00006) + Lucene.Net (>= 4.8.0-beta00006) + Lucene.Net.Queries (4.8.0-beta00006) + Lucene.Net (>= 4.8.0-beta00006) + Lucene.Net.QueryParser (4.8.0-beta00006) + Lucene.Net.Analysis.Common (>= 4.8.0-beta00006) + Lucene.Net.Queries (>= 4.8.0-beta00006) + Lucene.Net.Sandbox (>= 4.8.0-beta00006) + Lucene.Net.Sandbox (4.8.0-beta00006) + Lucene.Net (>= 4.8.0-beta00006) Microsoft.AspNetCore (2.2) Microsoft.AspNetCore.Diagnostics (>= 2.2) Microsoft.AspNetCore.HostFiltering (>= 2.2) @@ -1038,6 +1050,7 @@ NUGET Microsoft.AspNetCore.WebUtilities (2.2) Microsoft.Net.Http.Headers (>= 2.2) System.Text.Encodings.Web (>= 4.5) + Microsoft.CSharp (4.6) Microsoft.Extensions.Caching.Abstractions (3.0) Microsoft.Extensions.Primitives (>= 3.0) Microsoft.Extensions.Caching.Memory (3.0) diff --git a/src/Client/Quests/State.fs b/src/Client/Quests/State.fs index d6cc4b4..e53ae29 100644 --- a/src/Client/Quests/State.fs +++ b/src/Client/Quests/State.fs @@ -7,7 +7,8 @@ open Elmish let init route = { Sources = Shared.Remote.Empty QuestLines = Empty - QuestLine = Empty }, Cmd.ofMsg LoadSources + QuestLine = Empty + SearchResults = Empty }, Cmd.ofMsg LoadSources let urlUpdate page = match page with @@ -16,7 +17,9 @@ let urlUpdate page = | QuestLine(s, i) -> Cmd.batch [ Cmd.ofMsg (LoadQuestLine(s, i)) - Cmd.ofMsg (LoadQuestLines s) ] + //Cmd.ofMsg (LoadQuestLines s) + ] + | Search(s, st) -> Cmd.ofMsg (LoadSearchResults(s, st)) let update model = function @@ -47,4 +50,9 @@ let update model = { model with QuestLine = Loading }, Cmd.OfAsync.either (Server.API.questLineById s) i LoadQuestLineFinished LoadQuestLineError | LoadQuestLineFinished qli -> { model with QuestLine = Body qli }, Cmd.Empty - | LoadQuestLineError(_) -> failwith "Not Implemented" + | LoadQuestLineError e -> { model with QuestLine = LoadError(e |> string) }, Cmd.Empty + | LoadSearchResults(s, st) -> + { model with SearchResults = Empty }, + Cmd.OfAsync.either Server.API.questSearch (s, st) LoadSearchResultsFinished LoadSearchResultsError + | LoadSearchResultsFinished s -> { model with SearchResults = Body s }, Cmd.Empty + | LoadSearchResultsError e -> { model with SearchResults = LoadError(e |> string) }, Cmd.Empty diff --git a/src/Client/Quests/Types.fs b/src/Client/Quests/Types.fs index 0ff146c..45829ca 100644 --- a/src/Client/Quests/Types.fs +++ b/src/Client/Quests/Types.fs @@ -1,24 +1,34 @@ module Quests.Types open Shared +open Elmish type Page = | Home | SelectedSource of source: Source | QuestLine of Source * int + | Search of Source * string type Msg = + //Sources | LoadSources | LoadSourcesFinished of Source list | LoadSourcesError of exn + //QuestLines | LoadQuestLines of Source | LoadQuestLinesFinished of Shared.QuestLineInfo list | LoadQuestLinesError of exn + //QuestLine | LoadQuestLine of Source * int | LoadQuestLineFinished of Shared.QuestLine | LoadQuestLineError of exn + //Search + | LoadSearchResults of Source * string + | LoadSearchResultsFinished of QuestSearchResult list + | LoadSearchResultsError of exn type State = { Sources: Shared.Source list Remote QuestLines: Shared.QuestLineInfo list Remote - QuestLine: Shared.QuestLine Remote } + QuestLine: Shared.QuestLine Remote + SearchResults: Shared.QuestSearchResult list Remote } diff --git a/src/Client/Quests/View.fs b/src/Client/Quests/View.fs index 83153be..75e7ae0 100644 --- a/src/Client/Quests/View.fs +++ b/src/Client/Quests/View.fs @@ -4,8 +4,11 @@ open Fable.React.Standard open Fable.React.Helpers open Fable.React.Props open Fulma +open Types open Shared open Fulma.Extensions.Wikiki +open Fable.Core.JsInterop +open Elmish.Navigation let navbarSource urlMaker s = Navbar.Item.a @@ -28,7 +31,7 @@ let navbarItem (model: Types.State) currentPage urlMaker = [ Navbar.Link.a [] [ str "Quests" ] Navbar.Dropdown.div [] (sources |> List.map (navbarSource urlMaker)) ] ] -let menu s (model: Types.State) urlMaker = +let menu s (model: Types.State) urlMaker i = [ Menu.label [] [ str s ] Menu.list [] (match model.QuestLines with @@ -39,11 +42,12 @@ let menu s (model: Types.State) urlMaker = qlis |> List.map (fun qli -> Menu.Item.li - [ Menu.Item.Props - [ (s, qli.Id) - |> Types.Page.QuestLine - |> urlMaker - |> Href ] ] [ str qli.Name ])) ] + [ Menu.Item.IsActive(qli.Id = i) + Menu.Item.Props + [ (s, qli.Id) + |> Types.Page.QuestLine + |> urlMaker + |> Href ] ] [ str qli.Name ])) ] let questLineInfo (ql: Shared.QuestLineInfo) = Hero.hero [] @@ -98,8 +102,8 @@ let questLineQuestGridItem (qlq: QuestLineQuest) = SVGAttr.Y y SVGAttr.Stroke "black" ] [] ] -let questLineQuestGridConnections qlqs = - let questById id = List.tryFind (fun q -> q.Id = id) qlqs +let questLineQuestGridConnections (qlqs: QuestLineQuest list) = + let questById id = List.tryFind (fun (q: QuestLineQuest) -> q.Id = id) qlqs let prereqQuests qlq = qlq.Quest.Prerequisites |> List.choose questById let questCenter q = @@ -144,19 +148,45 @@ let questLineView ql = yield! questLineQuestGridConnections ql.Quests ] ] div [] (ql.Quests |> List.map questCard) ] +let search s (dispatch: Types.Msg -> unit) value = + Input.search + [ Input.Placeholder "Search Quests" + Input.ValueOrDefault value + Input.OnChange(fun e -> + (s, !!e.target?value) + |> LoadSearchResults + |> dispatch) ] + let view (currentPage: Types.Page) urlMaker (model: Types.State) (dispatch: Types.Msg -> unit) = - [ Columns.columns [] - [ Column.column [ Column.Width(Screen.All, Column.Is3) ] - [ Menu.menu [] - (match currentPage with - | Types.Page.Home -> [ Menu.label [] [ str "Select a source" ] ] - | Types.Page.SelectedSource s -> menu s model urlMaker - | Types.Page.QuestLine(s, i) -> menu s model urlMaker) ] - Column.column [ Column.Width(Screen.All, Column.Is9) ] - [ yield! (match model.QuestLine with - | Empty -> [ str "Select a source and a questline" ] - | Loading -> [ str "Loading QuestLine" ] - | LoadError e -> - [ sprintf "Loading QuestLine failed:\n%s" e - |> str ] - | Body ql -> questLineView ql) ] ] ] + match currentPage with + | Home -> [ str "Select a source" ] + | SelectedSource s -> + search s dispatch "" :: [ Columns.columns [] + [ Column.column [ Column.Width(Screen.All, Column.Is3) ] + [ Menu.menu [] (menu s model urlMaker -1) ] + Column.column [ Column.Width(Screen.All, Column.Is9) ] [] ] ] + | QuestLine(s, i) -> + [ Columns.columns [] + [ Column.column [ Column.Width(Screen.All, Column.Is2) ] [ Menu.menu [] (menu s model urlMaker i) ] + Column.column [ Column.Width(Screen.All, Column.Is10) ] + [ yield! (match model.QuestLine with + | Empty -> [ str "Select a source and a questline" ] + | Loading -> [ str "Loading QuestLine" ] + | LoadError e -> + [ sprintf "Loading QuestLine failed:\n%s" e + |> str ] + | Body ql -> questLineView ql) ] ] ] + | Search(s, st) -> + search s dispatch st :: match model.SearchResults with + | Empty -> [ str "Search for something" ] + | Loading -> [ str "Searching" ] + | LoadError e -> + [ str "Searching error:" + str e ] + | Body results -> + [ div [] + (results + |> List.map (fun r -> + Box.box' [] + [ Heading.h2 [] [ str r.Name ] + p [] [ str r.Description ] ])) ] diff --git a/src/Client/State.fs b/src/Client/State.fs index 82b4c15..1eacd5f 100644 --- a/src/Client/State.fs +++ b/src/Client/State.fs @@ -13,6 +13,7 @@ let pageHash = | Quests.Types.Page.Home -> "#/Quests" | Quests.Types.Page.SelectedSource s -> sprintf "#/Quests/%s" s | Quests.Types.Page.QuestLine(s, qli) -> sprintf "#/Quests/%s/%i" s qli + | Quests.Types.Page.Search(s, st) -> sprintf "#/Quests/%s/Search/%s" s st | Recipes r -> match r with | Recipes.Types.Page.Home -> "#/Recipes" @@ -61,7 +62,9 @@ let route state = map (Recipes << Recipes.Types.Page.SelectedSource) (s "Recipes" str) map (Quests Quests.Types.Page.Home) (s "Quests") map (Quests << Quests.Types.Page.SelectedSource) (s "Quests" str) - map (fun s i -> Quests.Types.Page.QuestLine(s, i) |> Quests) (s "Quests" str i32) ] state + map (fun s i -> Quests.Types.Page.QuestLine(s, i) |> Quests) (s "Quests" str i32) + map (fun s st -> Quests.Types.Page.Search(s, st) |> Quests) (s "Quests" str s "Search" str) ] + state let a loc = parseHash route loc diff --git a/src/Server/Parsers.fs b/src/Server/Parsers.fs index 246e320..08e8d13 100644 --- a/src/Server/Parsers.fs +++ b/src/Server/Parsers.fs @@ -80,7 +80,7 @@ module RecEx = module BQv3 = open Shared - type private BetterQuestingDB = FSharp.Data.JsonProvider<"./SampleData/DefaultQuests-2.0.7.6c-dev-cleaned-minified.json"> + type private BetterQuestingDB = FSharp.Data.JsonProvider<"./SampleData/DefaultQuests-2.0.7.7-dev-cleaned-minified.json"> let mapQuestLine id (ql: BetterQuestingDB.QuestLine) = { Id = ql.LineId diff --git a/src/Server/SampleData/DefaultQuests-2.0.7.6c-dev-cleaned-minified.json b/src/Server/SampleData/DefaultQuests-2.0.7.6c-dev-cleaned-minified.json deleted file mode 100644 index 8486476..0000000 --- a/src/Server/SampleData/DefaultQuests-2.0.7.6c-dev-cleaned-minified.json +++ /dev/null @@ -1 +0,0 @@ -{"format":"2.0.0","questDatabase":[{"questID":0,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§d§3§2§1§lYour first night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first task will be to find food, and a shelter for the night. The nights will be cruel, as this pack has hardcore darkness. It probably would be a good idea to collect some food now...\n\n§lNote: You don't need to keep this book, you can use tilde to open quests without the book.\n§5§5§o§o§n§m§m§n§n§l§n§e§d§c§b§a§9§8§8§7§6§5§4§r\nWe also maintain a wiki at §e§a§6§4https://gtnh.miraheze.org/wiki/Main_Page §rbe sure to check it out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1,"preRequisites":[2],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lWhere is the flint?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you might have noticed, while collecting gravel, no flint dropped for you. Well, there is a... recipe for that. Look up flint in NEI and craft some!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSticks 'n Stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This book has a built-in reading light, lucky you! Most probably you will read this text while you are waiting for the night to be over. Once it is, go out and collect some gravel and wood. Keep in mind that you need food, so look for Pam's Harvestcraft gardens. (And save some of the vegetables for seeds!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gravel","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":2,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:torch","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":3,"preRequisites":[4],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lStorage for days","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've unlocked 3x3 crafting, it's about time to make some storage for your goods. Take some of your wood, and craft a chest. You will need 4 wood, 4 planks and 1 flint."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:muttoncookedItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":4,"preRequisites":[1204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"questbook:ItemQuestBook","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMain Quests and Secondary Quests","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have made it this far notice the two new quests. See how these two quests look different? The quest with a crown is a main quest and is linked to other main quests by a thick line. You must complete the main quests to unlock the next tier. The other quest is an optional quest, and is not needed to unlock new tiers. However, optional quests often introduce you to useful items or processes.\n\nNot all main quests have a connecting line to guide you through your adventure because of book size. If there is not an obvious linked main quest at any point, try completing some of the other main quests available to you to progress."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":5,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":56,"Head":3,"HeadEXP":0,"BaseAttack":3,"Built":1,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":3,"Broken":0,"Shoddy":0,"RenderHandle":3,"Accessory":3,"MiningSpeed":400,"RenderAccessory":3,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":56},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lTools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've got a shelter, crafting table, and a place to store your items, you should make some tools. (Unless you'd like to continue punching trees with your bare hand...)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood"}},"Damage":4,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":2,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":6,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":8,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":6,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wheat_seeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lYou reap...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You won't always get food rewards from this book, so it might be a good idea to take care of that problem. As you've created a hoe already, go and find some water nearby and make a field. With this modpack you can only make farmland within range of water. Let's trade some sticks for a carrot, so you can start your own farm.\n\nTo get other wheat, use a hoe on grass away from water. You'll get Witchery seeds too, save those for later. Start planting a cotton field, it's a key early game resource."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:stick","Count":8,"Damage":0,"OreDict":"woodStick"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:carrot","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":7,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:carrot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§l...what you sow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you, by chance, did read the previous quest and planted the carrot I gave you, then you're fine. Meanwhile, you should turn some more fruits and vegetables into seeds, and increase the size of your farm to get a steady supply of food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:carrot","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potato","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":8,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:cobblestone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lGet that stone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Look at you, with your shiny flint pickaxe! Time to mine some cobblestone. Yay! (And maybe you can improve this dirt-hut too...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":9,"preRequisites":[8],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFire, fire, Grandpa!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to burn some stuff, isn't it? You can't make charcoal in it, but you sure will find some usage for it soon(tm)."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":10,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lRest in pieces","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's GLOPPing time! Go kill some pigs to gather meat. (And yes, they will drop cooked porkchops. Now isn't that useful...)"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":10,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"Saddle":0,"FallDistance":0,"InLove":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":10,"id":"Pig","Age":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-3998212785627166700,"Health":10,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14197274275598,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":5,"taskID":"bq_standard:hunt","target":"Pig","subtypes":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":11,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSharpness: Over... 5...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's about time to craft something more useful: A sword!\n\nNow that you have a sword, you will get credit for monster kills in the Kill all the things tab. Watch out, monsters in this world will chew you up and spit you out!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":12,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFluffy and red","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epic quest: Kill some sheep! (And try to get some wool, for a bed, obviously...)"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":8,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.23000000417232513,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"InLove":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":8,"id":"Sheep","Age":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":8005527541666259000,"Health":8,"Color":0,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14240014886935,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"Sheared":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":6,"taskID":"bq_standard:hunt","target":"Sheep","subtypes":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":13,"preRequisites":[12,7,444,10],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSO...TIRED...MUST...SLEEP...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sleepy time, and the end of Tier 0. Congratulations, you've built your first hideout, and you should have a steady supply of food by now. See you again in tier 1!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":14,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§5§lWhat is that...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've seen a lot of trees, but there are a few that look really special. You are sure that these trees are much more than just wood to build your home with or used to get charcoal.\nThe best place to find them is in a Magical Forest, but if you can't find them there you can try a Garden or Cherry Wood Grove.\nIf you have trouble finding them, you can build a special compass in LV to help you locate the biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":15,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"SpiceOfLife:lunchbag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lReady, set, go!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably should have a home by now. A steady supply of food is a fundamental requirement at all times. Take this journal to keep track of the things you've eaten. You will have to travel far in this tier, better be prepared!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"SpiceOfLife:lunchbag","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":16,"preRequisites":[84],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"irontank:ironTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lBetter Tank... Iron Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Storing more than 16 buckets of fluid in one tank? Sure! Just make an iron tank or upgrade the Buildcraft tank.\nDiamond tanks carry up to 64 buckets and obsidian ones are blast proof."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"irontank:ironTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":17,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSand: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In a strange vision you saw a big structure which would allow you to make charcoal. Finally some torches! According to your calculations, you will need a lot of sand for that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":128,"Damage":0,"OreDict":"sand"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:sand","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:leekbaconsoupItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":18,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBasic processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most things are unavailable at the moment, so let's begin with something simple. Take some of your cobblestone and smelt it into regular stone. Since this modpack is evil, you'll need to use wood for that. How much fun is that?!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:stone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:chisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":19,"preRequisites":[18],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lMaceration v0.1 Alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This fancy little device works (almost...) like a macerator. Some people say it's even better, since it does not require power, yay! You only need to craft one for this quest, but you probably should make some more if you can..."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":"craftingToolMortar"}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":20,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGravel: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tools will eventually lose durability. You think it would be a good idea to collect more gravel in order to provide yourself with flint for more tools. Try searching near water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gravel","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:gravel","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:baconcheeseburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":21,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:clay_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lClay: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While bored, you thought that it might be a good idea to take up pottery. You should go and find some clay, the riverbanks should have some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:clay_ball","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:clay_ball","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32233,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":22,"preRequisites":[23],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:cactus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFinite water!?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finite water is a problem, that's for sure. Last night, you had an idea. If you can drink cacti, you should also be able make water out of 8 cacti and use that for most recipes that require water. How cool is that? So what about another trade? 10 wood for... 3 cacti so you can setup a farm. Deal?\n\nTo automate the farm, place a string next to the cactus and a sand on top of the string. Now when the cactus grows, it will automatically break! You can stack this horizontally and vertically to make a very efficient cactus farm. Use water to redirect the cactus to a convenient pickup location or to above a hopper.\n\nFirst player to make a base running off of only cactus water gets a cape!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":10,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cactus","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":23,"preRequisites":[21,19],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IguanaTweaksTConstruct:clayBucketUnfired","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSomething to carry liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You tried to move water with your bare hands, which didn't work at all. Luckily, you remember how to make a bucket out of clay dust.\n\nPut it in a mortar to get small clay dust which can be crafted to clay dust."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IguanaTweaksTConstruct:clayBucketUnfired","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:peanutbuttercookiesItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:raisincookiesItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":24,"preRequisites":[25,17],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lGetting (char)coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to get yourself some charcoal. For that, we're going to build a coke oven. Good that you just collected a lot of resources! (What a coincidence...)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":26,"Damage":7,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":25,"preRequisites":[26],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:brick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnother brick in the wall","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your vision becomes more clear, you'll need bricks for your first multiblock structure. You think that 104 bricks should be enough. However, the bricks you'll need are somewhat special. Make sure to craft the correct ones!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredCokeOvenBrick","Count":104,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CokeOvenBrick","Count":104,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:baconmushroomburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":26,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lForming press v0.1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you may have noticed, you cannot turn clay into bricks directly. Well, to be fair, it wasn't a good recipe anyway. You'll probably end up with something bread-shaped. So in order to make bricks, you need a form. Get yourself a knife and a blank pattern, and cut a brick sized piece out. It's as easy as that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood","Damage":100}},"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":27,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finally, some power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a coke oven, you can start producing charcoal. The more, the better. Don't worry about the creosote oil; I have another deal for you..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:coal","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:maplecandiedbaconItem","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":28,"preRequisites":[27],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"ExtraUtilities:curtains","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper sky, Iron curtain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your newly acquired fuel source, you are now ready to process more advanced materials than stone or clay; Iron or copper, for example. Just in case you don't know, they spawn in rather large veins. Use the following quests to locate the most important veins."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":29,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8538,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnother fuel source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lignite and regular coal are the fuel sources you'll definitely need. The latter can be turned into coal coke, which is a superior fuel source to smelt your first large batch of ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":8538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":30,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11035,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Copper ingots can be created by smelting copper, chalcopyrite, or malachite ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":11035,"OreDict":"ingotAnyCopper"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:zucchinibreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:footlongItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":31,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11057,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tin ingots can be created by smelting Tin, Cassiterite, or Cassiterite Sand ore. Tin and Cassiterite ores are only found at high altitudes, but Cassiterite Sand ore is plentiful near the surface.\n\n§5§4Tip: If you get lucky and find a high altitude Tin/Cassiterite vein, save one of the Cassiterite ore to find your Mica vein later on using the ore finder wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11057,"OreDict":"ingotTin"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Natura:berryMedley","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":32,"preRequisites":[23],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:paper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBook parts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you found a way to move water around, you had another brilliant idea: Paper! Paper is no longer made with sugarcane, you will now need wood pulp. You will need a lot of wood to craft wood pulp, so better grab your axe and go chop some trees."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2809,"OreDict":"dustWood"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:paper","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:blankPattern","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":33,"preRequisites":[32],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTinker-time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While using your flint tools is fun in terms of killing pigs and cows, they are not very good, and can't be repaired. You discovered how to craft tools that could be repaired and upgraded, but for that you definitely need a more advanced crafting technique."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":34,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:GravelOre","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAluminini...um...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"However it is spelled, you will need it. You can find it in chunks of gravel on the surface.\n\nUse as little as possible and save the rest for when you get a macerator in Steam age."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:GravelOre","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32233,"OreDict":""},{"id":"TConstruct:GravelOre","Count":16,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":35,"preRequisites":[31,30],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2300,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking bronze","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've found copper and tin, you should make yourself some bronze. Use your macer... mortar to grind up some copper and tin ingots, and mix them together!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2300,"OreDict":"dustBronze"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11300,"OreDict":"ingotBronze"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:curryItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":36,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lImportant tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to craft even basic machines, you'll need new tools. Most of them can be replaced by machines later. For now, you should become familiar with each of their recipes, as you will need a lot of these tools, starting today.\n\nYour new tools can also be used to make Railcraft water tanks, a very useful multiblock considering the finite water feature.\n\nYou want to make the non-electric versions of the screwdriver and wrench."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":12,"OreDict":"craftingToolHardHammer"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":16,"OreDict":"craftingToolWrench"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":18,"OreDict":"craftingToolFile"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":22,"OreDict":"craftingToolScrewdriver"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":10,"OreDict":"craftingToolSaw"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":20,"OreDict":"craftingToolCrowbar"}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""},{"id":"harvestcraft:zucchinibakeItem","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":37,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGetting iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron can be found in multiple veins. \nMagnetite veins (y 30-180), \nchalcopyrite veins (y 5-60), \nand limonite veins (y 10-40) all contain iron ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":72,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:pumpkin_pie","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":38,"preRequisites":[30,1866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":356,"Head":14,"HeadEXP":0,"BaseAttack":4,"Built":1,"ToolEXP":0,"HarvestLevel":3,"Attack":4,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":356},"display":{"Name":"Bronze Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking better tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With aluminium and copper, you can create a pretty durable material \"Aluminum Brass\", which can be used to cast better tools. These can be used to mine some more advanced ores.\n\nBut first you need a smeltery. See the Multiblock Goals chapter in this book, or find smeltery blocks in a village nearby."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:shovelHead","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":39,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBetter storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While standard chests are good for your basic items and goods, they are not ideal for storing a large amount of ore. You should build yourself some barrels in order to keep things organized."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:fullDrawers1","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":40,"preRequisites":[35,36,1738],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou shall proceed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you've gathered and crafted all materials and tools you need for your basic steam machinery, you may now proceed to the next tier. Keep in mind that you'll need mountains of resources in order to craft even the simplest things, so you probably should stock up on all ores in this tier. But that's up to you."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17300,"OreDict":"plateBronze"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredClayBrick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:brick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:brick_block","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":17032,"OreDict":"plateIron"},{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5121,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":41,"preRequisites":[43],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.OvenGlove","Count":1,"tag":{"Durability":1000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lDon't burn your fingers!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have decided it's time to make some tasty pizza, but your fingers got burned badly. Reading an ancient cookbook you discovered a pair of magical items that would allow you to carry anything hot, even lava in a bucket.\n\n§6§5The gloves have to be placed in the Baubles ring slots of Thaumcraft.\n\n§rFor the protection effect, the hot item has to be in your active slot. I wonder if there is some way to carry more than a few buckets at a time?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":6,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.OvenGlove","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.OvenGlove","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":42,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§r§2§lCow Tipper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you had to kill some pigs and sheep to complete quests. Now it's time to kill some cows and hopefully get some leather. If you are lucky and get a cow trophy you may never need to kill another cow in the future."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":6,"taskID":"bq_standard:hunt","target":"Cow","subtypes":1}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":43,"preRequisites":[42],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Natura:barleyFood","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cotton, cotton and more cotton","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You find out that cotton is very useful, it can be used to make string, wool, and some other useful items too. Make a small cotton plantation to get tons of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:barleyFood","Count":5,"Damage":3,"OreDict":""},{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:barley.seed","Count":10,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":44,"preRequisites":[40],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWelcome to Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome, and well done so far! This tier is all about your first machines, getting more stuff from your ores and making bronze ingots in a more efficient manner.\n\nFor water, check out the Water Siding Tank multiblock in the Multiblock goals tab.\n\nTo connect up your boilers, be sure to provide water from the bottom. Wooden pipes are fine for this. Make sure you never run out of water - adding water to a hot boiler will cause it to explode!\n\nSteam will come out from the sides. Remember, steam is hot! It will destroy wooden pipes. And it can burn you if you walk on bronze pipes full of steam. Cover them with wooden planks or paper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":2,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":8538,"OreDict":""}]}]},{"questID":45,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMultiblock tanks... Railcraft tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"576 buckets of fluid, that should be enough to store all the creosote you have accumulated thus far. If that isn't enough you can make this tank bigger. The smallest tanks are 3x4x3 while the biggest are 9x8x9.\n\nHint: Fluid will auto-output (without any pumps) if you place a valve on the bottom side of the tank. You can color the tank with Buildcraft paintbrushes and the GT spray can.\n\nUse only Buckets to move fluids because cells get destroyed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":30,"Damage":0,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":2,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:machine.beta","Count":1,"Damage":1,"OreDict":""},{"id":"Railcraft:machine.beta","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:oreBerries","Count":5,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":46,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":118,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMore advanced alloys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your smeltery does a great job mixing metals into alloys, but it's not very efficient, and limited in its complexity. You need something new, so why not put your steam to some use? \n\nIt might also come in handy when processing raw rubber. You should keep an eye on recipes to see when machines offer better options to make items...\n\n§4NOTE: Like all steam machines, the output port doubles as a steam outlet when recipes complete. It must not be blocked. Also, steam is hot, remember? Change the output sideby whacking with a wrench. The 3x3 grid will show you which side the output will move to when you whack it."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":118,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":47,"preRequisites":[46],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":119,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: High speed alloys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like most machines, there is a more advanced version of the alloy smelter. Keep in mind that this machine uses a lot of steam, so you better get some more boilers first. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":119,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":48,"preRequisites":[46],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11308,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA very important alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The most important alloy (until you reach a higher tier) is undoubtedly red alloy. Fortunately, you have an alloy smelter, so grab some redstone and combine it with copper to get yourself a handful of that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":11308,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11308,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":49,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe hell is that?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get more machines, you'll need pistons. But not those amateurish ones, you need special ones, and I shall guide you in the making of them."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17308,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:fence","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":7,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":6,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:sticky_piston","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":50,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMacerator v1.0!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally you are able to make a device that will replace your mortar. However, the \"no-durability\" feature of this device comes with a cost: You need 2 diamonds for the grinding heads.\n\nThe macerator will double your ore output. Put ores through it instead of smelting directly.\n\nNOTE: Remember, don't block the output port and don't stand behind it."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":106,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:jellybeansItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":51,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":109,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lExtracting stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you'll need rubber later to make cables from wires, you should get yourself a steam extractor. You can also use this machine to get more dyes from flowers, or process different fruits into juice."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":109,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":52,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§4§3§lA clear view","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you still living in your dirt hut/cobble hovel? How about letting in some sunlight? Grind up some sand and flint and craft some glass dust. Put it in your smeltery and pour it into a casting basin to make clear glass.\n\n§4Hint: In order to use it for recipes, you have to chisel it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2939,"OreDict":"dustQuartzSand"},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":802,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2890,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:GlassBlock","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"chisel:chisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:glass","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":53,"preRequisites":[694],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":112,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHammer time v2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using 6 ingots to craft a hammer seems pretty wasteful, as this tool has durability. How nice would it be to have a machine that does the same but without having durability and using three ingots to make two plates? Guess what, there is one! And you should totally get one."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":112,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_ingot","Count":6,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":54,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lCompressing stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This rather simple device does a very important job: compression. It's main function is to press 9 ingots into a block, but it's also useful for a variety of recipes, for example making firm tofu."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":115,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":55,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":116,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lUpgrade: A better compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam compressor. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":116,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spicymustardporkItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":56,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":113,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Forge hammer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam forge hammer. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":113,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:gummybearsItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":57,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Extractor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam extractor. Uses more steam, but is almost twice as fast. You probably want to craft this, as the extractor does also extract your nerves... (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":110,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:stuffedpepperItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":58,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":107,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Better macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam macerator. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":107,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:softpretzelandmustardItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":59,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.GregTech_FluidDisplay","Count":1,"tag":{"mFluidDisplayAmount":0,"mFluidDisplayHeat":375,"mFluidState":1},"Damage":48,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSteam alternatives","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There is more than one way to get steam for your machines. This completely optional quest shows you some alternative methods for producing steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11300,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":60,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Coal boiler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This is basically just an upgrade to your current coal boiler, however it produces more than twice as much steam. Something you should consider building if you're planning to get some of the upgraded machines."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":101,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:zeppoleItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":61,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAnother use for Java, I mean Lava","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a more durable steel casing, you can use lava to make steam."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":102,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberryjellysandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":62,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe power of the sun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sun has quite a bit of power, so why not use it to produce steam? \n\nFill it with water on the bottom side to produce steam. Unlike the other boilers, this only outputs steam on the output port side.\n\n§4Hint: The solar boiler calcifies and becomes less efficient over time."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":105,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:papayajellysandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":63,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUsing steam to cook things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A rather slow process, but it's more efficient than using a regular furnace."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":103,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:lamingtonItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":64,"preRequisites":[63],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":104,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Better furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam furnace. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":104,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fairybreadItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":65,"preRequisites":[53,44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBlastoff!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's about time to make some steel. Look in the Multiblock Goals quest tab and build a Bricked Blast Furnace. Return here when you made at least 8 steel ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:breadedporkchopItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:iron_ore","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":66,"preRequisites":[67,871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32700,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lTime for some logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good news! You are now able to advance to the next tier! Bad news: You still have to craft a lot of things before you can begin. Fear not mortal, I shall guide you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":1360,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":26308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32012,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:turkeycookedItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":67,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lWired, weird?!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the very basic materials which you should memorize how to craft are wires and cables. Basically you just cut a plate into a wire with your wire cutter. Not very efficient, but there will be a better way later."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":2000,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":7,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":7,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fruitcrumbleItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":68,"preRequisites":[66,67,834,835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lYour first electronic circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steam machines are quite stupid, they just do one thing over and over again. As you advance into the electrical age, you've decided that you want the machines to have more features, like automatic output in order to create some automation. For that, you need electronic circuits."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:icecreamItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":69,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWire-Wrap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing wires without insulation seems to be a bad idea. Now that you have an extractor to extract raw rubber out of sticky resin and an alloy smelter to further process it using sulphur, you should work on getting some insulating rubber sheets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":120,"Damage":2896,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":2022,"OreDict":"dustSulfur"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":11880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:onionsoupItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":70,"preRequisites":[71,72,68],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSteam-a-licious!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You almost made it. One last crafting step is required in order to advance to Tier 2. Keep going!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberrybarItem","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":71,"preRequisites":[67,69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Motors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Motors are little devices that can turn electrical power into rotational energy. Very useful for all kind of machines, and not that difficult to craft. The pattern is always the same, only the materials change with tiers. For now you can use redstone to magnetize your iron rod. Later on you will build an Electromagnetic Polarizer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23354,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32600,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:melonsmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":72,"preRequisites":[73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Rotors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rotors are also crafted using an identical pattern with different materials. A bit annoying to craft at the moment, but you don't need a lot of them anyway."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28057,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21057,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:strawberrysmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":73,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Casings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All machines need a hull to keep their private parts together. Good news is: They are crafted in the same way for every tier, only the materials change."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:poachedpearItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":74,"preRequisites":[18],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Smeltery","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§6§a§9§8§7§6§5§4§3§2§1§0§3§f§k§f§l§6§lYou are not prepared!!!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time for something really big: A smeltery! There's a lot to craft, so better gather some resources...\n\nThe aluminium oreberries can be planted on cropsticks, and macerated to get small quantites of aluminium for molds if you cannot find aluminium gravel.\n\nNote: The book says a 3x3 base, but you can make a smeltery with a smaller base. Taller/wider smelteries can do more items at one time, conserving fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":123,"Damage":0,"OreDict":"sand"},{"id":"minecraft:gravel","Count":123,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":82,"Damage":2805,"OreDict":"dustClay"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:CraftedSoil","Count":162,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredSearedBrick","Count":162,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":162,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":28,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":7,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:LavaTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":8,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:SearedBlock","Count":2,"Damage":1,"OreDict":""},{"id":"TConstruct:CastingChannel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":9,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":2,"Damage":1,"OreDict":""},{"id":"TConstruct:SearedBlock","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":10,"consume":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":11,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:SearedBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":75,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThe water dilemma","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finite water is a problem. But fear not, there are solutions! I shall guide you to a steady supply of water. The Railcraft water siding tanks provides enough water to last the early game.\n\nThe humidity of a biome is very important and will increase the base fill rate.\n\nIf it is raining, the tank will fill much quicker.\n\nAt least one block of the water siding tank must see sky for the maximum output.\n\nThe best part is that you don't need a pump to extract water. Tanks and pipes placed next to it will be autofilled by the water siding tank.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockRubSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemTreetap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemHarz","Count":26,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":52,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:planks","Count":130,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":26,"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":10,"Damage":5101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":76,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to get some steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need steel? Uhh... fine. Let's get busy...\n\nHint: The bricked blast furnace can share walls with other ones, just like most GT multi blocks. How will this affect the air quality though...\n\nIf you are short on Stone Dust, you can get more by macerating cobblestone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:clay_ball","Count":720,"Damage":0,"OreDict":""},{"id":"minecraft:cobblestone","Count":24,"Damage":0,"OreDict":""},{"id":"minecraft:flint","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":28,"Damage":17032,"OreDict":"plateIron"},{"id":"minecraft:furnace","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMachine","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":144,"Damage":2805,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2299,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2939,"OreDict":"dustQuartzSand"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredClayBrick","Count":432,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:brick","Count":432,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":108,"Damage":2625,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":108,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":32110,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":8,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":32111,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":9,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2934,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":10,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":36,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":11,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":2,"choices":[{"id":"TConstruct:oreBerries","Count":10,"Damage":5,"OreDict":""},{"id":"TConstruct:oreBerries","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:oreBerries","Count":10,"Damage":1,"OreDict":""}]}]},{"questID":77,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§r§6§l§5§l§o§l§r§6§lEBF-Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get alumin(i)um ingots, you need an electric blast furnace. It's another very important step towards victory, so let's get started.\n\nGetting the heating coils might be a little tricky...\n\n§4(You need 2 LV hatches with 4A of 32V total, or 3 LV hatches with MOOOORE power if the multiblock is not fully repaired)\n\n§rA few recipes produce CO2/SO2 as fluid. You can put an output fluid hatch to the top layer of the EBF to collect it otherwise it gets auto voided. It depends on the muffler hatch how much fluid you can recover. Max muffler recovers = 78 percent.\n\nMoron always says - Make Muffler Moint Mup. Or point up, anyways.\n\nIf you want a really fancy EBF, you can add more input fluid hatches and store different fluids in each one.\n\n§4If the pollution gets really bad, check in GT++ Multiblocks for a pollution scrubber."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":11,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":71,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":81,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":91,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":41,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":128,"Damage":1341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":75,"Damage":0,"OreDict":""}]}]},{"questID":78,"preRequisites":[77,81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #1: More heat - Kanthal Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better materials need higher temperatures. You can just exchange the old coils with the new ones. Kanthal coils let you reach 2700 K. You can even reuse the old coils in other machines, how fancy is that!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":79,"preRequisites":[78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #2: Higher tier - Nichrome Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach the 3600k heat capacity of your EBF, so you can process high-tier materials like tungsten, you need nichrome heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":80,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCompress all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Martin's (DreamMasterXXL) favourite machine. Compress ALL the things! With explosives, of course. Boom today!\n\nNote: You might want to put this far from your living quarters, the pollution can get high really fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:cobblestone_compressed","Count":1,"Damage":3,"OreDict":""},{"id":"ExtraUtilities:cobblestone_compressed","Count":1,"Damage":11,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":81,"preRequisites":[940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1002,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAt the end of...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...the universe everything freezes eventually. But waiting for the heat death of the universe might take too long. Therefore we present you the vacuum freezer. It should be good enough to cool your hot stuff. You will need a minimum of 16 frost proof machine casings, the rest depends on your setup.\n\nYou will need to make EV circuits in a cleanroom to build this machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1002,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":21,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:neapolitanicecreamItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":82,"preRequisites":[684,698],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:tile.Charcoal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§7§6§lAn unexpected Bonus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Because we're nice developers, we decided to add a little bonus if you happen to compress charcoal. Not only does it allow you to process more than 16 steel at a time (not in the bricked blast furnace), it also yields 10 times the burn time of a piece of charcoal. So one charcoal for free. This bonus only occurs on the first compression step. (But for fanciness, you should definitely get a quintuple one!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:tile.QuintupleCompressedCharcoal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":10,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":10,"Damage":2,"OreDict":""}]}]},{"questID":83,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHigh speed charcoal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, those coke ovens are nice, but they aren't even remotely fast enough to keep up with a large steam boiler. Luckily, there is an upgrade available! The creosote oil will not be produced, but the process will speed up dramatically. Who needs that nasty yellowish flammable stuff anyway..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:netherbrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HotNetherrackBrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CokeOvenBrick","Count":68,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.InfernalBrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.AdvancedCokeOvenBrick","Count":136,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":34,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockgem3","Count":10,"Damage":4,"OreDict":""},{"id":"minecraft:coal_block","Count":10,"Damage":0,"OreDict":""},{"id":"Railcraft:cube","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":84,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWhere I can put all the liquids?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your brand new alloy smelter you are able to combine two materials. What happens if you mix some obsidian dust and thickened glass? Obsidian glass, great. Your first tank that you can make would be a Buildcraft tank. This tank can carry up 16 buckets of a single fluid. It's possible to upgrade those tanks so they can hold up to 64 buckets.\nYou can also stack the tanks to increase capacity."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28032,"OreDict":"ringIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":"screwIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:GlassBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2804,"OreDict":"dustObsidian"},{"id":"ExtraUtilities:decorativeBlock2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"ExtraUtilities:decorativeBlock2","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":85,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1003,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Smelt all the things stack wise...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...with this great invention! Uses power to smelt up to 2 stacks of items at once! Can't go any faster! \n\nHint: Parallel smelting depends on coils, consult your local doctor before use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1003,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":12,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":86,"preRequisites":[79],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #3: Upgrade tier 4 - Tungstensteel Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like enderium, enriched naquadah or niobium-titanium you need more than 3600K. Time to upgrade your EBF... again."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":87,"preRequisites":[45,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":64,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSteel multiblock tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to have tanks that can hold double the amount of the iron ones? Go ahead and make a steel tank. All sizes allowed from 3x4x3 to 9x8x9 blocks (X and Z must be the same, and odd). Just like the iron tanks, the Buildcraft paintbrush and GT spray can colorize tanks for identification. Get started on that tank farm full of lube!\n\nHint: Fluid will auto-output (without any pumps) if you place a valve on the bottom side of the tank - valves cannot be on an edge!\n\nOnly use buckets or large fluid cells because 1000L GT cells get destroyed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":30,"Damage":13,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":15,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:machine.beta","Count":1,"Damage":14,"OreDict":""},{"id":"Railcraft:machine.beta","Count":1,"Damage":15,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":88,"preRequisites":[70],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§r§5§lWelcome to Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why, hello there! Seems you've made it into the electrical age. Don't be so quick to throw away your steam machines, you'll probably want to use them until you reach tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:bananasplitItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":89,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1121,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Steam Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to use steam in MV tier then it's time to build a steam turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1121,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":90,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":351,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDamn you, wire cutter!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enough is enough. No more wasting gazillions of ingots just for a couple of wires. Now that you have power, you should go for a wiremill!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":351,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":91,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32630,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first item you'll need a lot of. If you want to pull items out of chests or barrels you'll need one. \n\nHint: Goes pretty well with item pipes or GT machines, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32630,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":92,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fourth item you'll need a lot of, and is also a pain to craft. Arguably the most painful item ever. \n\n§4Hint: Works like a conveyor but can work with selected item slots, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":93,"preRequisites":[88,95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second item you'll need a lot. When you want to get fluid out of tanks you'll need one. \n\nHint: Attach to fluid pipes or GT machines. Adjust the direction and redstone behavior with a screwdriver. Place it on the side facing the tank or machine. When looking at a pipe or machine, you can use the grid to place it on a side already touching another thing. You can use the grid with a screwdriver to adjust a cover on that side as well.\n\nWhen a GT pipe or machine has any cover, including a pump cover, wrenching the machine back into an item keeps the cover on that machine. The cover stays with the machine in the same N S E W direction when it is placed down again. This way you can arrange pump and conveyor covers on a machine outside a tight spot and place it there. To remove covers, use the crowbar.\n\nIt can also be further upgraded into a fluid regulator that allows precise control of fluid transfer speed."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":94,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":301,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectric macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is highly recommended to get one of these, as the efficiency in terms of coal/steam used to macerate something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":301,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":95,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32640,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A piston, but more .. \"electrical\". The third item you are going to craft a lot of in the future."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32640,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":96,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":551,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSaving redstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of using 4 redstone for one magnetic iron rod? Well, good news for you! The polarizer doesn't need redstone, just a little bit of power. You don't need to attach this machine to a permanent power source, it runs fine on battery power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":551,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":97,"preRequisites":[92],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAvengers, assemble!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An absolute must have for fans of the movie. Oh, and to make all the things, of course.\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":98,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":291,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNo more filing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why waste a full ingot to make a rod by using a tool which loses durability and takes even MORE ingots? With this little device, all your rod-needs shall be fulfilled (for now)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":291,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":99,"preRequisites":[97,529],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bzzz... Whoom... (Defunct do not complete)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making some flawless crystals requires a precision laser engraver.\nAt MV level the precision laser engraver becomes more important."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":591,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":100,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":601,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPress all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the basic forming press you can make different food items, glass arrows and some Project Red components. \n\nAt MV/HV stage you can make rotors, various AE components and make copies of your molds and extruder shapes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":101,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMjolnir!!! (electric forge hammer)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not really required, but it is a lot faster than the steam one and it can be automated. If you feel like ore washing is too slow, use this hammer. There are no recipes that require anything more than steam level to hammer something."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":102,"preRequisites":[540],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":251,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCutting things apart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An absolutely mandatory machine to have. It will cut rods into bolts, plates into casings, logs into planks, and all of that will be done with the highest possible efficiency. Totally worth it! \n\n§4Hint: Just add water. Later on lubricant will help it run faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":251,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":103,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGet ready for Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to proceed forward, you need to get aluminium. A lot of it. But for now, eight is enough to unlock this quest. Probably the best source for aluminium is clay or hardened clay from canyons, however you need an MV machine for that. So you need to find an alternative until you have enough dusts for your initial setup. Check back in your Tier 0.5 quests for hints.\nOnce you have the dusts, you will need to do the EBF quest in Multiblock Goals to turn the dusts into ingots.\nAlso check the Armor and Jetpacks tab for new unlocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11019,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":104,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYour magic progression","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are able to produce aluminium, you may dig into magic. If you haven't unlocked basic thaumaturgy, try to find a silverwood and a greatwood sapling."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":105,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":221,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThe missing one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It was once said... But ffs, add a plate bender to the LV tier book ...and then it popped into existence."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":221,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":106,"preRequisites":[91,92,579,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockCartAssembler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, probably not the first, but definitely something big! You will need a cart assembler first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockCartAssembler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":107,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Power Coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar, or lava. But for now you have to use a simple coal engine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":108,"preRequisites":[106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockCargoManager","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated (un-)loading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can fill and empty your cart manually, but it's a lot more convenient to automate item transfer, isn't it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockCargoManager","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":109,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Farming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unfortunately, the basic farmer can't farm anything besides wheat, carrots and potatoes. It's not expensive at all, and probably the cheapest solution to give your automated food production a nice boost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":110,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A basic cart can't hold any items, so you need to attach special chests to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":111,"preRequisites":[106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A simple cart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to create or customize your cart you need a hull to attach your desired upgrades to. The wooden one can be used for really simple applications, but to farm wheat or wood, you need at least an iron one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":38,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":112,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Wood cutter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic wood cutter will break after a while, but you never have to replace it. It can easily be repaired with diamonds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":113,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:pipes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport pipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These pipes are rather simple and won't do anything on their own. But in combination with transfer nodes, you'll soon find out how great they are. Also, given the correct upgrades, they even surpass most other transfer systems."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:pipes","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:pipes","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":114,"preRequisites":[113],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport: Items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to transfer items, you need so called \"nodes\". There are some for pushing items into a pipe system, and later you'll have access to nodes that are able to pull items from attached inventories."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":115,"preRequisites":[113],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport: Fluids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like item nodes, liquid nodes transfer... liquids. But probably the best thing: They can all utilize the same transfer pipe!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":116,"preRequisites":[70,88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":201,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAlloy smelter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your steam alloy smelter to an LV one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":201,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:food","Count":2,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":117,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGotta catch 'em all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, you can use wheat/potatoes/carrots to make animals follow you back to your base, but that can be tedious. A golden lasso is a proper solution for animal transportation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":118,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:chandelier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic monster protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spawning monsters in or near your base can be annoying. Especially if you happen to get infernal creepers. Luckily, there is a good way to prevent them from spawning at all."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:chandelier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":119,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA quite different storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular chests can fill up rather quickly if you happen to collect mob drops like swords and/or armor. By using a cabinet, you can store up to 270 items of the same type. Also, it doesn't need a dolly - you can break it normally and it will retain contents. \nPerfect for storing ic2 crops, Forestry saplings, or bees!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":120,"preRequisites":[121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lProtect your base; Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One needs proper protection for ones home. So why not get some turrets for safety? At the moment, 2 Turrets are available: \"Potato\" and \"disposable item\". I assume you can guess what they do and how they work..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:sensorTierOneItem","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierOne","Count":3,"Damage":0,"OreDict":""},{"id":"openmodularturrets:chamberTierOne","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":121,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPassive defence","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A more \"passive\" approach to base defence are walls and fences. But seriously, where is the fun in that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:hardWallTierOne","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:fenceTierOne","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":122,"preRequisites":[120],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierWood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lTurret base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Turrets must be placed on top of a turret base. Only the player who initially placed the base can access and configure the turret. So don't worry about people taking your ammunition."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierWood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":123,"preRequisites":[122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:disposeItemTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lWho needs that dirt anyway","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably have a ton of items floating around in your base. So why not use them to kill your enemies?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:disposeItemTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Forestry:canWater","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":124,"preRequisites":[122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:potatoCannonTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDon't play with your food!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use it to kill zombies instead. Does only a little damage, but hey, who cares?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:potatoCannonTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":125,"preRequisites":[124,123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:expanderInvTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lUpgrading intensifies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your turrets probably need more space to hold more ammunition, so why not get an upgrade for that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:expanderInvTierOne","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BuildCraft|Core:engineBlock","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":126,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lElectrolysing all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collected a lot of dusts since you started with macerating, washing and centrifuging ores? Until now you couldn't separate them. It's time to get all the pure and valuable materials out of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":127,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Project red beginning","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to Project Red!\n\nThis quest will teach you the basics of Projectred and show you how to set up a Ghetto AE system.\n\nThe Ghetto AE system will be really useful for sorting all of your first items\n\nFirst of all there are different types of pipes: \n\nItem Transport pipes are the most basic pipes, classified as Null-logic. They don't do anything besides connect other pipes together.\nItem Transport pipes only have the ability to take items that enter it and pass them along to another connected pipe. They will NOT connect to inventories at all. In a junction where there is more than 1 possible direction, item payloads will travel in a randomly selected direction.\n \nRouted pipes are the most advanced. These pipes 'communicate' with one-another to form pipe networks, in order to allow for incredibly complicated demand driven systems, with absolutely no redstone circuitry required.\n \nPressurized pipes are pipes that use a pressure based routing system where the payload travels to the closest inventory that can accept it. Finding the closest inventory is influenced by both distance and Pressure Resistance Pipes (which, to the path finder, are 1000 blocks long), but the actual path that items take is only influenced by distance.\n\nHowever, in order to control the logic of the routed pipes you will need special circuit chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":128,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockEnderIo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIO, IO, it's off to EnderIO we go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've probably used EnderIO before. It's quite useful for a lot of things. But a lot of stuff has changed here, so let's start from scratch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11365,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11369,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11378,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11369,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11378,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11365,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":129,"preRequisites":[1835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMachine chassis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All EnderIO machines still require the basic chassis, and it's almost the same recipe as before; Except that you need plates instead of ingots. But that shouldn't be a problem at all..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMachinePart","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""},{"id":"EnderIO:itemMachinePart","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":130,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPortable tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Until now, you had to use buildcraft tanks to carry liquids around. Which can be a pain to do. These little tanks from EnderIO are able to push and pull liquids by themselves, as they have a built-in pump which is powered by some magic energy source. How convenient.\n\n§4Just be careful, because it will eat water cells instead of returning them.\n\nPressurized tanks are twice as large."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":131,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockStirlingGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple RF power: Solid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By simply burning coal as fuel, this machine produces RF power. Enough for a basic machine setup. This machine will also accept compressed and multiple-compressed blocks. Want to burn for 250+ days? Also, with double or octadic capacitors the output will increase and efficiency will improve. GT wiring can convert EU to RF, but EnderIO machines can be left safely out in the rain. \n\nMight be useful for Genetics machines since they consume excessive power when attached to GT wiring - Forestry and EnderIO machines work fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockStirlingGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":132,"preRequisites":[130],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCombustionGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple RF power: Liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This generator requires both water as coolant, and a burnable liquid as fuel. The amount of power it produces depends on the type of liquid used."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockCombustionGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":133,"preRequisites":[129,1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThe power of enderman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elevators are nice, but they are limited to vertical teleportation, and their range is also somewhat limited. Travel anchors do not have that limitation. You can teleport from one anchor to any other within range. You can name them and even set them as private. They have a 2s cooldown."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockTravelAnchor","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":134,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemPowerConduit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lConduits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Probably the most awesome way to transport just anything in multiple different ways. Get some conduits of each type. Higher tiers of each exist."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemItemConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemLiquidConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemRedstoneConduit","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemItemConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemLiquidConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemRedstoneConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":135,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemYetaWrench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYet another wrench","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Yeta Wrench is more than just a regular wrench. While holding it, you are able to switch between conduit types, eventually allowing you to remove one specific conduit type from a bundle of many. Ctrl-Mousewheel will switch modes, also Shift-Leftclick allows you to open the configuration interface even if you don't have access to that side of the conduit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemYetaWrench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":136,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemBasicFilterUpgrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lImproving conduits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Conduits on their own are pretty awesome, but you can do better. By using filters and speed upgrades, you gain even more control over what they do and how fast they work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemExtractSpeedUpgrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicFilterUpgrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:itemItemConduit","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":137,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockPainter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMaking things pretty","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While conduits on their own are already awesome, you can also hide them if you want. There are 2 types of facades, basic and hardened. While basic ones are simple and easy, the reinforced ones are able to withstand explosions and mining with tools. You have to use your Yeta Wrench to remove it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":128,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemConduitFacade","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:itemConduitFacade","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:blockPainter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemConduitFacade","Count":64,"Damage":1,"OreDict":""},{"id":"EnderIO:itemConduitFacade","Count":64,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":138,"preRequisites":[128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemAlloy","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lCome to the dark side...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...we have cookies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemAlloy","Count":32,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":139,"preRequisites":[138,692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Luke, I'm your father","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With that dark steel you got, you may now craft yourself a new set of armor. While pretty basic at first, it can be upgraded later to unlock powerful features."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11364,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":140,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDark steel tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are also tools made of dark steel. Each of them can receive upgrades. Hold shift to get the tooltip which will explain what you need in order to upgrade them.\n\nThese tools can also be enchanted like vanilla tools.\n\nThe Ender will increase wither skull and ender pearl drops. It can be upgraded to teleport the player.\n\nDark shears can be empowered, and then will shear a large area, including leaves. Handy for clearing away that giant redwood! Maybe you will find other uses for it.\n\nThe axe, once empowered, can be recharged wirelessly while in farming station.\n\nThe pick? Well, it can mine cobalt I guess if you haven't gotten a tool capable of that yet. You could keep it around to use for base decorations if your normal pick is too fast, I supose."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_axe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemAlloy","Count":4,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":141,"preRequisites":[989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMaterial","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lVibrant Crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vibrant capacitor banks also need this magical crystal. Armor and tools can be upgraded too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":8,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:exp_bottle_consistent","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":142,"preRequisites":[132],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockVat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBrewing liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine is not only capable of brewing more powerful burnable liquids, it can also be used to brew nutrient distillation, which might have further usage soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockVat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":143,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockAlloySmelter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSmelting all-joy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This combination smelter allows you to produce fused quartz and quite clear glass of all variants."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockAlloySmelter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":144,"preRequisites":[146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCrafter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAutomated crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You know, yet another automated crafting solution...\nThe left grid sets the recipe. The center box on the left will show the output. The right item grid is where you place resources. The output products will show up on the right center box.\nThis machine supports automation.\nYou can upgrade the machine with a Double-Layer or Octadic capacitor to increase power usage and speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockCrafter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":145,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSagMill","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOre processing kind of...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The endless ware between macerators and SAG mills rages on eternal, so why does it matter which one you choose?\n\nHV Macerators are still required for the final byproducts on many ore chains, but a SAG mill still shines through with\nupgraded grinding heads! SAG mills are perfect machine for getting the most from your ores without using bees and crops.\nYou can get bonus outputs with tungsten grinding heads, but that doesn't mean you can dupe materials (like ingots) with it.\n\nPlus for many of them you'll get the final output directly without any need for further processing. Handy for processing Redstone to get Chrome!\n\nIt's great for lead, copper, tin, silver, nickel, redstone, ruby, lapis, certus quartz, and malachite ores. Other ores will give you better outputs as well if you use a good enough head.\n\nEven coal, charcoal,bones, wheat, ender pearls, and charcoal non-ores will give bonus outputs.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSagMill","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":146,"preRequisites":[166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSliceAndSplice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTorture device","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When the subjects don't want to cooperate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSliceAndSplice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":147,"preRequisites":[856],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:RocketFuelMixA","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRocket fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rocket fuel are used in the future for galacticraft rockets. It does generate a lot of Power in the rocket Engine. Use your electrolyser to make some. Will generate 30720000 eu per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30654,"OreDict":""},{"id":"miscutils:NitrogenTetroxide","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:RocketFuelMixA","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":148,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketNutrient_distillation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTasty...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yeah, that is... Well.. You are sure it will have an usage for something... some day... eventually... maybe..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketNutrient_distillation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":149,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketFire_water","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFirewater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not exactly what you think it is. Better to not consume that liquid. When used in the Combustion Generator, it will produce 80 RF/t."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketFire_water","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":150,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketHootch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHootch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The lowest tier of renewable, burnable fluid. Generates 60 RF/t, but can be automated for \"green\" infinite power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketHootch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":151,"preRequisites":[148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockKillerJoe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAutomated mob-farming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course... zombies love that... disgusting liquid. While using a small amount per hit, he will attack everything that is within his range. That also includes players, so be careful. Rumors are there might be a weapon that will never break when used in this \"machine\"..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockKillerJoe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":152,"preRequisites":[151],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:ethericsword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAnd it will never break","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using an etheric sword, your killer joe will run.. forever. Proper enchantments are a requirement for it to be efficient, but that shouldn't be a problem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:ethericsword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":153,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Translocator:translocator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple item transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Translocators can only transfer items over a distance of 1 block. But they're quite cheap, and a good solution to build compact machine setups. They include a free simple item filter which can be enabled on the input or output side. And they support multiple inputs and outputs! Glowstone will make it transfer faster - try investigating other upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Translocator:translocator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Translocator:diamondNugget","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":154,"preRequisites":[153],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Translocator:translocator","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple fluid transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like the item translocators, the fluid ones transfer... fluids. Same restrictions apply, 1 block distance. These can also be upgraded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Translocator:translocator","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Translocator:diamondNugget","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":155,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierTwo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHarder, stronger, faster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No, actually not faster. But more durable than tier 1."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierTwo","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierTwo","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":156,"preRequisites":[155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierTwo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lProtect your base: Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slightly better protection. Now with a real gun. No more wasting food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierTwo","Count":1,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierTwo","Count":1,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierTwoItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":157,"preRequisites":[156],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierOneBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTier 2 turret base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nothing to see here. Proceed..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierOneBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":158,"preRequisites":[157],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:machineGunTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSometimes, a bullet will do","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They hit hard. You have been warned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:machineGunTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"openmodularturrets:bulletCraftable","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":159,"preRequisites":[157],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:incendiaryTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBurn them. Burn them all!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hmmm, crispy bacon. What would happen if you enable neutral mobs as targeting...?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:incendiaryTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"openmodularturrets:blazingClayCraftable","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":160,"preRequisites":[753,750,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTier 4§7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first hull as usual..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":161,"preRequisites":[241,240,239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paying the highest price","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When regular magic just isn't enough, you need something... stronger. Which is paid with blood. Your blood, and maybe others.\n\nIn tier 1 you only need to place the blood altar. Plan for the configuration to grow in size"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":162,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimensional goal: Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HV is the age where you should focus on reaching the Moon, as soon as possible. You will need titanium in large quantities. \n\n§4Hint: more info will be found in the Space Race quest tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":22,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":163,"preRequisites":[169],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockInventoryPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lI see everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The inventory panel is an alternative to your (hopefully?) existing project red storage system. Just like project red, you have to connect every chest/barrel with an item conduit. In addition to that, you also have to install a \"remote awareness\" upgrade into every conduit side you want the panel to see."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockInventoryPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemFunctionUpgrade","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:itemFunctionUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"EnderIO:itemItemConduit","Count":16,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":4,"Damage":4,"OreDict":""},{"id":"EnderIO:itemFunctionUpgrade","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":164,"preRequisites":[177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:weakBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Portable battery...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not exactly a \"battery\", more a portable access point for your life points, aka blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":165,"preRequisites":[146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSoulBinder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSoul eater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wouldn't it be great to actually make use of the intelligence or abilities a certain creature has? For example: enderman teleportation or brain capacity of a zombie for simple logic? (He doesn't use it anyway...) With this machine, you are able to bind a captured soul to an item, which can then be used in machines to improve their functionality."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSoulBinder","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":166,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11379,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lA new alloy Soularium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are some... \"Darker\" uses for machines. Stuff that might be considered \"magic\". Anyway, for that you need a new alloy: Soularium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11379,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":167,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockExperienceObelisk","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lExperience storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dying is painful, isn't it? As your precious experience is lost. But fear not, there is a solution! By using an experience obelisk, you are now able to store all your collected experience in a safe location."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockExperienceObelisk","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":168,"preRequisites":[165],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lA soul vessel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new machine, you need something to actually capture souls from monsters. The soul vials are reusable vessels. Just right-click any living entity to steal its soul."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemSoulVessel","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.6000000238418579,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.7999999523162842,"HungerOverhaulCheck":5},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27127316897707,"UUIDLeast":182634832621765120,"Amount":0.012908903102869372,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":1.8,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":26,"id":"Thaumcraft.TaintedCreeper","Fuse":30,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-1910302092572580900,"Health":26,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[10,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27127316341783,"CustomName":"\"\"","Pos":[222,4,1471],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"ExplosionRadius":3,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.5,"ezModsApp":1,"smi":1,"WITCInitialHeight":0.800000011920929,"HungerOverhaulCheck":4},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":6,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.4,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27178571439803,"UUIDLeast":-4879626912252909000,"Amount":-0.03553818567513433,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":2.7,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":6,"id":"Thaumcraft.TaintedChicken","Motion":[0,0,0],"Leashed":0,"UUIDLeast":2120839428921693200,"Health":6,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[167,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27178571304768,"CustomName":"\"\"","Pos":[223,4,1473],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.8999999761581421,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.2999999523162842,"HungerOverhaulCheck":8},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":36,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.27,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27170415539521,"UUIDLeast":55055077136148616,"Amount":0.05541744393087603,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":5.4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":36,"id":"Thaumcraft.TaintedCow","Motion":[0,0,0],"Leashed":0,"UUIDLeast":7340828040503510000,"Health":36,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[-124,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27170415457974,"CustomName":"\"\"","Pos":[220,4,1475],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.6000000238418579,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.7999999523162842},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.3,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27159316027577,"UUIDLeast":3351821129110176000,"Amount":-0.02643265509317006,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":3.6,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":26,"id":"Thaumcraft.TaintedVillager","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5486064703714104000,"Health":26,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[153,-23],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27159315945153,"CustomName":"\"\"","Pos":[221,4,1475],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":169,"preRequisites":[165,141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockPoweredSpawner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThe creation of life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By utilizing large amounts of energy, you're able to re-activate those broken spawners you may have found in the past. If you haven't, you should get one of them now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBrokenSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockPoweredSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":170,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSpecific enchantments","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanting books is, just as it is for items, random. And that is annoying if you need a specific enchantment on your tool or armor. Now there is a way to actually select enchantments, for a price, obviously."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":171,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierThree","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAlmost like steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next-gen protection against nasty zombies, creepers and other \"stuff\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierThree","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierThree","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":172,"preRequisites":[171],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierThree","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lProtect your base: Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we're talking: Grenades! The next in big badda boom hardware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierThree","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierThree","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierThreeItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":173,"preRequisites":[172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierTwoBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTier 3 base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More storage, more power, and a lot more slots for possible upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierTwoBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":174,"preRequisites":[173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:relativisticTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThis is relatively useful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For... some things... maybe... At least it is fun to watch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:relativisticTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":175,"preRequisites":[173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:grenadeTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFire in the hole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah, there is nothing like an explosion and the certainty that your enemies have been blasted into tiny pieces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:grenadeTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"openmodularturrets:grenadeCraftable","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":176,"preRequisites":[160,860,1014,1612,1231,1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main goal here is to get a tier 2 rocket, and reach Mars. You also might want to rethink your power setup, as more and more machines will be upgraded. This quest set will teach you about a couple of options you have regarding power production.\n\nMultiblock goals includes quests for the large gas turbine, large combustion engine, and multiblock ore drill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":177,"preRequisites":[161],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:sacrificialKnife","Count":1,"tag":{"sacrifice":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"*Poke*","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get some blood. You will have to start with your own..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sacrificialKnife","Count":1,"tag":{"sacrifice":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":178,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It's storage time!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've reached the High Voltage age, you might consider starting to work on your applied energistics system. It might be small, and it might be tricky to power it at first, but it's really worth the effort. You should start by getting all 4 different inscriber patterns."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":13,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":14,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":19,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":179,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find them all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a lot of asteroids on the surface, but there are more underground. In order to find those, you need a compass. The compass will only tell you the chunk has an asteroid in it, with your ancient ore finder wand, you can get a better idea where in the chunk the meteor is hiding.\n\nFor more details on AE2, check out https://tinyurl.com/GTNH-AE2"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":180,"preRequisites":[1316,1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.16k","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Middle tier storage cell, which can contain 16,384 bytes of storage. 16,384 bytes of storage can hold 2,032 stacks of a single item, or 1,040 stacks, while holding 63 different items. The 16k storage cell uses 128 bytes of data to store a single type. When placed inside a drive or chest will consume 1.5 ae/t. Must be in an ME Drive or ME chest to be usable. You can remove the 16k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.16k","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":181,"preRequisites":[1290],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluix crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not \"flux\"! Even if the color is the same. You need to add redstone and netherquartz to a charged certus crystal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":64,"Damage":0,"OreDict":"dustRedstone"},{"id":"minecraft:quartz","Count":64,"Damage":0,"OreDict":"crystalNetherQuartz"},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":128,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":182,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockMolecularAssembler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Applied crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting can be a pain. So why not automate it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockMolecularAssembler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""},{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":52,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":183,"preRequisites":[178],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting your first circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making the circuits is quite different from what you're used to, so it's advised to check NEI for the new recipes. Get 8 of each circuit for now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":23,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":24,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":184,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To have access to your applied energistics network from your entire base, you'll need cables. A lot of them. For now, the basic ones will do, but eventually, you'll end up using dense cables and p2p channels. Glass and Covered cables are functionally identical, just different in looks. Each can carry 8 channels. Quartz fibers don't carry channels but can carry energy. This is useful for providing power from your main network to independant subnetworks.\n\nYou can also color your cables - cables with different colors will not connect, so those can be used to expand network capacity by running parallel cables. Only fluix colored cables connect to all other colors. Later it will probably be more efficient to use P2P channels to jam a bunch of channels into 1.\n\nAnchors are like covers, keeping things from connecting when you don't want them to."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":64,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":24,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":185,"preRequisites":[1290],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":380,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Terminals everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME Terminal is a HID which gives you access to an ME network's networked storage.\n\nIt has the ability to sort and search, as well as filter by using a view cell. It requires a channel to function.\n\nCan be upgraded into an ME crafting terminal.\n\nThe ME crafting terminal is the upgraded version of the ME terminal which has an integrated crafting grid with access to an ME network's networked storage.\n\nLike the ME terminal it also requires a channel to function.\n\nGives remote access to all interface pattern slots on your network separated by which type of machine they are on. It will show the type of machine in the terminal, however you can name the ME interface in the inscriber or an anvil to alter the name displayed in the ME interface terminal.\n\nCombined with the fact that you can toggle if the interface shows up at all this gets you control over your interface terminal's display."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":380,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":360,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":480,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":360,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":480,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":186,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDimensional goal: Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mars has many new ores you need to find like tungsten, uranium and plutonium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.mars","Count":8,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":187,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§k§l§r§a§lDimensional goal: Phobos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A smaller goal, as the main goal is Mars. But you'll find different ores on this moon also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":1,"OreDict":""},{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":188,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDimensional goal: Deimos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A smaller goal, as the main goal is Mars. But you'll find different ores on this moon also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:deimosblocks","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:deimosblocks","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":189,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lHEV Mark III protective system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some things are dirty, and some things are even dangerous. You'll play with nasty stuff here, so better prepare yourself for the worst.\n\nSome items will give you a Radiation debuff without protection. How fast you get it depends on the item. Some items will give you enormous amounts of time with it, which will kill you because there is no way to get rid of it. \n\nOther items will give you a general sickness with many debuffs, but not Radiation. That can be removed the normal ways, Milk, Terrawart, Aqua bees, etc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemArmorRubBoots","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":190,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lAppropriate power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Whether you used magic, steam, oil or biogas for power until now, you will run into problems as you advance to higher tiers. So you need to upgrade your power grid, at least for your blast furnaces. So let's start with something more powerful: A nuclear reactor!\n\n§4Hint:\nThe multiplier is set to 10x in this pack. That means your nuclear reactor is 10 times more efficient.\n\nFor some ideas on nuke setups, check out https://tinyurl.com/GTNH-Nukes"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},{"id":"IC2:itemFuelRod","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":191,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumSimple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 2 fuel: Uranium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just \"regular\" uranium fuel, nothing special about it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumSimple","Count":2,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":192,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXSimple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 3 fuel: MOX","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highly radioactive, the most powerful fuel rod you can get. Burns twice as fast as uranium, but produces massive amounts of power. Rumors are, that peaks up to 11k EU/t are possible..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXSimple","Count":2,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":193,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 1 fuel: Thorium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The weakest of all rods, but very easy to produce, very easy to keep cool and runs twice as long as uranium. A perfect \"fission and forget\" power source.\n\nHint:\nAfter they are used up you can recycle them to get Lutetium which is used for make americium in the fusion reactor.\nAmericium is needed for top tier materials later, so start stockpiling now. Plus, you get power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Thoriumcell","Count":4,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":194,"preRequisites":[195],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMonitoring your reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's important to monitor your reactor (Or just fancy to have a big screen somewhere...). So now that you've gained knowledge about the available fuel rods, you can start to build yourself a power plant. Here is something to help you out.\n\nUse the sensor kit on the block you want to monitor, then put the sensor card in the display panel. Next select which lines of information you want to display."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},{"id":"IC2NuclearControl:blockNuclearControlMain","Count":5,"Damage":5,"OreDict":""},{"id":"IC2NuclearControl:ItemRemoteSensorKit","Count":1,"Damage":0,"OreDict":""},{"id":"IC2NuclearControl:ItemUpgrade","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":195,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockReactorChamber","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lIncreasing the capacity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To unleash the full potential of your reactor, you have to attach six reactor chambers to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockReactorChamber","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":196,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMove the heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reactors heat up, well the rods do, so you need to \"move the heat away\" to somewhere else. You should get one of each, and try to figure out what each individual heat exchanger does, in order to figure out a good setup."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:reactorHeatSwitch","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchCore","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchSpread","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"tag":{},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:reactorHeatSwitch","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchCore","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchSpread","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchDiamond","Count":2,"tag":{},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":197,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorVentDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lVenting heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can't just move the heat around, eventually you need to get rid of it. Just like the exchangers, there are different types of vents, each of them has a certain usage you'll need to find out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:reactorVent","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentCore","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentGold","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentDiamond","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentSpread","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:reactorVent","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentCore","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentGold","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentSpread","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":198,"preRequisites":[192],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXDual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":199,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuit exhaling dusts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The QED is used for stuff like the ender quarry (yay!) and advanced mob-protection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:endConstructor","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":200,"preRequisites":[199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:magnumTorch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lAdvanced mob-protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like the chandelier, the magnum torch prevents monsters from spawning. However, its range is quite big, so a single one might be enough for your entire base.\n\n§4Don't forget, monsters can still follow you home!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:magnumTorch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":201,"preRequisites":[199,1412,1680,1213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAutomated mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The QED enables you to assemble the most convenient device for mining: The ender quarry.\n\nAs 0lafe says, \"This small black box is life-changing\" and \"Sympathy for the amount of dense obsidian plates you need.\"\n\nGuess you better get compressing!\n\n§4NOTE: It's best to place your quarry and markers on orevein boundaries. This way you start getting ores right away, especially from planets and the deep dark dimension."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":202,"preRequisites":[201],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If an ender quarry won't satisfy your needs for MOOORE. A speed upgrade is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":203,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":460,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bundled AE channels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"P2P tunnels. You will need a lot of them! These are fancy fluid/item pipes that will transport fluids or items from one \"point\" to \"another\". Items transportered will not show up on crafting terminals etc, they just use the network as transport.\n\nThey can also pack up to 32 channels into 1 bundle and transport those to the destination p2p bus. Each P2P tunnel requires 1 free channel. The network carrying the P2P must be separate from the network with the channels. These P2P connections cannot be nested, but one transport cable can carry multiple P2P connections.\n\nA nice online guide can be found at https://tinyurl.com/GTNH-AE2 under P2P tunnels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":2,"Damage":460,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":204,"preRequisites":[186,205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Load and unload the rocket","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What use has an automated rocket, if you can't load and unload it with automation?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":205,"preRequisites":[186,1449],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cargo rocket: For the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No need to fly to distant planets on your own, just to grab ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":3,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":206,"preRequisites":[199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockMolecularTransformer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTurning A into B with C","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Molecular transforming at its finest! The most important recipe here is sunnarium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockMolecularTransformer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":207,"preRequisites":[208],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierThreeBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTurret base tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Even more range, power and upgrade slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierThreeBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":208,"preRequisites":[211],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierFour","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lProtect your base: Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The small parts for the powerful turrets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierFour","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierFour","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierFourItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":209,"preRequisites":[207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:teleporterTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMake love, not war","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For those who don't want to kill things. Just teleport them away, however this takes a large amount of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:teleporterTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":210,"preRequisites":[207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:rocketTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWhy grenades...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when you can use rockets? Yes, rockets! They search and destroy, and go off with a huge boom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:rocketTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"openmodularturrets:rocketCraftable","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":211,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierFour","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 4 fence and walls","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another upgrade for your walls. One more to go!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierFour","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierFour","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":212,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MoonStoneDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPulverize the Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Literally. You can grind the rock of most planets, to get a chance for higher tier metal dusts. Does consume quite a bit of power, but can really help you out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MoonStoneDust","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2081,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":213,"preRequisites":[176,861,1251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§b§l§1§2§3§4§5§4§6§7§8§9§a§b§c§d§e§c§b§lTier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"IV-Level. You will need tungstensteel for machines. Suggested planets and moons to visit: Mars, Phobos, Deimos. \n\nMake sure to get a set of Tungstensteel coils for your EBF.\n\nYou should've learned \"how to gregtech\" by now, if not go clean up the machine craters in your base...\n\nGT++ multiblock processing machines unlock at this tier. Make sure you have an Alloy Blast Smelter from EV tier ready to go."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":214,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:end_portal_frame","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lThis is the end.... ?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Basically the \"end\" of the conventional tiered game play. However! This is just the start of your journey, as you'll have access to even more powerful and awesome stuff. You have proven yourself worthy, and mastered the challenges up to this Tier. Congratulations!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":2,"OreDict":""},{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":215,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOn your way to Asteriods and other Tier 3 DIMs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier is defined as \"Asteroids-Dimension\" and \"8192 EU/t machines\". The machines now reached their full potential, and some asteroids may contain precious ores to improve your power generation."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Reach asteroid belt","range":-1,"index":0,"dimension":30,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.asteroidsBlock","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":216,"preRequisites":[1665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1191,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l\"Clean\" energy..?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a reliable and powerful source of energy for your base. And why waste your time with a 2k generator? Go for a 8k one! \n\n§4Hint: It's probably a good idea to wear your hazmat suit before claiming your reward..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1191,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":23326,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":217,"preRequisites":[214,218],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"utilityworlds:uw_portal_void","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"§b§lFinal choice: Personal Dimension","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of mobs in your base? Want to build somewhere... different? Probably in a personal dimension? Then this is your chance. But choose wisely; You can only pick one option."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"utilityworlds:uw_portal_void","Count":1,"Damage":0,"OreDict":""},{"id":"utilityworlds:uw_portal_garden","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":218,"preRequisites":[214,217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"§b§lFinal choice: Loot","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Don't need a personal dimension, eh? Well, then you'll probably be happy with some extra loot. Choose wisely; You can only pick one."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":10,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":10,"Damage":8,"OreDict":""},{"id":"Thaumcraft:blockLootCrate","Count":10,"Damage":2,"OreDict":""},{"id":"DraconicEvolution:dezilsMarshmallow","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":219,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierFive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lAlmost unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Probably not required any more, but you made so many walls. So why not to get the best ones?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierFive","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierFive","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":220,"preRequisites":[219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierFive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lProtect your base: Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tough materials, for tough weapons. Railguns, and lasers, and... stuff. I assume you want a lot of those soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierFive","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierFive","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierFiveItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":221,"preRequisites":[220],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierFourBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lTurret base Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last one, I promise. Used for the most powerful turrets available. You wonder if they might help you take out some more... \"Dangerous\" enemies?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierFourBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":222,"preRequisites":[221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:laserTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPewPew!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Requires no ammo, but still does a ton of damage. All you need to do is feed it power, a lot of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:laserTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":223,"preRequisites":[221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:railGunTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lRailguns, what else","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Massive power, and a wonderful sound when they fire. I recommend to use upgrades to increase range and damage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:railGunTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"openmodularturrets:ferroSlug","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":224,"preRequisites":[14],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Strange things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You came across those weird trees, they seem to be more than just plants. You felt something... different. There is something going on, but you are not sure what exactly yet. But you're sure you'll find out very soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":225,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Searching for answers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Last night you had a dream. A dimension, so strange and different, exactly like the sapling you found. You decided to go there and look for answers.\n\nFirst you need a portal crystal to open it up. And no, a diamond is not enough."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Twilight arrival","range":-1,"index":1,"dimension":7,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":226,"preRequisites":[1096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemThaumometer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See the unseen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Everything is made of 6 primal aspects. Those aspects can be combined to form compound aspects, but in the end, there are only 6. Like the infused shards you found. You noticed that those shards start to vibrate when you bring them next to something that is made of the respective aspect. Maybe you can create a device to actually \"scan\" items, and reveal their compounds? This could be very useful later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemThaumometer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":227,"preRequisites":[1778],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockTable","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tables to work on","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Indeed, the idea with the bookshelf did work. Now you need a nice table to do some research on, and probably something to infuse items with vis while crafting. Maybe you should try to smite a table with your wand."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:blockTable","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":228,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:waterSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloody water","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By sacrificing some blood to the water spirits, they'll grant you some of their precious element."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:waterSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":229,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":541,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This whole place here is filled with magic. No matter where you look at, it's just everywhere. You wonder what happens to regular stone if it's exposed to large amounts of magic for such a long time. Maybe it's time to go mining?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":543,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":542,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":545,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":541,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":544,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":540,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":230,"preRequisites":[225,224],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are sure that this place will give you all the answers you are looking for! To continue, you need something to handle the magic energy called \"vis\". Guess it's time to craft your first wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:oakStick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TwilightForest:item.nagaScale","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"ordo":0,"perditio":0,"aer":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":98,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":231,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemThaumonomicon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tome of knowledge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All the things you've discovered so far, you need to write them down. But you are lazy, and you have a wand, so why not try a magical way to \"write down\" your research? You wonder if you could enchant a book with your wand, so that it will keep track of your progress... You should try that on a bookshelf!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemThaumonomicon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":232,"preRequisites":[226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Improving your wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wand does a great job in storing and releasing vis as you please. However, those iron caps are... Weak. If you don't pay enough attention to it, it might hurt the node. Maybe you should try to improve it with caps made out of a more valuable material. Like.. gold, perhaps?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":233,"preRequisites":[229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you found all six primal types of infused stone, you need to break those up in order to get the shards. The easiest way to do that, is to throw these stones in your Forge Hammer. Later when you have a Sifter, you can sift purified ores for more shards. An autoclave can turn shard dust into a shard. Maybe there is a magical way to do the same thing?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":16,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":234,"preRequisites":[232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A \"greater\" wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While doing all your research and mining of these infused stones, you had an idea how to actually use the wood of a Greatwood tree to make a new wand. Actually, it turned out to be pretty simple, but you lacked one important thing back then: vis!. The vis makes sure the wood doesn't lose it's magical conductivity while forming the rod."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":235,"preRequisites":[232,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unfortunately, your aluminium screws don't work with the greatwood rod. Somehow, the wood seems to repel the material. Luckily, you already have a blast furnace, so you can get a better material than aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":236,"preRequisites":[232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LichBone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A more powerful \"scale\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The naga scales are weak, they can only hold a very limited amount of vis. You need a better, more powerful component to store vis in your wand. You've heard rumors about an evil wizard in the Twilight Forest. Maybe he has... something... that can be used?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LichBone","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":237,"preRequisites":[798],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Stores 50 vis\" wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now combine your new wand, and be more powerful than before! You have a feeling, that this new wand will come in handy very soon(tm).\nMake sure you use the NEI 'U' command on the gold caps to find the correct GT:NH recipe for the wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"cap":"gold","rod":"greatwood","ordo":0,"perditio":0,"aer":0},"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":4,"Damage":95,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":238,"preRequisites":[239,237,240],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fuuuuuu...(sion)!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your arcane table does a great job with infusing primal vis into items while crafting. However, you feel that there must be more. What if you could infuse items with all kinds of magic aspects? The possibilities are endless..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockStoneDevice","Count":6,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":239,"preRequisites":[251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Yet another brick in the wall...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A magical one this time. You are on your way to infusion, and you need 8 of those in total."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":240,"preRequisites":[255,256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia cooking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get essentia, you need to dissolve items. Obviously, you only want to dissolve those items you don't really need, and only those with essentia you need to craft things.\n\nMake sure you keep your furnace as empty as possible. If it fills up with essentia, it can cause a large TPS drop."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockJar","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":241,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not for soup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At least not for edible soup, but for essentia slurry. Get yourself a Cauldron and give it a solid whack with your wand. Place the netherrack under the crucible and set it on fire with the flint and steel. Now you need to fill it with water (works with pipes too = auto refill)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":242,"preRequisites":[233,1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Balanced shards sdrahs decnalaB","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining all six primal aspects in a crucible, you are able to make balanced shards. They can be ground up into \"Salis Mundus\", an absolutely crucial thing to have, trust me!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":10,"Damage":6,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":10,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":243,"preRequisites":[242],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crystal clusters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You, as a Thaumaturge, like shiny things. And what could be more shiny than a cluster made of those shards? You totally should get one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":244,"preRequisites":[245,246,247,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"ignis"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"ignis"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":245,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockAiry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The choice...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By now, you should've collected a few (or a lot) of locations for aura nodes to get vis from. You might also have noticed, that you probably are low on a certain aspect, like ordo or ignis. Well, good news. In exchange for some crystal clusters, I will give you one of my old nodes. They are all pale, but they will help you out. You may only choose one, so think twice before you make your decision."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":6,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":246,"preRequisites":[245,244,247,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"terra"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Terra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"terra"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":247,"preRequisites":[245,244,246,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"perditio"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Perditio","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"perditio"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":248,"preRequisites":[245,244,246,247,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"ordo"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Ordo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"ordo"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":249,"preRequisites":[245,244,246,247,248,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"aqua"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Aqua","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"aqua"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":250,"preRequisites":[245,244,246,247,248,249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"aer"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"aer"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":251,"preRequisites":[243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not just for decoration","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, they look pretty, but they serve a much more important purpose: Channeling vast amounts of vis and essentia. This might be useful soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":92,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":252,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:cake","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"This is the end...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...of your apprenticeship. You have mastered all 6 primal aspects, you mastered the weak and strong infusion of essentia and vis, and you've already made your adept wand. But be warned, young one. The further you progress, the more darkness, and evil will tempt you to follow the forbidden ways of magic. I have seen things... weather changing, random teleportation, or even a Wither tearing its way into our universe right next to someone. Be careful, my friend..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":253,"preRequisites":[254,240],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockBoiler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Turning liquids into essentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What a simple idea. So many people wasted tons of buckets just to get aqua from water, or sano from milk. Why didn't they just dissolve the liquid itself? Stupid ones..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockBoiler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":254,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia filtering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This nifty little device will filter out essentia. Once it has received a single unit of any type, it will only accept this type until it is completely empty. How convenient. You can place more than one on top of an alchemical furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":255,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An alternative to torches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And lava! It's an excellent magical heat source."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":256,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Way better. To be fair, it's a waste to use coal itself, but it also works with charcoal and lignite dust. And it speeds up the dissolving of items in an alchemical furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":257,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Save the squids, we must","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A very convenient way to make PETA activists happy and get ink at the same time. \n\nHint: The essentia in those roses might be useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32414,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":258,"preRequisites":[259],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite... lava?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, it does need some ignis centi-vis, but hey, it's free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:everburnUrn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":259,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:everburnUrn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite water!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The struggle is over. You finally discovered a way to get infinite amounts of water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":260,"preRequisites":[252],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Adept thaumaturgy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have mastered the basics. Master warned me about forbidden magic, but it sounds so promising. I think a bit of forbidden stuff can't hurt..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":261,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.fieryTears","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An awesome magic conductor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These tears, WOW! I've never felt something so strong. Could it be? Could I use those to actually finalize my Silverwood wand?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.fieryTears","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":262,"preRequisites":[263,266],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":10000,"terra":10000,"ignis":10000,"cap":"thaumium","rod":"silverwood","ordo":10000,"perditio":10000,"aer":10000},"Damage":54,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An even better conductor?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More... I want MOOORE! There must be something even stronger than the hydra. Something older, more ancient."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":263,"preRequisites":[266],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.fieryBlood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It doesn't work","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I tried to combine the lich bones I had with this new wand rod. The result: A pile of ashes. It crumbled to dust within seconds. I need a better conductor. The hydra in the Twilight Forest has the ability to regrow an entire head! Her blood must contain a large amount of magic. I guess I need a bit of that for my next wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:misc","Count":1,"tag":{"display":{"Lore":["It crumbled to dust within seconds..."],"Name":"Lich Bone"}},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":264,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Obsidian rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using obsidian and some earth clusters, I'm able to create a magical infused rod, that will slowly recharge its own terra vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":265,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Creating a better wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This greatwood wand is nice, but it can only store 50 vis. Not enough to move nodes. My tries to use silverwood failed, but I've come across other mundane materials that I could use to make a new wand core."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":266,"preRequisites":[264,860,271,269,270,268,267],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27028,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"More durable screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Those stainless steel screws don't work on these rods. Due to the huge amounts of vis those wands can carry, the screws somehow \"melt\" away. I need a more durable material. I guess I will try titanium next."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"tag":{"display":{"Lore":["It.. melted..?!"],"Name":"Stainless Steel screw"}},"Damage":9306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":267,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quartz rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using nether quartz and some order clusters, I'm able to create a magical infused rod, that will slowly recharge its own ordo vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":268,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reed rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using sugar cane and some air clusters, I'm able to create a magical infused rod, that will slowly recharge its own aer vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":269,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blazing rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using a blaze rod and some fire clusters, I'm able to create a magical infused rod, that will slowly recharge its own ignis vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":270,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Icy rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using hardened ice and some water clusters, I'm able to create a magical infused rod, that will slowly recharge its own aqua vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":271,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bone rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forbidden? Pah. I don't care about headaches. By using bone and entropy clusters, I'm able to create an infused rod, that will slowly recharge its own perditio vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":272,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Best wand caps ever","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course! Thaumium! What could conduct vis better than... a magical metal?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":273,"preRequisites":[274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SnowQueenBlood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"She let go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This blood seems pretty common, but she had advanced magic abilities. I'm sure I can use this as a medium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SnowQueenBlood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27083,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":274,"preRequisites":[261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.carminite","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reactor material","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This stuff is interesting... Maybe I can use it as a wand conductor?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.carminite","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27030,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":275,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Centi-vis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many advanced machines require vis in order to do what they're supposed to. But using a wand as some sort of battery to transfer vis from a node to your machine didn't work as expected. What if you could rip open a node?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":276,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bring it home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably have a nice collection of bookmarked nodes. But running around to recharge your wand(s) isn't really the way an adept thaumaturge should get his required vis. Moving nodes is not that hard, but without doubt, you need something to protect them from each other."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":277,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated wand-recharge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So you found a way to gather nodes now. What about automated wand recharge? Wouldn't that be extremely convenient?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":278,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Centi-vis stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You totally should get yourself some centi-vis things to transport and use the vis from stabilized nodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockMetalDevice","Count":8,"Damage":14,"OreDict":""},{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":279,"preRequisites":[280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockLootCrate","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The dark realm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We found the way... my precious. We found it! Only need 4 tasty eyes, and some magic to open the door. The secret door, they didn't see it. Hehehe! All the time. It was there... Aaaall the time!"}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Visit \"Outer Lands\"","range":-1,"index":0,"dimension":50,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":280,"preRequisites":[281],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"They see me, they watch me","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eyes. Yes. Eyes! I need eyes, my precious. Not spidery ones, no. Nasty hairy things. Don't taste good. Eldritch eyes! I will rip those from their bodies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":281,"preRequisites":[282],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Really (Really!) dark magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fools. FOOLS I say! They know nothing! This book will guide me, yes. Yes it will, my precious. It will lead us to even more POWER!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":282,"preRequisites":[289],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetCultistRobe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secrets","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I can feel it. Yess. Yeeeess. We will gain more power nigh. Nigh! Yes. My precious. The voices gave me a hint, there is a dimension filled with unbelievable sources of magic energy. I must go there. I must! The crimson people know the secret. I will rip them aparrrt.. They will tell me!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":4,"taskID":"bq_standard:hunt","target":"Thaumcraft.CultistKnight","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":283,"preRequisites":[279],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find the key","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No, nooo! They have hidden it! Must find the keeey. Must find it! We need the tablet to open the door my precious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":284,"preRequisites":[283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of creation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What... What am I doing here? Where am I?! What is this place?! Oh those headaches... (It seems that the pulsating pearl you just found cured your brain from... something. Something old, probably some kind of trap to keep away unworthy ones.)\n\n/iskamiunlocked will tell you if you have successfully unlocked Kami. If not, try researching the Thaumium Crowbar and the Cursed Spirits Blade."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:blockLootCrate","Count":5,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":285,"preRequisites":[252],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":17,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Concentrated darkness","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For some reason, you decided to infuse darkness into a seed. It appeared to be promising. For what? You don't know..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":286,"preRequisites":[287],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetVoidFortress","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Armor\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This new metal, it's so... appealing. You feel comfortable while holding it, so why not get yourself some armor? What could go wrong? It sure will protect you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemHelmetVoidFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemChestplateVoidFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsVoidFortress","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":4,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":287,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockEssentiaReservoir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What could possibly go wrong?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"256 essentia in one block! Now that is what I call storage. Does make weird sounds, but I guess it's nothing special..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockEssentiaReservoir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":288,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.something","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Let's try this","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mortals. Pah. What do they know about REAL power. The voices tell me I need to focus on alienis and tenebrae if I want to advance. So what about food?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.something","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":289,"preRequisites":[286],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusHellbat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An appropriate weapon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"My new armor needs an appropriate weapon to go along with. I should make something to fire creatures of the nether at enemies!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusHellbat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemSpawnerEgg","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":290,"preRequisites":[272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetFortress","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Improved armor: Ninja style","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get some decent armor. With this, those infernal monsters won't be as much of a pain as they are now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemHelmetFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemChestplateFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":4,"id":34},{"lvl":2,"id":154}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":291,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Little helpers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A state of the art thaumaturge doesn't work any more. He has little helpers. Golems can and will do all the things for you, just as you command them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"tag":{"gadomancy":{}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":292,"preRequisites":[291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Slightly better","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wood is somewhat better than straw. They are still to be considered weak, but an ideal little cutie for farms."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":293,"preRequisites":[292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sticks and stones...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...will break your bones! These guys are hard as rock (Insert audience laugh here) and will protect your claim as good as possible."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":294,"preRequisites":[293],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The best of all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highly durable, can carry a lot of items and is considered the \"top tier\" golem. But you are sure there is more...\n\nYou'll need to chisel a thaumium block to get the right kind you need for the golem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"tag":{"gadomancy":{}},"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":295,"preRequisites":[291,272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, you could just go with gazillions of jars, but it's way more convenient to store essentia in a chest or barrel. Isn't it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""},{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemPlacer","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":296,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ordo"}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The basic elements","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course you know where and how to get the basic essentia types. Do you..?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ordo"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"aqua"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"terra"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ignis"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"aer"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"perditio"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"radio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"superbia"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"alienis"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"nebrisum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"strontio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"tempus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"luxuria"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ira"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"spiritus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"mortuus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"venenum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"infernus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"tenebrae"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"corpus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"exanimis"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"nebrisum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"superbia"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"strontio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"luxuria"}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":297,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia transmission","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What if... you could send essentia from a different location to your infusion matrix? You could finally get rid of all those jars around your altar. Also, there might be an additional use for those mirrors.\n\nYou have an intuition that a more energetic metal would allow for very interesting uses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":298,"preRequisites":[297,299],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockEssentiaLocusAggregator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"(Almost) automated essentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining the essentia locus, the essentia mirror and an essentia aggregator, you are now able to transmit essentia from almost anywhere. Fancy essentia-storage facility incomming!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockEssentiaLocusAggregator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalEye","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockJar","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":299,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:crystalEye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia monitoring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Manually checking your jars can be tedious, especially if you want to infuse a bunch of stuff at once. Luckily, the essentia locus can help you with that, as it monitors all jars that have been targeted with a crystalline eye."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockEssentiaLocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalEye","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":300,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:TaintShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cleaning the goo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you do more and more infusions, you're getting tired of removing all the flux that's generated. The shovel of the purifier will help you cleaning up flux, and is a must-have."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:TaintShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":301,"preRequisites":[272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:fireFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"One does not simply...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...play with magic. Be warned, these fires are very dangerous! But who doesn't want a patch of snow in the nether?\n\n�4Fire spread is disabled in the configs of servers to prevent massive lag and world destruction."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:fireChaos","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireAir","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireFire","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireEarth","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireWater","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicTinkerer:fireOrder","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":302,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Useful plant life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While regular plants are mostly used to make food, you are wondering if you could get some... \"more useful\" plant life going..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:redlonSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"thaumicbases:lucriteSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"thaumicbases:lazulliaSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"thaumicbases:knoseSeed","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"thaumicbases:redlonSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:lucriteSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:lazulliaSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:knoseSeed","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":303,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:overchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pushing the limits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular enchantments have a limit, like III for Fortune. Utilizing magic, you should be able to bypass that limitation, at least a tiny bit; Eventually creating enchantments like Fortune IV. It comes with limitations, but your book shall tell you more about those."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:overchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":304,"preRequisites":[303],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:enchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanting like a pro","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a device where you can actually choose which enchantments you want to have. Powered by vis, it can create the most powerful combinations one could imagine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:enchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":305,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:cryingObsidian","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crying obsidian...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...it mourns the dead. This might come in handy for some cases. By placing 2 on top of each other, you're able to set your respawn point to that location, without the need for a bed. It's up to you to imagine the possibilities..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:cryingObsidian","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":306,"preRequisites":[302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Useful trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like plants, there are trees that will attract various friendly and \"not so friendly\" creatures. (No warranty when placed in desolated biome!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":307,"preRequisites":[284],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of gods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The pearl you've found has some interesting effects on you. Not only are the voices almost gone, somehow it has also expanded your perception. You can \"feel\" the magic around you. This is definitely worth some further investigation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":308,"preRequisites":[350],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":2000000000000},"Damage":32598,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The final goal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thanks to your help I have managed to create the ultimate energy source: An encased wormhole that drains energy from a synthesized pocket universe, to the point when it reaches heat death. I have no use for it, so you may have it. Thank you for making my dream come true!"}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":2000000000000},"Damage":32598,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":309,"preRequisites":[307],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Shards of opposite worlds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This morning, you just wanted to facepalm yourself to death. During your past journeys, you have already seen strangely colored shards. But unlike the primal shards you use every day, these seem to contain the raw essence of their dimension. Heaven and Hell... so to speak. Two opposite worlds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":310,"preRequisites":[311,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothHelmGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to the fullest extent, you'll have to unleash its hidden power. This is not an easy task; But it's worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothHelmGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":311,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable cowl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothHelm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":312,"preRequisites":[313,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothLegsGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothLegsGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":313,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothLegs","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable leggings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothLegs","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":314,"preRequisites":[315,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothChestGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothChestGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":315,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable robe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":316,"preRequisites":[309],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining ichor with enchanted fabric, you've created something that could be compared to mithril. Light as wool, but durable like steel. Also, it conducts magic energy like nothing else you've seen before. This seems to be an excellent material for a new type of armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":1,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":2,"OreDict":"ingotIchorium"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":317,"preRequisites":[318,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothBootsGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothBootsGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":318,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable boots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":319,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable axe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An axe made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":320,"preRequisites":[309],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused Thaumium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining ichor with some thaumium, the metal turned into something new; Something extremely durable but also soft. Its magic conductivity is incredible"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":5,"Damage":2,"OreDict":"ingotIchorium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":1,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":2,"OreDict":"ingotIchorium"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":321,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorSword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable Sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A sword made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorSword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":322,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A pickaxe made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":323,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable shovel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A shovel made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":324,"preRequisites":[321],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorSwordGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorSwordGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":325,"preRequisites":[323],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorShovelGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorShovelGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":326,"preRequisites":[319],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorAxeGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorAxeGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":327,"preRequisites":[322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPickGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPickGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":328,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPouch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hold all the foci","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hermione's first years bag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPouch","Count":1,"tag":{"Inventory":""},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":329,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Where do the items go?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's probably better not to ask..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:blockTalisman","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":330,"preRequisites":[331],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusRecall","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magical waystones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These are used to mark locations in order to teleport around"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusRecall","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":331,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:warpGate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why walk...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when you can teleport? This little device allows you to teleport around almost for free. Is it cheaty? Is it OP? Nope, it's a celestial gateway!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:warpGate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":332,"preRequisites":[241,1560],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fire burn and...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get started with your basic witchery needs, you need a witches oven. It requires anointing paste, which you will need an MV mixer to make.\n\nThe witches oven is used to get the most basic ingredients for your recipes - Fumes.\n\nThe oven is able to capture the by-products produced in the cooking process. Activating the oven to show the interface screen, you will see an additional slot to the right of the fuel slot. Clay jars must be placed in this slot. If there are clay jars present when something is cooked, there is a chance a by-product will be captured in one of the jars. These by-products are important ingredients in other recipes. If there are no clay jars in the oven when something is cooked, no by-products will be produced.\n\nUpgrading an Oven\n\nAn oven can be upgraded by placing either a Fume Funnel or a Filtered Fume Funnel to the left and right of it. Each Fume Funnel will increase the cooking speed by and additional 10 per cent (over a furnace) and increase the chance of a by-product being produced by and additional 25 per cent for a Fume Funnel or 30 per cent for a Filtered Fume Funnel.\nAn Oven can use at most two upgrades and they must have the same facing as the oven.\n\nA fully upgraded oven will therefore cook at 130 per cent speed (compared to a furnace) and have a chance of a by-product of 90 per cent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":153,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":20,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:sapling","Count":30,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":333,"preRequisites":[334,1575],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Offerings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For all your offering needs. And of course, it looks fancy!\n\nAn altar is created by placing six altar blocks in a 2x3 pattern; you will know it is correct when a red cloth appears over the top of the altar.\n\nActivating the altar by right-clicking on it will bring up a screen showing how much power the altar has collected, how much it can collect and its current recharge rate. It is important to check that there is sufficient available power to perform a given rite or use a distillery or kettle recipe.\n\nThe maximum amount of power available is determined by how many natural items are in the vicinity of the altar: dirt, grass, trees, plants, etc. all contribute; stone and sand do not. The important thing is to have a diverse mix of different plants, trees and crops (plants from other mods are supported to an extent as well).\n\nCertain objects (or foci), placed onto an altar, will boost the focusing capabilities of an altar, either improving the amount of magic it can focus, the rate at which it replenishes or the range it can distribute power. Only one of each type of item (skull, chalice, etc.) will have an effect. There may also be other less savory foci that dark magic practitioners could make use of."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"witchery:arthana","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":334,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"...Cauldron bubble","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second thing you'll need is a cauldron. It is used to craft most of the basic items, like mutandis.\n\nIt is made by placing a regular Cauldron in the world, and then using Anointing Paste on it.\n\nTo brew a potion, cast a ritual or create an item, the cauldron must first be filled with water. This can be achieved by using three buckets of water on it, pumping water into it using pipes, or by using a Dispenser containing a Brew of Endless Water.\n\nOnce a cauldron is full of water, it must boil. Lighting a fire beneath the cauldron is the only way for this to happen. Using a netherrack block will guarantee the fire does not go out, although if it does go out, it may be set to boil again without any consequences (unlike brewing in a Kettle!).\n\nWhen the water is boiling, ingredients may be added to the Cauldron (one after another), to create the desired effect. The book, Witches' Brews gives a complete overview of all ingredients and what they can do when added to a brew."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":335,"preRequisites":[1567],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't touch the needle!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While having not many recipes by itself, the few it has are rather important for your further witchery progression."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":20,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":336,"preRequisites":[333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Probably usable for soup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But its main purpose is to brew potions and infusions.\n\nA kettle must be set up in the correct way, before it may be used. \n\nFirstly, a fire must be set under the kettle (netherrack is best for this, but wood will do just as well). \n\nNext the kettle must be filled by using a Water-filled Bucket on it. \n\nThirdly, each of the six ingredients for the brew or infusion must be thrown into the kettle, one at a time (the liquid will change color according to the recipe being used). \n\nFinally, a glass bottle must be used on the kettle to bottle the resulting brew, this must be done multiple times depending on the recipe.\n\nIt is important to keep the fire going constantly while the recipe is being prepared, otherwise it will be ruined. Swirls coming from the kettle is a sign all is well, black smoke (and brown liquid) indicates the brew is ruined. When a brew is ruined, the kettle must be emptied with a glass bottle, or just filled with more water, and the whole process repeated.\n\nWhen a brew is complete, the liquid will be the color of the resulting brew and will splutter (in addition to white swirls).\n\nSome recipes will require magical energy from a nearby Altar before they are bottled. If the brew is bottled when insufficient energy is available, the brew will be ruined. Black swirls coming from the Kettle is a good sign there is not enough power. A kettle must be within 14 (to 16) blocks of an Altar in order to obtain power from it (it can obtain power only from a single altar)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":22,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":337,"preRequisites":[334],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:brew.fuel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't shake it too much","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike nitroglycerin, this stuff doesn't explode. But you still shouldn't shake it too much..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:brew.fuel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":3,"Damage":22,"OreDict":""},{"id":"witchery:seedsmandrake","Count":3,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":338,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Spirit coin transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Potion of Spirit can only made in the spirit world. Wondering how you can get your stuff like the Kettle, Spinning Wheel or Cauldron to the spirit world? Well you can bypass it probably on servers with the enderchets but for single player or a server without any enderchest you can transfer a few coins to the spirit world and buy some stuff. Don't claim the coins until you have already passed to the other side.\n\nYou have already collected a few coins in quests. Let's transfer them now and save it in a chest.\n\nIt's a repeatable quest so you can do it as long you have enough coins."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":339,"preRequisites":[1571],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Circle magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For circle magic, you need... a circle, obviously. There are 4 types of chalk you can use, and you'll need all of them to proceed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkheart","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkinfernal","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkotherwhere","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:circletalisman","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:ingredient","Count":10,"Damage":67,"OreDict":""},{"id":"witchery:ingredient","Count":5,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":340,"preRequisites":[339],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Portable power source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By infusing a stone with fiery magic you can create an \"Attuned Stone\". These stones can be used to link non-magical devices to the magical currents present..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":5,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":10,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":341,"preRequisites":[340],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":41,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying OINKment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You tried, it doesn't fly. And it also doesn't make any OINK sounds, sadly. But there might be some use for it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":41,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":342,"preRequisites":[341],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nimbus 1999","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not as good as its successor, the 2000'ish model, but still \"somehow\" useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":80,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":343,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Refined evil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Refined good was out of stock, sorry."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:taglockkit","Count":32,"Damage":0,"OreDict":""},{"id":"TConstruct:strangeFood","Count":32,"Damage":1,"OreDict":""},{"id":"witchery:glassgoblet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":344,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Witches hand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In case you don't like the infernal witches..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:gold_nugget","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:witchhand","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":345,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:seepingshoes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Seeping shoes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who needs an antidote? Now with free fertilizer!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":5,"taskID":"bq_standard:hunt","target":"witchery.demon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:seepingshoes","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":346,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:taglockkit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Taglock kits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Get a death protection poppet and get a stack of taglock kits. For all your trolling needs."}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:poppet","Count":1,"tag":{"WITCDamage":0},"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:taglockkit","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":347,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":39,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Drop of luck","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hard to get, even with that quest. But less of a grind..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"witchery.hellhound","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":39,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":348,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:canesword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: \"Cain\" sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Serves 2 purposes: Style. And... ah, yeah... Something useful for vampires."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblinmog","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblingulg","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:canesword","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":349,"preRequisites":[342],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:vampirehat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Be a vampire; Dress like a fancy person","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes it can be troublesome to get fancy clothing. However, if you prove yourself worthy, you get a set for free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:quiverofmog","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:gurdleofgulg","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:babashat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:vampirehat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampirecoat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampirelegs","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampireboots","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":350,"preRequisites":[354,356,357,359,361],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":17,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A few more things...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ok, I think I have everything I need to assemble the device. Can you assist me with some additional materials? I need to update most of my machines, as these exotic components you got me damaged most of them already. Don't worry, I have a list here.\n\nMost of my circuits burned to a crisp while I was trying to measure the conductivity of these soul and life shards. I need better ones.\n\nGood lord, these mysterious crystals have eaten away my diamond grinding head! How could that happen? Can you get me a better one?\n\nDo you see that pile of chrome over there? No? Neither do I. Because the machine was VAPORIZED! Good that you gave me 2 singularities, the first one... Well... Just get me a better casing, would you?\n\nIt seems, that the stabilizers need... stabilizing... But I'm out of field generators. Can you help me with this?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":10,"Damage":32088,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32723,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32672,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":351,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:writable_book","Count":1,"tag":{"pages":["Conceptual Device:\nThe Zero-Point-Module.\n\nHello my friend.\nI need you to help me with a pr"]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hello there","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've observed your pathway, and I have to say, I'm impressed. I might need your help soon, on a big project of mine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":10,"Damage":14,"OreDict":""},{"id":"GalacticraftMars:tile.mars","Count":10,"Damage":7,"OreDict":""},{"id":"GalaxySpace:ceresblocks","Count":10,"Damage":5,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":10,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":352,"preRequisites":[351],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":1000000000},"Damage":32599,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Power. So much power!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If only I could harness it... Well, hi there my friend. I need your help with a project of mine. I want to create an immense power source, but I have a few problems that I need to solve first. Will you help me? You will be rewarded."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":353,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.mars","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A problem that matters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need to open a wormhole. But for that, I need an immense gravitational field. One like those created upon the death of a massive star. But I can't really \"kill\" a sun for this. I need to compress matter somehow... \nBut... How?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":354,"preRequisites":[452],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Now that matters!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course! The matter condenser! How come I didn't think of that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":355,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I need a stabilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Opening the wormhole is one thing, but I need to stabilize it, so it doesn't harm anything. I guess I need something made of crystal. Why? Because I like it fancy. Find me a crystal-based, transparent material with immense power, would you?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":356,"preRequisites":[453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Shiny!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What in the world is this? This is amazing! I need more of these! They will be an amazing containment material for the wormhole!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":357,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I'm hungry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What... I work a lot! So get me some food please."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:creamofavocadosoupItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"harvestcraft:mintchocolatechipicemcreamItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":358,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It needs a power plug...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Given the fact that I will be able to craft this device, it needs some kind of \"plug\" to get the power out. I need something to conduct immense amounts of power. I thought about superconductors, but they don't fit with the crystal casing material I have in mind. I need 2 different crystals, one for positive and one for negative charge."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":359,"preRequisites":[454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Red and blue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Really? A red and blue crystal? How awesome is that! I think I will need 8 of each color, just to be sure."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":360,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"BiomesOPlenty:misc","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A casing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need something for the outer shell. Again, a crystal-based material would be best, because I like it shiny. I tested all crystals we know and none of them meet the requirements. I heard you have access to outer space? Can you try to find a suitable material while you're out there?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":361,"preRequisites":[455],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yes. Yes! That's it! Bring me more of this stuff! I probably need a lot of it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":362,"preRequisites":[464],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Beyond imagination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What is this? Draconium dust? I wonder if I could use this for something..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":363,"preRequisites":[362],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of dragons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey my friend. I got your sample, and I have to say, I'm amazed. This material has a lot of potential, but it's useless at the moment. I have an idea how to turn this into something useful, but I need you to help me with a few problems first.\n\nI need a good handful of that stuff for my research. Please get me some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":364,"preRequisites":[363],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First things first, we need a hull. I played around with your sample, and it seems that it reacts with every known material. It even attacks Iridium! It's completely harmless if it's in a box that is open, but as soon as I try to enclose it in something, poof. It breaks free. We need something stronger than iridium my friend."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":365,"preRequisites":[465],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense, denser, Neutronium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now look at this. This stuff is incredibly dense. Maybe this material will be sufficiently strong?\n\nThis looks promising. Send me some samples, and I will try my luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":366,"preRequisites":[457],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not a planet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This place is interesting. Maybe I should try to find new materials here..."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Pluto","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":367,"preRequisites":[365],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:tile.TFTowerTranslucent","Count":1,"tag":{"display":{"Lore":["Formerly known as Neutronium"],"Name":"Hull debris"}},"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Successful.. Or not?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Heh, neutronium. I didn't even know such a thing really exists. Unfortunately, the draconium dust was enclosed for... 5 seconds? But, it was a small success. \n\nOk let's travel to some planets and moons and look for the new material. I think we have to fly very far away for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:tile.TFTowerTranslucent","Count":16,"tag":{"display":{"Lore":["Formerly known as Neutronium"],"Name":"Hull debris"}},"Damage":5,"OreDict":""}]}]},{"questID":368,"preRequisites":[466],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Black Plutonium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This doesn't seem to be dense, but it's a material you haven't seen before. Maybe this could be the solution?\n\nBlack what? Huh, interesting. Send me some samples, I want to analyse it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":369,"preRequisites":[368],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We have a hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Surprisingly, this material is able to contain the draconium dust. It could be the radiation. Good job my friend!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":370,"preRequisites":[369],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:enderporter","Count":1,"tag":{"display":{"Lore":["The first sample. Wait.. Is that... a button?"],"Name":"Draconium Dust core"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconium Dust core","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've created a first sample of what I shall call \"Draconium Dust core\". Not quite the result I expected to be honest, but see for yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:enderporter","Count":1,"tag":{"display":{"Lore":["The first sample. Wait.. Is that... a button?"],"Name":"Draconium Dust core"}},"Damage":0,"OreDict":""}]}]},{"questID":371,"preRequisites":[370],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We need to control it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The problem is that the immense power of this dust is released all at once. We need something to control the vast amount of energies. I noticed that the dust starts to glow when it gets near an aura node. Maybe Thaumaturgy has the solution?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":372,"preRequisites":[458],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of primals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What else could control energies better than a focus of crystallized primal energy? With this little item, it should be possible to control the energies released from the dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":373,"preRequisites":[372],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mudball","Count":1,"tag":{"display":{"Lore":["A mix of draconium dust, a primordial pearl","and.. Is that a bone?"],"Name":"Primordial dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unforeseen consequences","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You haven't heard anything in a while from the technician. You have a feeling that something might have gone terrible wrong, so you went to his place to investigate. What you found was... nothing. A void. It seems that he tried to combine the pearl with the dust. What did he say? The dust reacts to aura nodes? Of course it does. It amplifies the energies by a thousand times. And giving it raw primal energy, good lord, what has he done. May he rest in peace..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:mudball","Count":1,"tag":{"display":{"Lore":["A mix of draconium dust, a primordial pearl","and.. Is that a bone?"],"Name":"Primordial dust"}},"Damage":0,"OreDict":""}]}]},{"questID":374,"preRequisites":[373],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I'm on my own now","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need to continue my research. I still think that this primordial pearl is the key to control the dust, but I'm not sure how. Maybe the pearl is just too strong? I should try to use something that's similar, but less powerful. It reacts to vis, so maybe.. I should try to make a wand focus with that pearl. That way, I could channel vis into the dust without actually combining both."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":375,"preRequisites":[376],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An interesting material","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This metal has quite interesting properties. It seems that it has absorbed some of the energy that exists in the End. While ender pearls are quite fragile, this metal is a lot more durable. However, the absorbed energy is not enough to teleport things around. But you might find a solution for this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":376,"preRequisites":[385],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gross, what is that...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's purple, and it smells like rotten eggs. But while staring at this unpleasant fluid, you had an idea. You can't reach the dust directly, but can you actually teleport something in and out the field? Might be worth a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":377,"preRequisites":[459],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An appropriate focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've tried a lot, and nothing was quite enough to activate the dust. Until now. You finally found a focus that is able to transmit enough power to cause a heavy reaction with the dust, but not enough to cause problems."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":378,"preRequisites":[377],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated draconium dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At least for a short period of time. The wand focus is powerful enough to activate the dust, but it will convert back to regular dust as soon as I stop feeding it with vis. If I only could contain it, surround it with a forcefield..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""}]}]},{"questID":379,"preRequisites":[378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32684,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The strongest forcefield","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to create a forcefield, I need to build myself a containment device. I will use only the best emitters I can afford. I will take no risks here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32676,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32686,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":380,"preRequisites":[379],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"display":{"Lore":["A pile of something that","used to be a machine hull"],"Name":"MAX Machine Casing (Molten)"}},"Damage":7129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not what I expected...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The outcome was... interesting. It did not explode, instead, the activated draconium dust generated a counter-field to mine! Unfortunately, the emitters could not stand the reverse energies, and melted. I was able to shut it off quick enough to save the machine casing (At least what's left from it...) And a couple of field generators."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32676,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"tag":{"display":{"Lore":["A pile of something that","used to be a machine hull"],"Name":"MAX Machine Casing (Molten)"}},"Damage":7129,"OreDict":""},{"id":"minecraft:nether_star","Count":2,"tag":{"display":{"Lore":["A few scratches here and there,","but still usable"],"Name":"Nether Star (Used)"}},"Damage":0,"OreDict":""}]}]},{"questID":381,"preRequisites":[380],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":900100,"terra":900100,"ignis":900100,"cap":"orichalcum","rod":"neutronium","ordo":900100,"perditio":900100,"aer":900100},"Damage":2000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forcefield, second try","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I came to the following conclusion: Draconium dust seems to react nicely with all kinds of magic energy, and seems to repel technology. So I need to find a way to create a forcefield with magic alone. There must be a way..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":382,"preRequisites":[460],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magic force field","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While node stabilizers are too weak, you found a way to generate a strong containment field, generated by magic itself. You tried to use warded glass, but even the \"frozen in spacetime\" material could not resist the power of activated draconium dust. You decided to build another device, this time with your newest invention.\n\nThe vortex attenuator is powerful enough to negate even hungry nodes, and it also will be able to contain activated draconium dust.\n\nJust to be sure, I will add some amplifiers to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicHorizons:transductionAmplifier","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":383,"preRequisites":[382],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:transductionAmplifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What the...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The device works! It is able to fully contain and separate the draconium dust from everything around it! Unfortunately... It also prevents the vis from passing the barrier, which results in regular draconium dust... In a forcefield..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":384,"preRequisites":[383],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Looking for alternatives","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is frustrating. Either you are able to contain the dust but can't activate it, or, you activate it and it causes serious damage. Maybe you need to find answers somewhere else.\n\nDraconic... Like... Dragon?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":385,"preRequisites":[461],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconic... Like... Dragon?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you where looking for the right things in the wrong place. As this dust obviously comes from dragons, the best thing to do now is to find answers in the dimension of dragons: The End."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Dragon Dimension","range":-1,"index":0,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":386,"preRequisites":[387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:endoplasm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weird creatures","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These ghosts are weird beings. But, I found this ectoplasm, which, by itself, seems to be pretty useless."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:endoplasm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":387,"preRequisites":[388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:spatial_dash_gem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated teleport power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By a random guess of yours, you combined molten ender pearls and a few more of these shards with an empty gem, and it turned blue. It is pulsating with power. You tried to use it on your containment device, and it seems to be able to bypass the force field, while keeping it intact that the same time. Sadly, it doesn't have enough power to let vis pass through. Maybe you can even further increase the gems power?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:spatial_dash_gem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":388,"preRequisites":[375],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:arcane_shard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arcane shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the normal world is based on vis and primal energy, the End seems to be quite different. This arcane shard is the crystallized form of this energy, just like the primal shards that you used so many times in the past. By pure randomness, you discovered that it reacts with the metal you've found."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:arcane_shard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:blank_gem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":389,"preRequisites":[390],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconicCore","Count":1,"tag":{"display":{"Lore":["Emits a strong, vibrating aura of pure energy you never experienced before.","In good memory of your old friend, the technician. May he rest in peace"]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconic evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I found a way to combine technology and magic into something fantastic. A shiny blue emblem that emits immense amount of energy. I've decided to call it the draconic core. Make one for yourself!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconicCore","Count":1,"tag":{"display":{"Lore":["Emits a strong, vibrating aura of pure energy you never experienced before.","In good memory of your old friend, the technician. May he rest in peace"]}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":390,"preRequisites":[468],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:resource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Balanced thaumium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This new metal is quite cheap, and has an awesome conductivity towards all 6 primal aspects. Regarding the capsule, I'd say it is a superconductor for vis. I think I can finally assemble the final frame."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:resource","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"thaumicbases:resource","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":391,"preRequisites":[389],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The machine is working pretty well, but it's tedious to fill in the reagents manually. But you have an idea, you could use a few basic components to fully automate the process.\n\nYou can use robot arms and conveyor belts to automate the input and output.\n\nObviously, you need to power the machines. A solar panel will do just fine.\n\nIn order to automate the catalyst, you need a few things. One golem will gather basic materials, while the second one will hunt creepers and ghasts for the more valuable ingredients.\n\nYou found a way to re-use the singularity, so you only need to get some sand. Luckily, the golem that works on the catalyst will be able to get glass too. He just needs a little additional motivation.\n\nYour golems need light, obviously. Also, it would be nice if there are some signal lamps that indicate the status of the process. Would it not?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32656,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32636,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32757,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemPlacer","Count":2,"Damage":7,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemGolemDecoration","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"MagicBees:miscResources","Count":1,"Damage":17,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemGolemDecoration","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":1,"requiredItems":[{"id":"BiblioCraft:BiblioLamp","Count":2,"Damage":0,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":13,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":14,"OreDict":""}]}]},{"questID":392,"preRequisites":[386],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:transference_gem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated teleport gem","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are sure that you've just discovered the solution for your containment problem. This gem happily transmits vis on request, while keeping the containment field intact. What a great day!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:transference_gem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":393,"preRequisites":[392],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"You did it! But...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are able to contain the activated draconium dust for an infinite amount of time, you where able to assure the energy it releases. The readings are incredible. You have never seen such a power before. The only problem is, the machinery required to keep the dust in this state is too large to use it for crafting.\n\nYou noticed something that might help: The dust reacts to vis, but it needs a lot of it, therefore you require the animation focus. If you could find a catalyst, that you can mix the dust with, you could make the dust react with the vis from its surroundings instead of a direct beam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":394,"preRequisites":[462],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A catalyst","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That's it. This catalyst contains all primal energies in a quite different form, a lot weaker than any node. However, in combination with the draconium dust, it amplifies the vis that's around it, which leads to a permanent activation. It still needs to be contained, but you don't need the direct vis beam any more.\n\nThe result is a compound, which still emits massive amounts of power, but is less destructive. It still attacks the neutronium, but I think if I can find a capsule-like container that has special properties, I could create a portable version of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":395,"preRequisites":[467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bulma would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining a dimensional singularity with some glass cylinders and molten gold, I was able to create a miniature containment field within a very small area. Interesting enough, the new draconium blend amplifies the containment field from the inside. Once I fill the blend in the capsule, it immediately \"seals\" itself. I won't be able to remove or replace the dust any more, but I don't think I have to...\n\n\nThe perfect vessel for massive power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":396,"preRequisites":[395],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The final steps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that I've found a way to stabilize the draconium dust and keep it safe in a small capsule, I just need to make a small container for it, so I can drain the energy on demand. Neutronium will serve very well, but I need a magic conductor. Thaumium works, but gets way too hot and void metal has a bad conductivity. I need to find a magic alloy that is more \"balanced\" in terms of primal aspects"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":397,"preRequisites":[391],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconicCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Endless evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using your machine, you can now craft infinite amounts of these cores. And since it would be gruesome to let your golem work just for one single core, you decided to only request cores in a large batch of 64. How nice of you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11129,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11978,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32049,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconicCore","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":398,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:babashat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Baba Yaga","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Baba Yaga is a witch (or one of a trio of sisters of the same name), who appears as a deformed and/or ferocious-looking elderly woman. She flies around in a mortar and wields a pestle. She dwells deep in the forest, in a hut usually described as standing on chicken legs, with a fence decorated with human skulls. Baba Yaga may help or hinder those that encounter or seek her out."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.babayaga","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":399,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:hornofthehunt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Horned Huntsman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Horned Huntsman is a member of the Wild Hunt, a powerful entity created by the Horned God. If one is encountered, prepare for a hard fight, or better flee."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.hornedHuntsman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":400,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Ender Dragon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The dragon must die. Long enough he destroyed those precious endstone blocks!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":401,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:leonardsurn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Shade of Leonard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Leonard is the demonic being who is rumored to have taught a cadre of German witches their trade, and often presided over their sabbats. A skilled coven with the witches cauldron can summon a Shade of the Demon according to the method described in the Witches' Brews book."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:leonardsurn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":402,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":141,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Lord of Tormentum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Lord of Torment is a mighty demonic being that is able to create prisons to torment its victims. Those foolish enough to summon one of these creatures must prepare for an arduous fight."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.lordoftorment","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":403,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:quiverofmog","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Mog and Gulg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mog and Gulg are the god-like beings that hobgoblins worship. They may send their avatars to pay witches a visit who exploit their worship (with a statue of hobgoblin patron). Rumor has it that using a nether star may make them take immediate notice."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblinmog","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblingulg","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":404,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Demon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Demons are powerful, evil beings who dwell in the infernal dimensions. To date, none have been seen roaming the Nether, where their minions: ghasts, blazes and their ilk seem to dominate. To meet a demon without a way to protect oneself is almost certain death. They are known to hit like a proverbial truck, and require a significant amount of damage to kill. Some demons have even been seen shooting fireballs! They are, of course, also immune to fire."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.demon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":405,"preRequisites":[398,399,400,401,402,403,404],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:infinityegg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of infinity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've mastered everything possible. And now it's time to give your equipment the final boost. The infinity egg is just the right addition to your altar. It's quite expensive, but well worth the cost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"witchery:chalkheart","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkinfernal","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkotherwhere","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":64,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":45,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":80,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:infinityegg","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":406,"preRequisites":[407,708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:lavaSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lava for blood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, both are red, so that connection was quite obvious... Was it...?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:lavaSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":407,"preRequisites":[177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blankSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic slates. Basically just stone with blood infused in it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blankSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:blankSlate","Count":12,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":408,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:divinationSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's quite difficult to see how much blood there is in your altar, or your personal blood network. This little device will solve that problem for you. Just a little prick in the finger, and everything will be revealed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:divinationSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":409,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic rune","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic rune that you can craft at this moment.\n\nYou need 8 runes for your tier 2 altar, which can hold more blood, and you can make new recipes now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":410,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Alchemy with blood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not like \"blood alchemy\". You probably will need more than one later, but for now one is sufficient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":411,"preRequisites":[412],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:averageLengtheningCatalyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion catalysts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to manipulate potions you need catalysts. You then combine the ingredient you used to get the potion effect in with either a lengthening or power catalyst to increase the duration or the strength of the potion effect."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:mundaneLengtheningCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:mundanePowerCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBindingAgent","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:simpleCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":412,"preRequisites":[410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:crystallos","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple alchemical things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alchemy can be weird, and tedious. There are a lot of reagents and even more possible combinations. For now, and in order to get started, you need a couple of basic things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:simpleCatalyst","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:crystallos","Count":16,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanctus","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:sanctus","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:crystallos","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":413,"preRequisites":[415],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:weakFillingAgent","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refilling your potions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If empty, you don't have to throw the potion away. Just refill it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakFillingAgent","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:standardFillingAgent","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":414,"preRequisites":[410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Special potion flasks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular glass phials are unable to hold these special potions you want. You need to imbue them with some blood from your altar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:alchemyFlask","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":415,"preRequisites":[411,414],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion: Flight mode","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just to give you an idea what is possible. Let's do a sample potion. Shall we? Get yourself a potion flask, a feather and one of your weak binding agents you made. Combine those in the chemistry set, and you'll get something that you'll probably want to keep for a while."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBindingAgent","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:averageLengtheningCatalyst","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":416,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:blockHomHeart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple, but powerful spells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The simple spell system is rather easy to setup, and can be done early on in your bloodmagic career."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockHomHeart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":417,"preRequisites":[416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paradigm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Paradigms shape your spell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":418,"preRequisites":[416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spell foci","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are nine basic elements and each has a focus, an item that represents them. You place this focus in your altar next to the spell table in order for your magic to flow through it and the paradigm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ice","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:water_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:obsidian","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":419,"preRequisites":[418,417],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Some examples","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a LOT of spell combinations to discover, so just use trial and error!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:ice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":420,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:sigilOfMagnetism","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Convenient slate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collecting items while mining or chopping wood is always tedious. But no more! With this fancy little thing items will just fly towards you! And it only costs a little bit of blood to pay the spirits of wind to work for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sigilOfMagnetism","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":421,"preRequisites":[926],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:imbuedSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...and even more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":422,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:reinforcedSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need MOOORE. Imbue some slates with even more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:reinforcedSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:reinforcedSlate","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":423,"preRequisites":[422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Apprentice orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 2 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":424,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magican's orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 3 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":425,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:waterScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Elemental chalk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creation of better ritual stones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:waterScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:fireScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:earthScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:airScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":426,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:runeOfSelfSacrifice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sacrificial runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Poking your finger might work for simple slates and runes, but getting enough blood for advanced stuff is tedious. With sacrificial runes you are able to increase the LP gain from mobs or yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:runeOfSelfSacrifice","Count":4,"Damage":0,"OreDict":""},{"id":"AWWayofTime:runeOfSacrifice","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:runeOfSelfSacrifice","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:runeOfSacrifice","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":427,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first rune to increase your capacity, and a rune to speed up transfer from/to external tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":2,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":2,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":428,"preRequisites":[425],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have access to elemental chalk, you can get yourself the basic ritual diviner. A convenient way to place simple but yet complex magical rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:imbuedSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":429,"preRequisites":[430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodSocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powerful armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A long way to go, and rather expensive, but a really powerful armor and well worth the effort."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:emptySocket","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodSocket","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:armourForge","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:weakBloodShard","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":430,"preRequisites":[432],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:weakBloodShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting soul shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enable your sword by Shift right-clicking and slay some enemies! Collect as many shards as possible. You will need a ton of them..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakBloodShard","Count":17,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:blankSlate","Count":16,"Damage":0,"OreDict":""},{"id":"AWWayofTime:reinforcedSlate","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":431,"preRequisites":[429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to assemble your armor. You need to build the pattern with blocks as you would craft the armor in a crafting table. The soul forge must connect to the structure on at least 2 sides. Then, right click the forge block with an empty hand to craft the armor piece."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundPlate","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:armourInhibitor","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":432,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:energySword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A bloodmage's sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamonds and emeralds are limited in their ability to store LP. With this sword, you are able to get the crystallized souls from your enemies. Time to go hunting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:energySword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":433,"preRequisites":[422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:masterStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time for some rituals. The most basic one you'll probably get first is the ritual of binding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":24,"Damage":0,"OreDict":""},{"id":"AWWayofTime:masterStone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":434,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundPickaxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Pickaxe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mining never was easier. Just right-click with this tool and all the stone is gone! Like all bound tools, this uses a massive amount of LP."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundPickaxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":435,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Shovel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever wanted to clear out a large terrain with dirt, gravel and sand? Why not let demons do it? This shovel, imbued with the soul of a demon will unleash the power by your will. But be warned: The demon you're about to summon with this is thirsty, and it costs a lot of LP to make use of it, so make sure your LP pool is full!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":436,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Axe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upon right click while activated, this axe will clear out any wood within a large area. Be warned: This uses a huge amount of LP. You might suffer from sudden death..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":437,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:sanguineHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A true blood-mage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bloodmagic is fine, so is Thaumcraft. Why not combine both worlds?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sanguineHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguineRobe","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguinePants","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguineBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":438,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellParadigm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Complex spell system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike the simple spells with foci and paradigm, the complex spell system is incredibly...complex. There are way too much combinations to cover them here, so it's advised to look for the knowledge in other places. However, with the items from this quest, you are able to craft a simple mining spell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellParadigm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEffect","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellModifier","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemComplexSpellCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:incendium","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:aquasalus","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":439,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Steam > Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three steam lootbags give a better one = Tier 2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":440,"preRequisites":[4],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:pamappleSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lOak trees are not apple trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oak trees which give apples? Who the hell added this to minecraft? You found a way of combining an oak sapling and an apple to get an apple tree sapling. Try to plant one to get a permanent source of food.\n\nOnce you complete this quest, check out the rest of the Quest Tabs. A new one, Coins Coins Coins, has unlocked. Every few quests you want to look through all the quest tabs to make sure something new hasn't unlocked somewhere else! There are lots of tabs, so be sure to scroll down!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:apple","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:pamappleSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:pampearSapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamcherrySapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamorangeSapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamwalnutSapling","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":441,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Basic > Steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic lootbags give a better one = Steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":442,"preRequisites":[9],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32201,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§l\"Backed\" potatoes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eating raw potatoes isn't that healthy, as you might have noticed. Some potatoes are green and poisonous already. After you get a furnace you can make delicious baked potatoes as another food alternative. Put a baked potato on a stick to make it even more delicious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:potato","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:baked_potato","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32201,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:melon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":9,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":443,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 2 > Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 2 lootbags give a better one = Tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":444,"preRequisites":[9],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Wood","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSoft mallet adventure","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You now have some melon slices or pumpkins but what can you do with them? Well just eat them or... use a mallet to get some seeds... OK, let's craft one. Perhaps you can use this mallet for some other things too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"},{"id":"minecraft:planks","Count":6,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Wood","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:melon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":445,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 3 > Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 3 lootbags give a better one = Tier 4"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]}]},{"questID":446,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.wood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lShields UP","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a sword in one hand, what can you do with the other? Right, you need a shield. Let's make one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":4,"Damage":0,"OreDict":"logWood"},{"id":"minecraft:flint","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:cobblestone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":447,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 4 > Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 4 lootbags give a better one = Tier 5."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":448,"preRequisites":[446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.hide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lShield update","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wooden shield is very weak. So you look for a better one. Looks like you need some leather, so go and find some cows."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.hide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fence","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":449,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 5 > Tier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 5 lootbags give a better one = Tier 6."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":450,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lYour first long range weapon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since you can't make any vanilla bow before LV and Tinkers weapons are not in this Tier, you find a way to make a spear out of sticks, leather and a string. Get one because some infernal monsters are easier to kill with a long range weapon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"woodStick"},{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":451,"preRequisites":[906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger LoC","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by having a \"Lamp of Cinders\" in your inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":452,"preRequisites":[353],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Singularity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a singularity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":453,"preRequisites":[355],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Shard of Creation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a \"Shard of Creation\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":454,"preRequisites":[358],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Life and Soul Shard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a \"Life Shard\" and a \"Soul Shard\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":455,"preRequisites":[360],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Unknown Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by finding a \"Mysterious Crystal\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":456,"preRequisites":[916],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers the Life Canister Quest after a Wither death."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":300,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.6000000238418579,"Name":"generic.movementSpeed"},{"Base":40,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"Invul":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":300,"id":"WitherBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5130901120732393000,"Health":300,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14321298824739,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"WitherBoss","subtypes":1}],"rewards":{}},{"questID":457,"preRequisites":[367],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Pluto","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you have been on Pluto."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":{}},{"questID":458,"preRequisites":[371],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Primordial Pearl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by the Primordial Pearl."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":459,"preRequisites":[374],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Wand Focus Animation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you craft the Primordial Focus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":460,"preRequisites":[381],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Vortex Attenuator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers after you craft a Vortex."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":461,"preRequisites":[384],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger The End Dim","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you arrived at The End."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":0,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":{}},{"questID":462,"preRequisites":[393],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Amorphic Catalyst","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you craft the Catalyst."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":463,"preRequisites":[423],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:speedRune","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Runes tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Speed rune is the only tier 2 rune. The speed rune does what its name implies, provides an additive 20% increase to the processing speed of the blood altar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:speedRune","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:imbuedSlate","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:speedRune","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":464,"preRequisites":[308],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:barnardaCdirt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The technician part 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I will ask the technician about this stuff, but I need to reach a good reputation first. He is a busy man, and I don't want to be denied."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"GalaxySpace:enceladusblocks","Count":10,"Damage":2,"OreDict":""},{"id":"GalaxySpace:proteusblocks","Count":10,"Damage":3,"OreDict":""},{"id":"GalaxySpace:plutoblocks","Count":10,"Damage":6,"OreDict":""},{"id":"GalaxySpace:barnardaCdirt","Count":10,"Damage":0,"OreDict":""},{"id":"GalaxySpace:vegabgrunt","Count":10,"Damage":0,"OreDict":""},{"id":"GalaxySpace:tcetieblocks","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":465,"preRequisites":[364],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Neutronium Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you get Neutronium Ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":1,"Damage":129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":466,"preRequisites":[366],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Black Plutonium Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you find Black Plutonium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":1,"Damage":388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":467,"preRequisites":[394],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Empty Void Capsule","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you have a Void Capsule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":468,"preRequisites":[396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Thauminite Nugget","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you get Thauminite Nuggets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:resource","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":469,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:BerryBush","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCollecting some berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you now waiting for the carrots to grow? Go and find some berry bushes and berries. The berries are a good source of food and you can put these bushes around your house to make a wall. It should provide a good protection against all those monsters that want to come into your house and kill you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":5,"Damage":1,"OreDict":""},{"id":"Natura:berry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Natura:BerryBush","Count":5,"Damage":0,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:BerryBush","Count":2,"Damage":15,"OreDict":""},{"id":"Natura:BerryBush","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":470,"preRequisites":[469],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:berryMedley","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBerry medley","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hmmm... what can you do with all those berries? Just eating? You will see that they have a very low saturation Level. Let's plant the new berry bushes and mix the berries to make some better food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":1,"Damage":1,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":3,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":2,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood","Damage":100}},"Damage":34,"OreDict":"craftingToolKnife"},{"id":"minecraft:bowl","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Natura:berryMedley","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:BerryBush","Count":5,"Damage":15,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":14,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":13,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Natura:berryMedley","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":471,"preRequisites":[442],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:teaItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§1§lFood variants","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you noticed already that eating the same food too often is very boring and not healthy any more. Some food like tea leaf can be taken to the furnace and processed further. So take a break and drink a cup of tea. Maybe munch some tasty raisins as they are very nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:tealeafItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:grapeItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:teaItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raisinsItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2817,"OreDict":""},{"id":"harvestcraft:butterItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":472,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":56,"Head":3,"HeadEXP":0,"BaseAttack":3,"Built":1,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":3,"Broken":0,"Shoddy":0,"RenderHandle":3,"Accessory":3,"MiningSpeed":400,"RenderAccessory":3,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":56},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When your tinkers tables are ready you can craft your first tool. If you did not find a village yet you can only craft flint tools. Let's start with a pickaxe, an axe and a shovel. At this point swords are unobtainable since they need metals like iron or bronze which you will get at a later stage. In the meantime use your gregtech swords. Your new tools are weak at first but the more you use them the better they will get. They will level up to level 99 if you play long enough. Tool parts can be replaced for a bit of level XP, however the tool must be fully repaired first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":4,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":9,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:flint","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":1,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:shovelHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"HeadEXP":0,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":400,"RenderAccessory":0,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},{"id":"TConstruct:hatchet","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":5,"ToolEXP":0,"HarvestLevel":1,"Attack":5,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Hatchet"}},"Damage":0,"OreDict":""},{"id":"TConstruct:shovel","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":4,"ToolEXP":0,"HarvestLevel":1,"Attack":4,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Shovel"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:blankPattern","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":473,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:broadsword","Count":1,"tag":{"InfiTool":{"BaseDurability":427,"Head":14,"BaseAttack":7,"Built":1,"ToolEXP":0,"HarvestLevel":4,"Attack":7,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":427},"display":{"Name":"Bronze Broadsword"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking a better sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it's time to make your first tinkers sword. First you have to make blade, hand guard, and tool rod cast forms. Melt some bronze in the smeltery and cast your tool parts. Tadaa... there is your first tinkers sword."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":6,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:swordBlade","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:wideGuard","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":4,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":474,"preRequisites":[28,472],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":225,"Head":2,"HeadEXP":0,"BaseAttack":4,"Built":1,"ToolEXP":0,"HarvestLevel":2,"Attack":4,"RenderHead":2,"ModDurability":0,"Handle":2,"Broken":0,"Shoddy":0,"RenderHandle":2,"Accessory":2,"MiningSpeed":600,"RenderAccessory":2,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":225},"display":{"Name":"Iron Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§k§l§l§r§2§lUpgrade 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find iron, copper and tin ore. Very funny... How can you mine these with just a flint pickaxe? \nI have an idea; bring me all the stone you mined with your flint pickaxe and I will give you a better tool head in exchange."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:cobblestone","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:shovelHead","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":475,"preRequisites":[86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #4: Upgrade tier 5 - HSS-G Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like HSS-E, HSS-S, naquadah or draconium you need more than 4500K. Time to upgrade your EBF to 5400k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":476,"preRequisites":[475],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #5: Upgrade tier 6 - Naquadah Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like naquadah-alloy you need more than 5400K. Upgrade your EBF to 7200k to increase the heat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":477,"preRequisites":[476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #6: Upgrade tier 7 - Naquadah Alloy Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the more advanced materials like neutronium or fluxed-electrum you need more than 7200K. Upgrade your EBF to 9001k. (OVER 9000!!!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":478,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lFlint and steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make steel you are able to craft flint and steel. I guess you want to travel to the Nether as soon as possible but be aware; the Nether is a very dangerous place.\nNote: The ball of moss gives a tinker's tool self-repair. But if the tool is completely broke, it will have to repair to full health before fixing the tool."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":20305,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:arrow","Count":32,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:obsidian","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":479,"preRequisites":[478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§m§l§m§4§3§lTHE NETHER","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now more dangerous with extra hardcore infernal mobs. Have fun and take care. Be sure to bring a tough companion along to keep you alive. If you have no friends, why not make an Iron Golem and push it through first, or bring the materials for more along with you?\n\nAlso, *when* you die here, not if, your graves will spawn skeletons because of the darkness. Make sure you light up areas where you might die, and when recovering graves light up the area *first* so that you don't end up dying over and over and making a mess."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:obsidian","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"THE NETHER","range":-1,"index":1,"dimension":-1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:natura.armor.imphelmet","Count":1,"tag":{"ench":[{"lvl":1,"id":0},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impjerkin","Count":1,"tag":{"ench":[{"lvl":1,"id":3},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impleggings","Count":1,"tag":{"ench":[{"lvl":1,"id":4},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impboots","Count":1,"tag":{"ench":[{"lvl":1,"id":2},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":99,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":97,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":480,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":871,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMalachite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another copper source is \"malachite\" which can be found between Y level 10 and 40. This vein contains more iron ore variants like \"brown limonite\", \"yellow limonite\" and \"banded iron ore\".\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in nei and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":871,"OreDict":"oreMalachite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":917,"OreDict":"oreBandedIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":931,"OreDict":"oreYellowLimonite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":930,"OreDict":"oreBrownLimonite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11035,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32240,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":481,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:fluid.creosote.bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§l§2§lCreosote oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I guess you already processed a bit of wood into charcoal and wonder what you can do with all this creosote oil?\nWell you can burn it in the normal furnace to cook your food or you can make more torches with it. Later in the LV age you probably should run combustion generators with it."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":482,"preRequisites":[483,1476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Cow"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnimal farms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Trying to get some leather or wool? You probably need to spend a lot of time hunting animals and traveling around, or you could simply make a farm to get a decent amount of leather, wool and meat. Make sure you don't put too many animals in the pen or they will overcrowd and kill each other."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:beef","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wool","Count":100,"Damage":0,"OreDict":"blockWool"},{"id":"harvestcraft:muttonrawItem","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:porkchop","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:chicken","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:shears","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:mattock","Count":1,"tag":{"InfiTool":{"MiningSpeed2":700,"BaseDurability":67,"Head":314,"BaseAttack":6,"Built":1,"ToolEXP":0,"HarvestLevel":6,"Attack":6,"RenderHead":314,"ModDurability":0,"Handle":314,"Broken":0,"Shoddy":0,"RenderHandle":314,"Accessory":314,"MiningSpeed":700,"RenderAccessory":314,"ToolLevel":1,"Unbreaking":10,"HarvestLevel2":6,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":67},"display":{"Name":"Unstable Induced Mattock"}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":483,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat_seeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGardener","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are wondering: Why do I never get seeds when destroying grass? You are right. Try to work with your new mattock on the grass blocks that do not have water anywhere nearby to find some seeds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":4,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:shovelHead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:mattock","Count":1,"tag":{"InfiTool":{"MiningSpeed2":650,"BaseDurability":534,"Head":14,"BaseAttack":6,"Built":1,"ToolEXP":0,"HarvestLevel":4,"Attack":6,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"HarvestLevel2":4,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":534},"display":{"Name":"Bronze Mattock"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11300,"OreDict":""},{"id":"TConstruct:GravelOre","Count":2,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":484,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCan you hear the carrots grow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of waiting since your carrots grow sooooo slow?\nWell I got an idea, bone meal will help you grow food in seconds. Ok, chop down some trees and I will trade you some bone meal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":64,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":10,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:dye","Count":10,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood"}},"Damage":6,"OreDict":""},{"id":"minecraft:torch","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":3,"Damage":15,"OreDict":""}]}]},{"questID":485,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou need MOOOOOOORE wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to feed your new coke oven with some wood to get more charcoal. You are looking for the most efficient way to plant trees. Try to find some spruce saplings and some jungle saplings. Both can be planted in a 2x2 grid to get bigger trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":4,"Damage":1,"OreDict":""},{"id":"minecraft:sapling","Count":4,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":0,"OreDict":""},{"id":"Natura:florasapling","Count":49,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":486,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTanned leather","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have found a way to make leather more durable and more resistant by further processing it. Make some bound leather from four pieces of leather, some strings and a woven cotton. Now you only have to hang it on a drying rack and wait about 10 minutes to get some tanned leather. Stockpile some for later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:Armor.DryingRack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Backpack:boundLeather","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":487,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNeed more space?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you might know: tanned leather is more resistant and good enough for a backpack. Let's get a digger's backpack and a miner's backpack. Each pack holds different items. So use both for your first true back-packed mining experience."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:minerBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:cooked_beef","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":488,"preRequisites":[487],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:foresterBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou need them all!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are many more backpacks: Hunter, builder, forester..."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:foresterBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:hunterBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:builderBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":1,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":489,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"SpiceOfLife:lunchbox","Count":1,"tag":{"UUID":"60ced69d-32df-413d-ac1d-28b72b4c8621","Inventory":{"Items":{}},"Open":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBetter lunch bag","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your lunch bag is now so abused and rather old so it's time to get something better. Let's craft a lunch box which can hold way more food."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"SpiceOfLife:lunchbox","Count":1,"tag":{"UUID":"60ced69d-32df-413d-ac1d-28b72b4c8621","Inventory":{"Items":{}},"Open":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:delightedmealItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:bltItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":490,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Horseback riding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you ready for a small trip? With your new lunch box, saddle, lead and of course a horse we can start a small journey. Be sure to make paths over water, horses don't like going over deep water."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:fence","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fence","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":491,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"sleepingbag:sleepingBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSleeping outside","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Carrying the bed with you all the time the looks very funny. Why don't you craft a sleeping bag to stay outside without placing a bed and changing your spawn point. This way if you die, you'll be right at home! Be warned: If you play on a server then you'd better sleep below Y level 128, as nights are very cold in the mountains..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wool","Count":3,"Damage":0,"OreDict":"blockWool"},{"id":"minecraft:carpet","Count":3,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"sleepingbag:sleepingBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:leather","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":492,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Sheep"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSheep hairdresser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Killing sheep to get the wool is so ineffective. Making some shears would make sense if you need more wool."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":"ringIron"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":"screwIron"},{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"stickWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":5,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":18,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":22,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":10,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":493,"preRequisites":[48],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":26,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWire Cutter v.0.2alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Small gears require a wire cutter to be made, so let's craft one."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":494,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:redstone_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRedstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you didnt't find any Redstone veins yet, it is quite important to look for one now. Try your luck at Y level 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":502,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":32221,"OreDict":""},{"id":"TConstruct:oreBerries","Count":5,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":495,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOh, shiny! (Not platinum!)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your first macerator you need two diamonds, and to enter the Twilight Forest you need one. Finding a diamond vein would help you a lot. Go and look for one at Y level 5-20."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":500,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":865,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":535,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32234,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32232,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"IC2:itemPlates","Count":5,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17032,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":496,"preRequisites":[51,479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemDust","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHow to make rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making rubber is now more complicated - you need raw rubber and sulfur. Finding a sulfur vein in the Nether seems like a good idea, doesn't it? Found on Y level 5-20. Later on you can get sulfur from chemicals like hydrogren sulfide or pyrite.\n\n§4Sphalerite will be important later for gallium and zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1022,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1834,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1839,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:peaandhamsoupItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"Natura:barleyFood","Count":8,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":497,"preRequisites":[478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1155,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lLit way to get charred","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have found an alternative way of making charcoal with a \"charcoal pile igniter\". \nGo and start getting massive amounts of charcoal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21305,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1155,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":498,"preRequisites":[36,74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:filledbucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lXP usage?!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Exploring some dungeons or fighting mobs probably gave you a lot of XP. Better use it to get iron, copper, tin or other useful dusts before you die during the next fight.\n\nPlace your tank on the ground and a drain on top. Now you can fill it with XP.\n\nBy the way, you discovered that while the seared tank doesn't hold much, it doesn't lose contents when broken, and full tanks can stack. I wonder if that information is useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:LavaTank","Count":1,"Damage":0,"OreDict":""},{"id":"OpenBlocks:xpdrain","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:experience_bottle","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":499,"preRequisites":[72],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diesel, creosote: Watch them BURN!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have almost made it. One last crafting step is required in order to advance to tier 2. Keep going!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1110,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberrybarItem","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":500,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialScoop","Count":1,"tag":{"charge":4990},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First things first","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As usual. In order to get started with bees, you need a few basic things. Most importantly... a scoop. For this quest you want to make a GregTech scoop. Later you can make scoops using magic or even rechargeable scoops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":501,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"NA":0,"Health":20,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Go find some bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next thing to do: Find a few bee hives around the world. There are 11 mundane bees that can be found, of which 8 are located in the Overworld. Any kind of bee will work for this quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":502,"preRequisites":[1112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A new home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've destroyed the poor bees homes, you should build them a new one. The humble Bee House will not let your bees mutate into new species. But you'll need the combs anyways for better housing. The production rate isn't too bad, but they cannot be automated.\n\nOne tip - Put some vanilla saplings near the Bee Houses. Bee Houses give a natural boost of 3x to pollination vs better housing. The bees will pollinate them and you might get lucky and start getting some Forestry tree crossbreeding. Stick with Oak and Birch trees, they'll give you a nice mix of starter Forestry trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":503,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BinnieCore:fieldKit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyze them all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every bee has multiple properties that define what the bee does, how it behaves in rain or at night, and a couple of other aspects. It is mandatory to keep track of those properties. This kit isn't very good since it doesn't give you information on their Inactive attributes, but waste not, want not.\n\nYou'll need to use paper to analyze each bee."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BinnieCore:fieldKit","Count":1,"Damage":63,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"minecraft:paper","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":504,"preRequisites":[503],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beealyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scan or not to scan","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get into bee breeding, you need a way to see all the traits, active and inactive. You only want to breed so called \"pure\" bees; For those, both \"Active\" and \"Inactive\" traits are identical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beealyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":505,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Top-Tier analyser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best you can get, for all your scanning and analysing needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":10,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":506,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:MutagenBucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"To play god","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to continue with bees, to mutate and breed them as you like, you need mutagen. This greenish, smelly liquid needs to be refined from bacterial sludge that seems to be available only on Mars. You will be able to continue, once you've arrived there.\n\nIn the meantime you can start working with the Genetics mod, since we all know Gendustry is too easy... Check out the recipes and you will understand why you should look into the Genetics mod."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Visit Mars","range":-1,"index":0,"dimension":29,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesOblivion","UID0":"magicbees.speciesOblivion","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesOblivion","UID0":"magicbees.speciesOblivion","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":507,"preRequisites":[578,1113,502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgraded home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Bee House can be used to stabilize mutations, for example if you have successfully bred two different bees, but the passive traits are different from the active ones. \n\nTo actually breed those together to get a new species, you'll need something different - the Apiary. Building them will require a Carpenter and Impregnated frames, along with Seedoil and Creosote - quite a bit of industrialization! Or, if you're lucky, you can find a beekeeper villager to trade with for useful items. Maybe you can help the villagers *get lucky* to make more beekeeper villagers? If only Cupid and his bow were around...\n\nProduction rates in an empty Apiary are low - lower than a Bee House by quite a bit, in fact. But the Apiary has two big advantages - Frames, and Automation. You can now use your Untreated or Impregnated frames in here to boost output - and the boost is multiplied. So 3 x2 frames gives you 2 * 2 * 2 = 8x extra output!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:frameUntreated","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":508,"preRequisites":[506],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Mutatron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutatron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mutations can be boring, they can be annoying, and most times, they are frustrating. With this machine, you will get a 100 percent pure bred mutation. If the combination of princess and drone can result in multiple mutations, the outcome is random. But who cares?\n\nYou can now upgrade your leftover Bees Advanced bags to Bees Expert in the last quest tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Mutatron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":509,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Sampler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic sampler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With this machine, you can extract a random trait from any bee, sapling, butterfly or flower. The bee/sapling/butterfly/flower will be destroyed in this process. Each process requires an empty gene sample and some labware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Sampler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":510,"preRequisites":[515],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Labware","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diamondware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Also known as labware. Be prepared. In order to do serious bee-work, you need stacks of diamonds. I'm not joking, stacks! Better start working on that diamond bee!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Labware","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":511,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Imprinter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic imprinter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With this powerful machine, you can inject gene samples, which allows you to alter any aspect of your bee/tree or butterfly. The gene sample (or pattern) will not be destroyed. The success rate is 100%, and one labware is consumed per injection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Imprinter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":512,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Transposer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic transposer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"DNA samples of species and/or traits are pretty valuable. You always should keep at least one of each effect/trait/species you get your hand on in a chest somewhere safe. By using this machine, you are able to copy any DNA sample, for the cost of an empty serum vial and some labware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Transposer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":513,"preRequisites":[508],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:MutatronAdv","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced mutatron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A more advanced version of the mutatron. It uses more energy to mutate a drone with a princess, but the mutation is a 100 percent success, and you can select which mutation you want to have. This machine is a must-have for high-tier bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:MutatronAdv","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":514,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSampleBlank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blank gene sample","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get the various traits from a bee, you need a lot of power, labware and an empty gene sample. You don't need a lot of those, as you can just throw them in a furnace to remove remaining DNA of traits you don't need or want. \n\nIn the meantime you can start working with the Genetics mod, since we all know Gendustry is too easy... Genetics is used for bees, trees, and Botany flowers so it gets its own quest tab. Gendustry is really good for bees, but will require top tier equipment."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSampleBlank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":515,"preRequisites":[514],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneTemplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic template","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Templates are used to combine multiple gene samples into one large batch. It can be used to apply multiple traits at once, but you can also replicate a bee from liquid DNA and protein, if you manage to fill all 13 traits in one template. These templates can also be copied, just like the small samples."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneTemplate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":516,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Extractor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A rather cruel disposal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably will end up with a lot of excess drones while doing bees. (Or saplings if you do trees). Instead of throwing them away, you could also turn them into... Something useful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Extractor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":517,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Liquifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arnie's blender","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They say, breakfast is the most important meal of the day. This machine turns raw meat into liquid protein, which is used to create bees from scratch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Liquifier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":518,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Replicator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"And there shall be light","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Out of princesses to inject traits to? Too lazy to find hives and get more bees? Not a problem. With this nifty little device, you can use a ton of power, liquid DNA and protein to create any bee you wish to have. The only drawback is: All bees will be ignoble, which means they will die after a random amount of cycles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Replicator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":519,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDoctoral","chromosome":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Temperature 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":520,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Humidity 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":7},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":521,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Fertility 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bees bees everywhere!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.fertilityMaximum","chromosome":3},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":522,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Draconic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDraconic","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":523,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Doctoral","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDoctoral","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":524,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Speed Fastest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Buzz buzz buzz, working hard and really buzzing!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.speedFastest","chromosome":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":525,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesSilicon","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":526,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Rain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Beekeeping in the rain! Make sure to keep your GT machines covered!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":527,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Day and Night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bee working day and night, all night and all day long!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":528,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Cave","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bees with Cave can work in housing that is covered - by more housing!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":529,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32680,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fifth item you'll need a lot of. For the microwave, the scanner, the precision laser engraver, etc."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32680,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":530,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32690,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sixth item you'll need a lot of. For the scanner and the seismic prospector."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32690,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":531,"preRequisites":[717,97,529,530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lScanning bees, crops and moooooore!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Automate your bee, sapling, or crop scanning. Later on, this machine gets very useful for scanning high tier machine parts for the assembly line research data or to fill data orbs with data for the UU matter production. Data sticks with raw prospecting data need a scanner too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":532,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiesel, oil or maybe creosote?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably collected a ton of creosote and maybe even have built your first ELECTRIC blast furnace. Creosote will be a good fuel for the moment. So try to build a few of the combustion generators and use them besides steam as a secondary power source. Small generators will only use fuel if there is EU demand.\n\nTo extract the creosote from your coke ovens, you can use buckets or cells to do it by hand, or the TiCon faucet into GT fluid pipes, or an electric pump cover from You're Going to Hate This #2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30709,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":533,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lHydrogen, methane or some farts... (Natural gas) ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some centrifugal processes leave gases behind like hydrogen or methane. Centrifuge some brown and yellow limonite to get hydrogen or dump your unused food in a centrifuge to get methane gas. Wood will even give 60 mb per log. Maybe it's time to build a forestry tree farm. Or you can start refining oil into refinery gas or naphtha to burn.\n\nGas turbines produce half the pollution of combusion generators, but their fuels are generally not as efficient. Choice is up to you which power source you use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1115,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30742,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":534,"preRequisites":[65,69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:dreamcraft_Pollution","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lPollution what....?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are running your bricked blast furnace for a long time you will sometimes get headaches, nausea and other weird effects. Yes this is pollution... from making so much steel. If you can collect some rubber sheets, I will trade you a complete hazmat suit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":535,"preRequisites":[494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":5810,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lRedstone, early game processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you wondering how to process redstone without a macerator? Well you can mine it with a gregtech hammer and get the crushed ore. Then use with the hammer in the crafting table to get some impure redstone dust. After this, fill a cauldron with water and drop the dust in it - CTRL-Q drops a whole stack but you will need a new iron bucket as the fired clay bucket just isnt fit for the task. You will get pure redstone dust for your red alloy ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":12,"OreDict":"craftingToolHardHammer"},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:water_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":5810,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":3810,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockores","Count":10,"Damage":810,"OreDict":""}]}]},{"questID":536,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLow tier wires","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Low tier wires like red alloy and tin can be made in a crafting table. Copper wire requires an alloy smelter. So let's make a mold for the rubber plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.MoldFormPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:creamedbroccolisoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":537,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Witch)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Witches bring stitches because they are always infernal and very dangerous. Be careful since they throw potions at you."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":26,"id":"Witch","Anger":0,"ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":6323763076874975000,"Health":26,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":50486316337289,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Witch","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":538,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":391,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic ore washer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Macerating ores usually doubles the output. If you want MOOOOOOORE, craft an ore washer and wash out some rare materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":391,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":539,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":361,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lRound and round and round...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After purification of your ore dust, you can centrifuge it to get even more byproducts out of the dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":361,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":540,"preRequisites":[541],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32721,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA truly sharp saw blade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining cobalt brass and diamond dust makes a really sharp saw blade for your cutting machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31343,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":1500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32721,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chocolatemilkshakeItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":541,"preRequisites":[91],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11343,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA new alloy - Cobalt Brass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to cut diamond blocks into plates, it's time to get a new alloy 'cobalt brass'.\nFirst you need to make brass out of zinc (only found in small ores in the Overworld, in Nether Sphalerite, or as a centrifuge byproduct from tin or tetrahedrite) and copper. Mix it with aluminium and cobalt dust (can be centrifuged from various materials) to get the cobalt brass dust.\n\nNow that you have come this far, we think that you are able to look up the ores that you need by yourself with the help of NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2036,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":2301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2033,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":2343,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32222,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":542,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lWater and electricity, sounds fun and safe right?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using the power of water and electricity you can get even more out of your dusts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":543,"preRequisites":[550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lC9H8O4...NaCl...H2O...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some cetane-boosted diesel, plastic or some chemical dyes? Then it's time to craft a chemical reactor.\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":544,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":241,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCompact? Or is it?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is a compressor but that doesn't mean it is compact... \n\n§4Hint:\nIt is highly recommended to get one of these electric compressors, as the efficiency in terms of coal/steam used to compress something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":241,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":545,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":271,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§5§lSuction device... nice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I hope you are not thinking about what I am thinking you are thinking about... \n\nHint:\nIt is highly recommended to get one of these, as the efficiency in terms of coal/steam used to extracting something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":271,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":546,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:blockOil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHello Baron, how is your black gold today?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"During your travels you may have seen some of these huge oil spouts. Now it's time to go make a pump and put this black gold into tanks. Oil can be burned directly in a combustion generator or be refined for better fuels and crafting materials. \nMining pipes are needed for pumping the oil.\n\nBring a combustion generator with you to power the pump. Thanks to the advancement of technology the pumping machine can auto output on top.\n\nStacking multiple pumps makes them work faster. In that case, oil has to be removed from the bottom of the stack using a pump cover.\n\nTaller spouts have more oil! But for the LV pump, it is better to use the short spouts since it doesn't have much range. Save the taller spouts for MV pumps. \n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BuildCraft|Factory:tankBlock","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":547,"preRequisites":[546,102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lYour oil is too Crude? Refine it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Burning oil in the combustion generator is a very inefficient way of producing power. Every bucket/cell of oil only gives you 20,000 EU. Time to try and refine it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":548,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30737,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLight Sulfuric Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step is to distill your oil into light sulfuric fuel, that has a burn value of 40,000 EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30737,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":549,"preRequisites":[543,548,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLight fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By adding hydrogen to sulfuric light fuel in a chemical reactor you can produce some light fuel with the very high burn value of 320,000 EU.\n\nThe remaining hydrogen sulfide cells can be used later to produce some sulfuric acid for your TNT/iTNT or acid batteries.\n\nIn MV age you can make diesel out of light and heavy fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30740,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"irontank:obsidianTank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":550,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lH like Hydrogen... rest of the alphabet is too complicated...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuge some brown or yellow limonite dust to get some hydrogen, or use an Electrolyser with some water to produce it in a fluid form."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:mushroom_stew","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":551,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_sulfuricheavy_fuel","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHeavy Sulfuric fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second step is to distill your oil into heavy sulfuric fuel, that has a burn value of 40,000 EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30738,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":552,"preRequisites":[551,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_heavy_fuel","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHeavy fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By adding hydrogen to sulfuric heavy fuel in a chemical reactor you can produce some heavy fuel with the burn value of 200,000 EU.\n\nThe remaining hydrogen sulfide cells can be used later to produce some sulfuric acid for your TNT/iTNT or acid batteries.\n\nIn MV age you can make diesel out of heavy and light fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30741,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":553,"preRequisites":[751,549,552],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:blockFuel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiesel fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing your light and heavy fuel together gives you some diesel. You need the MV mixer for it. It burns very well in the combustion generator with a burn value of 480,000 EU per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30708,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":554,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":581,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHey DJ, Mix it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The mixer is a very useful device. You can mix all kinds of fluids and items. Useful to prevent dust from falling to the ground when crafting - most mixer recipes give a slight boost over hand crafting!\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":581,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":555,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"hydrogen","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lN like nitrogen... Hide, alphabet strikes again!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can get some nitrogen by centrifuging... air. This process takes a long time, especially at the LV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30012,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":556,"preRequisites":[555,543,80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30714,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGlyceryl trini...... what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Kids, today we will make some glyceryl trinitrate (aka Nitroglycerin) with some glycerol.\n - Chemistry 101"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30629,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30714,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":557,"preRequisites":[549,841],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:pattern.fluid","Count":1,"tag":{"fluidID":"nitrofuel"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNITRO! (Cetane-boosted diesel)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"720,000 EU per cell. Yes, yes, this is very good! Make some cetane-boosted diesel fuel and power your Combustion Engine with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30709,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":558,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Backpack:backpack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWhat can I put all these items in?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make your first steel you're able to craft the small backpack. In this bag you can put a lot of the stuff you want to carry around. With 36 slots it's a bit bigger than a small chest. Later you can make it even larger. You can put one on your back and set it to automatically pick up stuff. \n\n§4Check out the \"Backpacks\" control configuration \"Open Backpacks\" and remap it to a new key. \n\n§4The maximum you can have in your inventory at once is 4."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28305,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":3,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Backpack:backpack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:paintbrush","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32414,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32415,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32416,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32417,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32419,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32418,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32420,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32421,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32422,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32423,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32424,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32425,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32426,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32427,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32428,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32429,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":559,"preRequisites":[560],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLow pressure boiler tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The low pressure boiler tank is the easiest way to store steam. The firebox needs this tank on top to produce steam. The bigger the boiler the slower it heats up, but it will produce more steam when heated up.\n\nExtract steam by attaching a pipe to the boiler tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":18032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.SteelBars","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"Railcraft:fuel.coke","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":560,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lRailcraft steam power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As an alternative way to make steam you can use the railcraft boilers. They require at least one firebox.\nMore than one size is possible: (1x1 mentioned above) 2x2 and 3x3. \n\nProvide water and coal to the firebox. Make sure you don't run out of water or...BOOM.\n\nEach boiler needs 1, 2 or 3 layers of tanks on top, equal to the size (1x1x1, 2x2x2, or 3x3x3)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":1,"Damage":13,"OreDict":""},{"id":"minecraft:brick_block","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"harvestcraft:figjellysandwichItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":561,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLiquid fuelled firebox","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cresosote oil into steam! After you make your first steel you are able to craft a liquid fueled firebox.\nDiesel, ethanol, creosote and biodiesel all work well here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SteelBars","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":1,"Damage":13,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30712,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":562,"preRequisites":[561],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHigh pressure boiler tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make steel you are able to craft a high pressure boiler tank. The upgraded version increases the temperature and produces more steam than the low pressure version. It will take longer to warm up, so make sure to keep it well fed!\n\nExtract steam by attaching a pipe to the boiler tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":18305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:meatfeastpizzaItem","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32240,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":563,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§3§lBookshelves...? Ah forestry... Multiblock farms!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The bookshelf can only be made with wood planks, which are made in a compressor. Perhaps someone thinks this is a bit crazy...\n\n§4This will unlock the Forestry Worktable, a great tool for keeping your crafting from driving you insane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":564,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Forestry Basic > Advanced","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic foresters lootbags give a better one = Advanced Foresters Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":20,"OreDict":""}]}]},{"questID":565,"preRequisites":[595,594,593],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Forestry Advanced > Expert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three advanced foresters lootbags give a better one = Expert Foresters Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":21,"OreDict":""}]}]},{"questID":566,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Space Invaders Moon > Space Invaders Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three space invaders Moon lootbags give a better one = Space Invaders Mars Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""}]}]},{"questID":567,"preRequisites":[566],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Space Invaders Mars > Space Invaders Asteroids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three space invaders Mars lootbags give a better one = Space Invaders Asteroids Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""}]}]},{"questID":568,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Novice > Adept","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three novice lootbags give a better one = Adept Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":569,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Adept > Master","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three adept lootbags give a better one = Master Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":570,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Master > Grandmaster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three master lootbags give a better one = Grandmaster Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]}]},{"questID":571,"preRequisites":[307],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Grandmaster > Grandmaster Unique","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sixteen grandmaster lootbags give a better one = Grandmaster Unique Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":16,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]}]},{"questID":572,"preRequisites":[161],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"BM Novice > BM Adept","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three BM novice lootbags give a better one = BM Adept Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]}]},{"questID":573,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"BM Adept > BM Master","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three BM adept lootbags give a better one = BM Master Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]}]},{"questID":574,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Bee Basic > Advanced","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic bee lootbags give a better one = Advanced Bee Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":25,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":575,"preRequisites":[509,508,2089],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"OR","name":"Bee Advanced > Expert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three advanced bee lootbags give a better one = Expert Bee Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":576,"preRequisites":[586,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Working table 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A manual crafting table which remembers the last nine used recipes. Left click one of the recipes shown in the right-hand side to automatically fill in the crafting grid. Right-click to lock a memorized recipe and prevent a newer recipe from bumping it off.\n\nResources need to go into the internal inventory. The crafting matrix is only a visual representation.\n\nThe Forestry worktable is super-useful, and can reduce the tedium of many common jobs because you can click-drag across a row of items, and it will use tools in its own inventory to continue crafting. Specifically:\nMaking torches with creosote - just drag-click all your buckets into the worktable\nMaking fresh water for Pam's - Same as above\nMaking fresh milk for Pam's - Same as above\nMaking clay bricks - a wooden form is automatically reused\nMaking concrete - not tested, but would probably make this easier too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11304,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"forestry.fruitApple","UID0":"forestry.fruitApple","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":577,"preRequisites":[576,73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sturdyMachine","Count":2,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forestry core block","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This sturdy casing is the basis for almost all machines in Forestry, essentially being the forestry equivalent of a machine casing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":18300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:sturdyMachine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"minecraft:bookshelf","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":578,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The carpenter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The carpenter is similar to an automatic crafting table. It has an item input slot and a storage slot for the recipes. Some recipes need an additional fluid like water, creosote, honey or molten redstone. With the carpenter you can make farmblocks, woven backpacks, bee and tree analysers and many more.\n\nThe carpenter needs power to work. You can use a GT cable or a battery box to connect to the machine or make some forestry, railcraft or buildcraft RF engines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17310,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32650,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20305,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":10,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30712,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":579,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":511,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMolten redstone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You heard that the carpenter needs some molten redstone for a few recipes. \nConverting redstone dust into a fluid requires a fluid extractor. Let's build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":511,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:appleciderItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:frenchtoastItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":580,"preRequisites":[577,585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thermionic fabricator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The thermionic fabricator is used to craft electron tubes and stained glass. It requires redstone flux (RF) energy to run. It is your first machine made in the carpenter. Once warmed up, it needs to maintain a certain heat level to operate. The amount of power supplied will determine how much heat will be generated. If you do not supply enough power to maintain the current temperature it will slowly drop. It will continuously draw power, so disconnect it if you don't need it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:factory2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":8530,"OreDict":""},{"id":"minecraft:dye","Count":16,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":581,"preRequisites":[580,588],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Series of Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you can craft your first farm block you need apatite tubes. Make some apatite rods first with a lathe, then use a forge hammer to join them into long apatite rods. You need golden bolts and a red alloy plate.\nPut some glass or sand into your thermionic fabricator and make your first tubes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22530,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":582,"preRequisites":[578,581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first multiblock farm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The smallest farm you can build requires 36 farm blocks (3x4x3 - the largest is 5x4x5 or 100 farm blocks). For water input you need a valve, items go through the hatches, and to supply the farm with energy you need a gearbox. With the farm control block you can control which fields of your farm work by applying a redstone signal. Remember to put creosote in the carpenter when crafting the different farm blocks. If you need the farm to work faster, just add more gearboxes.\nYou can use Orchard mode to collect Pam foods and Natura products. You can even mix and match modes on the same farm - logging and collecting fruit from trees, for example."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stonebrick","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":36,"Damage":18035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":27305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":9,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":36,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11035,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":583,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced. Farms can work without it. But if you want to configure your farm you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32700,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":584,"preRequisites":[583],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:solderingIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Change your farm circuit configuration","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The (forestry) soldering iron is a tool used for attaching electron tubes to circuit boards in order to manipulate how an electrical engine works or to program multiblock farms. As well as upgrading the squeezer or centrifuge.\nOnce electron tubes have been attached to a circuit board they cannot be removed, only replaced. The circuit board is automatically crafted as soon as the basic recipe requirements are met, so it's best practice to first place your electron tubes and then add the circuit board.\n\nThe soldering iron can also be used to remove the circuit board from electrical engines, multiblock farms, squeezers and centrifuges by opening the machine's GUI and left clicking with the soldering iron on the circuit board slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":26305,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:solderingIron","Count":1,"tag":{"Slots":{"1":""},"UID":109547956},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":585,"preRequisites":[578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemRecipePart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heating coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your thermionic fabricator needs heating coils to function. So combine some magnetized (requires polariser) steel rods with some copper wire and make some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23355,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5112,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":586,"preRequisites":[472],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Welcome to forestry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some automated farms or work with bee and tree breeding? Want the Forestry Worktable for easy recipe access? Then this is the right chapter for you.\n\nForestry farms in Orchard mode will even fertilize, water and harvest IC2 crops on cropsticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:honeyedSlice","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":587,"preRequisites":[96],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23355,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnetize your rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnetic steel rods need a polariser to craft. Make a few for your coils.\nMv Motors need the Polariser so better build them soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23355,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:lever","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":588,"preRequisites":[580],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8530,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finding Apatite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's now time to search for some ores. Apatite is the most important material in Forestry. You can make fertilizer, farm blocks and many other things. The vein is found between Y level 40-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":530,"OreDict":"oreApatite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":534,"OreDict":"orePhosphorite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":607,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"harvestcraft:frenchtoastItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32224,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":589,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm hatch (Item pipe connectivity)\n\nYou can supply and extract items from the farm by using farm hatches that are connected to pipe systems. \n\nSupplying items\nThe farm hatch is clever enough to know which item goes where. If an item isn't appropriate for the farm's configuration, the hatch will simply reject it.\n\nExtracting items\nAny item that is harvested by the Multifarm is automatically ejected by the farm hatches into inventories or pipes. Pipes can be used to extract from other sides."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32630,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":590,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm valve (Hydration)\n\nSome farms require water for hydration purposes. Although you can do it manually by supplying it through liquid containers (such as cans), you can also automate the process by using farm valves.\n\nBy connecting fluid pipes into the farm valve and supplying water, you can automatically fill the farm's water tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28880,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":591,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Control block","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm control\n\nYou can control which fields of your farm work by applying a redstone signal to the control block. You can either shut down the whole farm by applying a redstone signal from top or below or you can disable a specific side by applying a redstone signal on the matching side of the control block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":592,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Gearbox","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm gearbox (Power)\nTo power your farm and have it automatically harvest crops, you will need at least one farm gearbox.\n\nFarm operations can be hastened with additional gearboxes.\n\nEach farm gearbox requires power. You can use either RF or EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":593,"preRequisites":[583,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":1},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enhanced farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the basic one. The farms can work without them. However, if you want to configure your farm you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29300,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":1},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":594,"preRequisites":[593,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":2},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refined farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the enhanced one. The farms can work without them. If you want to configure your farm even more you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":2},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":595,"preRequisites":[594,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":3},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Intricate farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the refined one. The farms will work without them, but if you want to configure your farm even more you will need one of them.\n\nHint: The circuit assembler recipe is cheaper than the carpenter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":3},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32079,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":35,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":35,"Damage":0,"OreDict":""}]}]},{"questID":596,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:pickaxeHead","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§k§l§1§2§3§lUpgrade of the upgrade of the...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's upgrade time. Unlock redstone and obsidian level for your different tools.\n\nRemember, a fresh tool head starts at one level below. So you'll need to use it enough to level it up before you can mine at the proper level. Go strip-mine a mountain or something."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:shovelHead","Count":2,"Damage":16,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":2,"Damage":16,"OreDict":""},{"id":"TConstruct:swordBlade","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:toolRod","Count":1,"Damage":31,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":31,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":8,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":597,"preRequisites":[496,105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":1840,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lTetrahedrite, stibnite and copper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why you need tetrahedrite or stibnite. Well, antimony can be centrifuged out of it which is very useful for batteries in the LV Age.\nThe veins can be found between Y level 80-120."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1840,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1945,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1035,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:carrotsoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2089,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":598,"preRequisites":[597],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2058,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAntimony","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The most efficient way to get antimony for batteries is to centrifuge stibnite dust, the second most efficient way is to use tetrahedrite dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2058,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:food","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":599,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":381,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThermal centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A machine to get different byproducts out of your crushed and purified ore dust. This machine becomes very useful when you have reactors and want to recycle your depleted fuel rods. It's usefull for tiny piles of Gallium out of Zinc or Sphalerite Ore for your Diodes needed in good circuits.\nIf you can't produce the 2A of LV power for this machine right now, wait until you get to MV and use transformers to power an LV version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":381,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":600,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hunger, no more","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The hunger is constantly following you, consuming you, never letting you rest. The world around you is full of nourishing fruits, vegetables and crafted meals. Use them to curb your insatiable hunger."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:leafygarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:mushroomgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:stalkgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:textilegarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:tropicalgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestthenether:netherGarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:groundgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:berrygarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:desertgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:grassgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:gourdgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:herbgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:watergarden","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"harvestcraft:firmtofuItem","Count":128,"Damage":0,"OreDict":""},{"id":"harvestcraft:silkentofuItem","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"harvestcraft:delightedmealItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:rainbowcurryItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":601,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:builderswand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Building made easy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing blocks by hand can be tedious. Wouldn't it be nice to be able to place blocks like \"Another 9 here\"? Well, good news. Get yourself some of the various building blocks, and I shall reward you with something nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"chisel:rebel","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:laboratoryblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:holystone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:grimstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:hexPlating","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:fantasyblock2","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:fantasyblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:factoryblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:concrete","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:technical","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:tyrian","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:waterstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:voidstone2","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:templeblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:valentines","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:voidstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:warningSign","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"chisel:diamond_block","Count":1,"Damage":12,"OreDict":""},{"id":"chisel:emerald_block","Count":1,"Damage":5,"OreDict":""},{"id":"chisel:lapis_block","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:redstone_block","Count":1,"Damage":9,"OreDict":""},{"id":"chisel:gold_block","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:builderswand","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":602,"preRequisites":[915],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spatial distortions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You detected a weird disturbance in the air around an enderman, I suggest you try to steal some of their pearls and research them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_pearl","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":603,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_chest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dimensional chest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've heard rumors, that the endermen had built laboratories in the End. To invent new machines and weapons in order to attack the Overworld. One of their inventions is a chest, which is somehow linked to all instances of itself. Go and try to find one of those."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":604,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"SIMPLE","storedEnergyRF":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lRF Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Basic Capacitors are RF batteries which can store the RF power you generate. You can put many blocks together to enlarge your total battery capacity - they will merge into one battery.\n\nYou can also change the mode of each face using your wire cutters instead of the GUI. One option is a nice display of input and output RF, but it has to be taller than it is wide.\n\nThese are great for interfacing with RF machines. GT wires will convert to RF, but they send a full amp packet no matter what. Enderio machines properly accept it, but others like Genetics do not and waste most of the packet.\n "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":4,"tag":{"type":"SIMPLE","storedEnergyRF":0},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":605,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slay the Eyes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find and kill Ender-Eyes, guarding the Defence Towers"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.EnderEye","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":606,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:enderman_head","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Ender Guardians","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well if you decided to grind then do it... Kill some of the guardians."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.EnderGuardian","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.Endermage","subtypes":1},{"ignoreNBT":1,"index":2,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.AngryEnderman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":607,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slay the Dragon. (Again)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're bored, you can resurrect the dragon. Or, you could find a chaos dragon, if you dare. Anyway, kill one of those, and you'll be well rewarded."}},"tasks":[{"ignoreNBT":0,"index":0,"targetNBT":{"ForgeData":{},"Initialized":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":200,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":200,"id":"DraconicEvolution.EnderDragon","Motion":[0,0,0],"Leashed":0,"AttackDamage":0,"UUIDLeast":-3850102294886759000,"Health":200,"IsUber":0,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":131653853705906,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"DraconicEvolution.EnderDragon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":608,"preRequisites":[598,105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2089,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§3§5§lA lead about lead that leads to lead dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next step of making batteries is to collect some lead. Lead and galena veins can be found in the Twilight Forest at y levels 5 - 45."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2089,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:mixedsaladItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":609,"preRequisites":[608,598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBattery alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing antimony and lead in the alloy smelter will give you some battery alloy.\nCombine it with some tin cable and voila there is your small battery hull."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":5,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32500,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":933,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":907,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":839,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":610,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":830,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lead, galena and silver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can't find lead, galena or silver in the Overworld or the Nether. So it's time to explore the mysterious Twilight Forest a bit and find this vein at Y level 5 - 40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":830,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":89,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":54,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":611,"preRequisites":[616,617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":32000},"Damage":32511,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSingle use battery: Mercury","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury and acid batteries are single-use batteries. They are crafted fully charged but cannot be re-charged. Once their stored energy is depleted, they can be placed in an extractor to be converted back into small battery hulls.\n\nThey can be placed in the battery slot of any standard LV gregtech machine, in that case they will be depleted before the machine's internal EU storage. They can also be used in LV battery buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":32000},"Damage":32511,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30087,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":612,"preRequisites":[618,617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":18000},"Damage":32510,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSingle use battery: Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury and acid Batteries are single-use batteries. They are crafted fully charged but cannot be re-charged. Once their stored energy is depleted, they can be placed in an extractor to be converted back into small battery hulls.\n\nThey can be placed in the battery slot in any standard LV gregtech machine, in that case they will be depleted before the machine's internal EU storage. They can also be used in LV battery buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":18000},"Damage":32510,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":613,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":50000},"Damage":32519,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Sodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32519,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2017,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":614,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":75000},"Damage":32517,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Cadmium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32517,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2055,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":615,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":100000},"Damage":32518,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Lithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32518,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":616,"preRequisites":[609,494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"mercury","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMercury","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury can be centrifuged out of redstone. If you find some cinnabar ore in the redstone vein you can use that too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30087,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":8,"Damage":826,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":617,"preRequisites":[616,618],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":431,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lFluid canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fluid canner is a fundamental machine, since it is necessary to move fluids around, as well as for filling tin cells, glass bottles, buckets, and even batteries. Most cases you can use the small GT++ tanks instead.\n\nAnother interesting thing about the fluid canner is that it can be transformed into a raintank, by attaching a drain cover on its top (Any machine with a tank actually can be...)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":431,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":618,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining sulfur trioxide and water in the chemical reactor will give you sulfuric acid for your single use acid batteries. If you have made some light or heavy fuel already maybe you have some spare hydrogen sulfide. If not, you can always make sulfuric acid with some sulfur and water in the chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2022,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":619,"preRequisites":[611,612,613,614,615],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":161,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBattery buffer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Batteries can be placed directly in machines. To recharge a battery you need a battery buffer. Buffers can also power an energy network. They come in different sizes: 1, 4, 9 and 16 slots. They can draw 2A and output 1A per battery inserted - watch your wire amperage!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":171,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":620,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatRE","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lIC2 Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some recipes require IC2 batteries. Fill your small battery hull with some molten redstone and you will get your RE-Battery. Molten cells will hurt you, so be careful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:bread","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":621,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":933,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§5§lHow to get sodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A second source for sodium is glauconite ore or glauconite sand. This type of ore vein can be found at Y level 20-50."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":933,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":909,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":877,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":902,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:coleslawburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:sesameseedsItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":622,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHow to get sodium/lithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Salt ore mixes can be found in the Overworld between Y level 50-70. Salt isn't only used to get sodium, it's an important ingredient in many pam's harvestcraft food recipes.\n\n§4Hint: Lepidolite and spodumene are good sources of lithium for your batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":817,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":944,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":920,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":907,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:baconmushroomburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:saltedsunflowerseedsItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":623,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA big meteorite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best way to get rare earth is to find an applied energistics 2 meteorite and grind the blocks into dust. Maybe you completed the quest in the steam age and stored your crushed skystone somewhere? That dust can now be centrifuged into various byproducts like cadmium, neodymium, caesium, lanthanum, and yttrium.\n\n§4Hint: Redstone has rare earth as byproduct. Chalcopyrite (at HV level) and sphalherite (at LV level) have cadmium as byproduct."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyStone","Count":1024,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1024,"Damage":45,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":2891,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2055,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:beetburgerItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:calamaricookedItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":624,"preRequisites":[623,1167,1168],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":231,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBasic canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The canning machine is mainly used to fill tin cans with any kind of food (HV Tier), but it is useful for filling and emptying tin cells with other solid items than food, usually in the form of dust. It can also fill batteries with sulfur, mercury, cadmium, lithium or sodium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":231,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":625,"preRequisites":[84],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lPacking your tanks chests and barrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Packing your chests and barrels without spilling all the things (buildcraft(tm))? \nNo problem! Make a dolly and you can carry your full chests, barrels or storage drawers anywhere you want. But be warned, you will get a slowness debuff so hopefully you don't have to travel very far. Not portable buildcraft and iron tanks can moved so too without loosing fluids.\n\n§4PS Later on you can fly or make a traveller's belt to get around the debuff."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"JABBA:upgradeStructural","Count":3,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""},{"id":"StorageDrawersBop:fullDrawers1","Count":5,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":626,"preRequisites":[98,916,102,495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:moverDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPortable mob spawners..? Cool!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to move the spawners around and build some cool mob farms? That will be no problem if you get the diamond dolly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17506,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"JABBA:moverDiamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":627,"preRequisites":[631,634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:grainbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Grain bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some nice grain bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:grainbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":628,"preRequisites":[440,631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fruitbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fruit bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some tasty fruit bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fruitbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:veggiebaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":629,"preRequisites":[631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:veggiebaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Veggie bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some veggie bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:veggiebaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":630,"preRequisites":[633],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fishtrapbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some fish bait for your fish trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fishtrapbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:veggiebaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":631,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:animaltrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Animal trapping","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of hunting for cows, zombies or sheep? You can build a trap and hope some animal or monster drops will be caught by the netting inside."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:animaltrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:trapdoor","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:hamburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":632,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A fisherman's friend","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Have you ever tried to catch a fish with your bare hands? It's time to craft a fishing rod and get some fish the easy way. Cast your fishing rod in some water and wait until the bobber dips below the surface. Then reel back in your line and hopefully you caught yourself something nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":22809,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":""},{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fish","Count":5,"Damage":3,"OreDict":""},{"id":"harvestcraft:jellyfishrawItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:catfishrawItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":633,"preRequisites":[36,632],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish trapping","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fishing can be very boring. Why not to automate it with a fish trap?"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":634,"preRequisites":[7],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wheat time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to plant some wheat to make some bread or to prepare grain bait for your animal traps."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wheat","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:wheat_seeds","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":635,"preRequisites":[7,634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2881,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Floury flurry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step in making bread is to macerate your wheat into flour with a mortar or a macerator.\n\nFlour can be used in many food recipes for different pam's harvestcraft foods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2881,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Stone"}},"Damage":24,"OreDict":""},{"id":"minecraft:potato","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":636,"preRequisites":[7,637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bread","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First handmade bread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Baking your dough in a Furnace makes some tasty bread.\nYour first bread!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bread","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Steel"}},"Damage":34,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Stone"}},"Damage":24,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Aluminium","MaxDamage":12800,"SecondaryMaterial":"Aluminium"}},"Damage":46,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":637,"preRequisites":[7,635],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32559,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Do'h!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Water and flour makes a dough or two...\nDough can be used in many different food recipes from pam's harvestcraft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32559,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":8,"Damage":0,"OreDict":""},{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":638,"preRequisites":[7,636],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tasty toast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smelt your bread again and you get some toast! Give's you more nutrition points, and unlocks more culinary potential!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":639,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_sulfuricnaphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric naphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another distillate you can make out of oil is sulfuric naphtha with a burn value of 40,000 EU per cell in the gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":30736,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30001,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":640,"preRequisites":[840],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_lpg","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLPG","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuging some Butane or Propane gives you LPG with a burn value of 320,000 EU, the same as naphtha. Also it is a way to get methane and eventually epichlorohydrin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":66,"Damage":30742,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":641,"preRequisites":[639],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_naphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNaphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can process sulfuric naphtha to fluid naphtha which has a burn value of 320,000 EU in the gas turbine.\nNaphtha is also a base product for polyethylene and polycaprolactam - a great substitute for string."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":30739,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":642,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"gas_sulfuricgas","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another distillate for your gas turbine you can make out of oil is sulfuric gas with a burn value of 25,000 EU per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30734,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30012,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":643,"preRequisites":[642,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"gas_gas","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lRefinery gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Refine your gas in a chemical reactor with hydrogen gas to give it a better burn value of 160,000 EU, and maybe use it to make methane gas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30735,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30715,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":644,"preRequisites":[643],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30673,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMethane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Distilling some \"refinery gases\" gives you some methane gas. There are many more ways to get methane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":645,"preRequisites":[65,486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:hangglider","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glider wings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If for some reason you want to be able to jump down a cliff without getting the message \"Player X fell from a high place\". A great idea would be to find a way to soften your landing first. The hang glider should do that just fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":10,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenBlocks:generic","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"OpenBlocks:generic","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"OpenBlocks:hangglider","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":646,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectrotine battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The electrotine battery is exclusively used in project red machines and the jetpack.\nElectrotine is a mixture of redstone and electrum dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":6,"Damage":56,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.emptybattery","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":24,"Damage":56,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":647,"preRequisites":[645,646],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Expansion:projectred.expansion.electric_screwdriver","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Electrotine jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your glider gets you to the ground safely but it does not have any method to get up. After you researched electrotine you discovered that it is powerful enough for your first jetpack.\nA diamond chestplate surrounded with 4 electrotine batteries is powerful enough to bring you up in the air.\n\nIt does not have a hover mode so you better take your glider with you. \n\nHint: This jetpack can't fly higher than Y level 128."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.emptybattery","Count":4,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1422,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17811,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":6400,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":32,"Damage":56,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":648,"preRequisites":[647],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.drawplate","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refill your jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GREAT.... you now have an empty jetpack.\nYou need 25 electrotine dust to completely fill it.\nLet's craft an electrotine generator and a charging bench to use the power of electrotine. \nYou will very quickly discover that, while it is fast and cheap, it's empty in the blink of an eye. Despite this, it is useful in combination with the hang glider to get into the air and to get away from hairy situations."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.machine1","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.machine2","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":25,"Damage":56,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":56,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.solar_panel","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":649,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:coalJetpack","Count":1,"tag":{"jetpackData":{}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Coal steam jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your coal jetpack needs coal and water to produce steam. After a short warm-up period you can go and take it for a ride. Keep in mind you will need your glider to make a soft landing.\n\nPut your jetpack on your back and hit Shift and the adventure backpacks action-key to start it.\n\nMax flying height for these jetpacks is the Y level of 185.\n\nVertical velocity decreases linearly with height after overcoming optimal height - 135 for jetpack and 100 for copter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":2,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5130,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:coalJetpack","Count":1,"tag":{"wearableData":{},"jetpackData":{}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:fuel.coke","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5130,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":650,"preRequisites":[532],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:copterPack","Count":1,"tag":{"fuelTank":{"Empty":""},"tickCounter":3,"status":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Copter jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The copter jetpack is the first jetpack with a hover mode. It is using all kind of different fuel types in buckets. \nBuckets of creosote, lava, oil, cetane, diesel,ethanol, and fuel will work.\nEquip your jetpack and hit Shift and the adventure backpacks action-key. You can also switch between hover and normal mode.\n\nMax flying height is limited to Y level 200. \n\nVertical velocity decreases linearly with height after overcoming optimal height - 135 for jetpack and 100 for copter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5133,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32641,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":6,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5130,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:copterPack","Count":1,"tag":{"fuelTank":{"Empty":""},"tickCounter":3,"status":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BuildCraft|Energy:bucketFuel","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":3,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":651,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{"charge":30000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first electrical jetpack. You need to hit the IC2 mode-switch key to toggle between normal mode and hover mode while holding down the jump key. When descending, remember to shut off hover mode or else you'll drain your jetpack.\n\nThe only limitation is that you can't fly higher than Y level 185.\n\nFor charging on the go, you can craft a charging crystal from ic2 charging components. You have to take the backpack out of the armor slot and put it in your hotbar and activate the charger by sneak-clicking. There are better models than this one old one I don't need any more. Look in NEI.\n\nLater on GT++ Charging Packs are belts that can charge everything in your inventory including armor. Check NEI for latest recipes.\n\nFinally, the GT++ wireless charger will charge everything in your inventory, including the jetpack, from your base at long ranges. A quest is unlocked once you finish your nanosuit. Just remember when you are off world or in the Nether that your jetpack isn't charging!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorBatpack","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":6,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemBatChargeRE","Count":1,"tag":{"charge":40000},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":652,"preRequisites":[651],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorJetpack","Count":1,"tag":{"Fluid":{"FluidName":"ic2biogas","Amount":30000}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fueled jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This jetpack uses IC2 biogas and can fly up to Y level 245.\nYou can switch between hover and normal mode using the IC2 mode-switch key.\n\nYour jetpack can be (re-)fueled in the IC2 fluid canner with 30 buckets/cells worth of biogas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18306,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:reactorCoolantSix","Count":1,"Damage":1,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":6,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorJetpack","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":30,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":653,"preRequisites":[176,692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:advJetpack","Count":1,"tag":{"charge":3000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced electric jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced electric jetpack is an upgraded version of the electric jetpack.\nWhile worn in the chest armor slot and charged with EU, it allows the player to fly. It provides no armor protection, but will charge tools being used in the same manner as the advanced lappack from its 3.000.000 EU internal storage.\n\nThe advanced electric jetpack is limited to a maximum flying height of Y level 256."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17028,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1641,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GraviSuite:advJetpack","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32603,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":654,"preRequisites":[653,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:advNanoChestPlate","Count":1,"tag":{"charge":3000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced nano chestplate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining the advanced electric jetpack and nanosuit yields you the advanced nano chestplate. Now you have the protection of the chestplate combined with the freedom of movement of the jetpack."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GraviSuite:advJetpack","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoChestplate","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17316,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1644,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GraviSuite:advNanoChestPlate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32604,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":655,"preRequisites":[653,213,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:graviChestPlate","Count":1,"tag":{"charge":30000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gravi suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gravi chestplate is the ultimate quantum armor combined with a high powered jetpack. It also has hidden features that you need to discover while wearing the whole quantum armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"GraviSuite:ultimateLappack","Count":1,"Damage":27,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":26,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":3,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":2,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":6,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32088,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":22328,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32674,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32607,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27328,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"GraviSuite:graviChestPlate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32088,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32607,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":656,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.iron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lIron shields","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have been using your hide shield long enough. After you make your first tools, grab a bit of iron ore and make a nice iron shield."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":2,"Damage":2,"OreDict":""},{"id":"TConstruct:toughBinding","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:toughRod","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.iron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":52,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":657,"preRequisites":[36,450],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.stone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lStone spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your wooden spear with a stone arrowhead and iron screws to a stone spear.\nThis spear has better durability than the wooden one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27032,"OreDict":"screwIron"},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.stone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":658,"preRequisites":[657,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.iron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lIron spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your wooden spear with an iron arrowhead and two steel screws to an iron spear. \nThe iron spear has better durability than the stone variant."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27305,"OreDict":""},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.iron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":59,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":659,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiamond spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At MV Tier you can upgrade your iron spear to a diamond one. Get a diamond arrowhead, two stainless steel screws and a wooden spear.\nThis spear has superior durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartArrowHead","Count":1,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":660,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiamond shield","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your iron shield got very old. With a shield made from diamond plates you can maintain block for up to 5 seconds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartLargePlate","Count":2,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"TGregworks:tGregToolPartToughBind","Count":1,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":2,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":57,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":62,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":661,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBow, arrows and quiver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wow, your first handmade *ehm* machine made bow. You find out that you can put the bow in the mine and blade battlegears slots. Now it's time to make a quiver and maybe some arrows. \n\nTo place arrows in the quiver, put the quiver and the stack of arrows in a crafting grid. Make sure the Gameplay key Special is deconflicted. By default it is Z. When you have the bow selected, use Z to swap arrow slots in the quiver.\n\nWhile it seems like these might be worthless, these arrows do have special uses. You really want to share a cookies with friends, don't you?\n\nLet's go hunt a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"battlegear2:quiver","Count":1,"tag":{"current":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:arrow","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"battlegear2:mb.arrow","Count":10,"Damage":0,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":6,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":2,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":5,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":3,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":1,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":662,"preRequisites":[664],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic arc furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The arc furnace is an alternative to smelting stuff back into components and making wrought iron. The recipes use oxygen and 3 amperes of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":663,"preRequisites":[662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:upgradeModule","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFaster steel production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A faster alternative to steel production is to use the arc furnace and smelt the iron ingots into wrought iron ingots. Then macerate them to dust and smelt them very fast in the EBF to steel. (Some might even dare arc furnacing the dust itself...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11304,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":664,"preRequisites":[619],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":171,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV battery buffer 9 slots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your battery buffer to hold 9 batteries which allows max 9 ampere output.\nUseful for your EBF and the arc furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":181,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":665,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kitchenware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To cook some healthy food you need a few tools crafted first.\nSaucepan, \npot, \nrolling pin, \nmortar, \nmixing bowl, \nsoft mallet, \nskillet, \nknife..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:saucepanItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":46,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":""},{"id":"harvestcraft:mixingbowlItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":14,"OreDict":""},{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:firmtofuItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:flourItem","Count":16,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":666,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:boat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Row, row, row your boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You live close to the water and don't have a boat?\nYou need wooden planks, slabs and a knife to craft one. (This is also quest id 666, be careful, something is going on.)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:boat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:watergarden","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":667,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trainspotting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wooden tracks can be made without any machine. Functionally equivalent to normal rails, but with a lower maximum speed (for safety reasons).\n\nHint: You can use your wooden rails for Steve's carts farms."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":60,"Damage":0,"OreDict":"slabWood"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.tie","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:stick","Count":4,"Damage":0,"OreDict":"stickWood"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.rail","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.railbed","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"Railcraft:part.railbed","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":668,"preRequisites":[666],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rubber boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The rubber dinghy requires only a few rubber plates. Like the vanilla wooden boat, it will break and dismantle whenever it hits a surface, however instead of returning sticks and planks, it will return a damaged rubber dinghy, which can be re-crafted with two pieces of rubber back into a useable rubber dinghy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":669,"preRequisites":[673,672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inflatable boot","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I meant to say boat... The inflatable boat is the first boat that doesn't break on impact with a solid block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCarbonMesh","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":670,"preRequisites":[673,672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon fiber boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike all other boats, this amazing carbon fiber canoe is COMPLETELY INDESTRUCTIBLE!* This means that you can smash it into as many beaches, lily pads and alligators as you like, the carbon fiber canoe won't take a scratch!\n\nWarning: We are not held responsible for any damage caused by riding the carbon fiber canoe into a lava lake or the Void.\n\n*Therefore, warranty is NOT included."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":671,"preRequisites":[669,670],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Electric boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The electric boat works mostly like a vanilla boat, chugging through the water at a decent pace. It will hopefully drop itself once you crash, which is slightly nicer than the usual sticks. That's all well and good, but what if we utilize the electric engine? Wearing an energy storage device in your chestplate slot, like a batpack or energypack, will cause the boat to drain energy from it and propel you forward at supersonic speed! Doing this will consume about 100 EU per block traveled, so even a decent batpack won't last long!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ElectricBoatHull","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""},{"id":"minecraft:waterlily","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":672,"preRequisites":[668],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.ExtruderShapeBoat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boat shape?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Really? Yes for the more advanced boats you need a new shape form.\nYou need to make an Extruder first to progress further."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ShapeBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ExtruderShapeBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":673,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":281,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV extruder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The extruder is not very useful in the LV age. But it will extrude your next tier of boat, make rubber sheets more efficiently, get you extra fluid cells, or make some Tinkers Construct tool parts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":281,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":674,"preRequisites":[675,676],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.slow.junction"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wooden rail variants","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wooden junction, wye and switch tracks need an assembling machine to craft. They allow you to join and switch to tracks going to different locations.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.junction"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.switch"},"Damage":19986,"OreDict":""},{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.wye"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"Railcraft:part.railbed","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":675,"preRequisites":[667,76,48],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:signal","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Switch lever","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The switch lever is the manual version of the switch motor, requiring a player to operate it instead of a redstone signal. \nIt is used in various signaling systems, mainly to change the way switch tracks and wye tracks work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:signal","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:part.rail","Count":16,"Damage":2,"OreDict":""},{"id":"Railcraft:part.rail","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":676,"preRequisites":[675],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:tool.crowbar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crowbar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The crowbar comes in a Railcraft and a gregtech variant. It is used to manipulate machines from railcraft, remove plates and any other covers (pumps, conveyor belts, etc.) from gregtech pipes and machines as well as breaking certain objects faster, such as tracks. This tool is also used to access certain inventories from Railcraft.\nHold a crowbar and shift + right click to attach carts. Click the starting cart then continue to click to add more carts to the link. Carts will act slower the more connections are made.\n\nThe crowbar can be used as a weapon, though it costs twice as much durability on attack (just like any other non weapon tool...)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:tool.crowbar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":677,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Minecart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you craft your first cart the journey can begin...\nWell, not really. You will need some kind of tracks first."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23032,"OreDict":"stickAnyIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28032,"OreDict":"ringAnyIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17032,"OreDict":"plateAnyIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""},{"id":"Railcraft:track","Count":8,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":678,"preRequisites":[634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Fast Food > Slow Food","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three fast food lootbags give a better one = Slow Food Lootbag. (Since when is slow food better?)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":679,"preRequisites":[638,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slow Food > Haute Cuisine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three slow food lootbags give a better one = Haute Cuisine Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""}]}]},{"questID":680,"preRequisites":[679],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Haute Cuisine > Dessert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Six haute cuisine lootbags give a better one = Dessert Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":6,"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":31,"OreDict":""}]}]},{"questID":681,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Transportation Class 3 > Transportation Class 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three transportation class 3 lootbags give a better one = Transportation Class 2 Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":32,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]}]},{"questID":682,"preRequisites":[681],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Transportation Class 2 > Transportation Class 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three transportation class 2 Lootbags give a better one = Transportation Class 1 Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":34,"OreDict":""}]}]},{"questID":683,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:chestplateMud","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wet dirt armor?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't have any armor, \"mud armor\" is better than nothing. Mud can be found in some wet biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mudball","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"BiomesOPlenty:helmetMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:chestplateMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:leggingsMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:bootsMud","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:mudball","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":684,"preRequisites":[444],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:chestplateWood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wooden armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you can't find mud you can make very poor armor out of wood. Cutting down a few trees to make a set should do. You will need a soft mallet too, so save a few logs for that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":24,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:helmetWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:chestplateWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:leggingsWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:bootsWood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:mudball","Count":24,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":685,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron armor is much better than the leather armor. Especially when you have to go outside during the night."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:iron_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":3}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":686,"preRequisites":[42],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Leather armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Killing some cows will give you enough leather to craft a complete set of leather armor. \n\nHint: You are able to dye this armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:leather_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:dye","Count":8,"Damage":0,"OreDict":"dyeBlack"},{"id":"minecraft:dye","Count":8,"Damage":1,"OreDict":"dyeRed"},{"id":"minecraft:dye","Count":8,"Damage":2,"OreDict":"dyeGreen"},{"id":"minecraft:dye","Count":8,"Damage":3,"OreDict":"dyeBrown"},{"id":"minecraft:dye","Count":8,"Damage":4,"OreDict":"dyeBlue"},{"id":"minecraft:dye","Count":8,"Damage":5,"OreDict":"dyePurple"},{"id":"minecraft:dye","Count":8,"Damage":6,"OreDict":"dyeCyan"},{"id":"minecraft:dye","Count":8,"Damage":7,"OreDict":"dyeLightGray"},{"id":"minecraft:dye","Count":8,"Damage":8,"OreDict":"dyeGray"},{"id":"minecraft:dye","Count":8,"Damage":9,"OreDict":"dyePink"},{"id":"minecraft:dye","Count":8,"Damage":10,"OreDict":"dyeLime"},{"id":"minecraft:dye","Count":8,"Damage":11,"OreDict":"dyeYellow"},{"id":"minecraft:dye","Count":8,"Damage":12,"OreDict":"dyeLightBlue"},{"id":"minecraft:dye","Count":8,"Damage":13,"OreDict":"dyeMagenta"},{"id":"minecraft:dye","Count":8,"Damage":14,"OreDict":"dyeOrange"},{"id":"minecraft:dye","Count":8,"Damage":15,"OreDict":"dyeWhite"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":687,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorBronzeChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bronze armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bronze armor has the same abilities as iron armor. Same durability, same protection and same enchantment capability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorBronzeHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeLegs","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":688,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Nice to have\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gold armor is a \"nice to have\" armor. The durability is very low but you look expensive when you wear it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:golden_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:golden_apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:golden_apple","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":689,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Oh shiny\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond armor is the best armor in Vanilla Minecraft, but over here there are much better armors available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:diamond_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:diamondApple","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":29500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":690,"preRequisites":[685,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:chainmail_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not really better but fancy. The chain mail armor is made out of steel rings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":28305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:chainmail_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":5,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":691,"preRequisites":[685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor 2.5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The steel armor has more durability than the iron/bronze or chainmail armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:armor.steel.helmet","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.legs","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":1}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":4}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":692,"preRequisites":[685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Composite vest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining the strength of advanced alloy plates with the steel chestplate makes your vest very hard. Now you have double the durability and increased armor points by 1.5."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartAlloy","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":18,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":693,"preRequisites":[35,38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFallen from the sky","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are big meteors everywhere and you are wondering why you need to mine them now?\nSkystone is a good source of rare earth metals in the LV age. \nInside the meteor you can find a skystone chest containing some processor press plates. Save them for later, as they are really important. Plus the chest is nice, and can be placed underneath blocks and still opened.\n\nHint: If your all your surface meteors have been raided, put some skystone in your orefinder to find underground ones. Often there is a second meteor right next to the one on the surface!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyStone","Count":256,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:tile.BlockSkyChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":35}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":694,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:anvil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOne Anvil... Better make that two!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your brand-new Compressor you are able to make some metal blocks for your new anvil. Better craft two anvils, one will be required for the forge hammer.\n\n§4With the anvil you can repair, rename and enchant armor and tools.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_block","Count":10,"Damage":0,"OreDict":"blockIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":"screwAnyIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:anvil","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":695,"preRequisites":[74,35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§o§1§2§3§r§r§r§r§r§r§3§4§r§o§7§7§8§9§9§5§3§1§0§r§o§m§k§c§e§l§r§1§1§r§6§lAutomation tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to automate your smeltery because you are planning to make stacks of glass blocks? \nNo problem, craft a large bronze pipe and place it under the faucet. Now the molten fluid will flow inside the pipe. Under or next to the pipe you have to place the casting basins or tables.\nA hopper and a chest underneath would auto-output products. NOTE: Faucets will output precisely 144L each activation if you toggle it off immediately. That's going to have some uses later on..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31032,"OreDict":"gearIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:hopper","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:GlassBlock","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":696,"preRequisites":[695,479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:comparator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAutomation tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want a better automation than using pipes? Sure, craft a comparator and link it with redstone dust placed on the ground. The redstone needs to be adjacent to the faucet to activate the crafting process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:comparator","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone_torch","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":697,"preRequisites":[76,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":13305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§l2x steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steel production is so slow. If you got enough bricks and clay, build a second BBF. Build it attached to the first one, so they can share a wall and you will save some bricks, clay and concrete."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":24,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":698,"preRequisites":[697],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":15305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§l4x steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not even two BBFs are fast enough...Can you figure out how to save the most bricks making 4?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":40,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":699,"preRequisites":[91,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWhy one coke oven when you can have ten?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your bricked blast furnace uses coal like hell and your steam boiler too? Well it's time to make more coke ovens and automate them a bit. Wooden fluid pipes and tin item pipes will help you reach your goal.\n\nSearch NEI for a more efficient way to make coke oven bricks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":260,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":11,"Damage":32630,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":32610,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":5590,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":5101,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:cube","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"JABBA:barrel","Count":10,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeCore","Count":9,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":100,"Damage":0,"OreDict":""}]}]},{"questID":700,"preRequisites":[701],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:EldritchOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"How dark can you go?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Seriously, how dark can one be? You are sure the face in that crystal was nothing but imagination..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:EldritchOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":701,"preRequisites":[706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:transcendentBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ascended","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel empowered, light, almost like a ghost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:transcendentBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":702,"preRequisites":[703,928],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":27,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"1023 Buckets of blood in one slate! How much more I can store, oh I wish I would know. Then I add one and check if it works. 1024 buckets of blood in one slate! ... ..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":2,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":703,"preRequisites":[714],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powerful shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The demons summoned are rather strong, but their souls contain immense power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":20,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":20,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":704,"preRequisites":[421,927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:demonicSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tier 4 slates: Getting close."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:demonicSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":705,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:watering_can","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAccelerated plant growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plants grow very slowly, you might've discovered that by now. So why you don't counter that? A watering can will come in handy very soon."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"ExtraUtilities:watering_can","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:supremepizzaItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":706,"preRequisites":[702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:dawnScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ethereal chalk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Top tier chalk, for fancy wall paintings?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:dawnScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":707,"preRequisites":[702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Archmage orb. Let them come!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 5 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":708,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:masterBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Master orb: Getting close","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 4 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:masterBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":709,"preRequisites":[708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:duskScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Elemental chalk II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enhanced elemental chalk, to write \"darker\" runes than you're used to..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:duskScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":710,"preRequisites":[708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will want both runes. Rune of superior capacity to increase the storage of your blood altar, and rune of the orb. Later it is required if you want to advance to higher levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":711,"preRequisites":[707],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final frontier: There are not many runes available. The acceleration rune allows you to speed up the interaction with external tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":712,"preRequisites":[709],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More powerful rituals require dusk runes. With your new dusk chalk, you can enhance your ritual diviner to place those. Allowing you to perform a lot more rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":713,"preRequisites":[706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last rune so far, used for the most powerful rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":2,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":714,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"magicales","capacity":16000}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Convocation of the damned","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to open a portal to the demons we're using all the time. What could possibly go wrong? (It is recommended to do this ritual on a planet, as the demon city will spread quite a bit...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"magicales","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"potentia","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"incendium","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"terrae","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"tenebrae","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"sanctus","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"aether","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"aquasalus","capacity":16000}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:activationCrystal","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":715,"preRequisites":[703],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Imbued spell upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With these new shards you are able to craft the most powerful spell components. Maybe it's time to upgrade your mining spell?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":8,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":716,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFind some Certus Quartz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nether is full of different kinds of quartz. For the emitter and the sensor you will need to find some certus quartz."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":8516,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":5,"Damage":32107,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:glowstone_dust","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":2,"Damage":0,"OreDict":""},{"id":"Natura:barleyFood","Count":3,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":717,"preRequisites":[748,747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§5§lGood Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits are an improvement on basic circuits. They are a component of all MV gregtech machines. Be sure you build the electric blast furnace first, so you can process some aluminium dust into ingots.\n\n§4This will also open the Project Red tab, one of the early automation options."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":12,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32702,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32119,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32102,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":718,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockCrop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMoron's Manual to Fecund Farms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you ever wanted to know how crop breeding works you are in the right place. Get some crops (the sticks) and some seeds from farming with a hoe or mattock. You can also place some plants and berries directly on crop sticks. Good plants to start with are flowers, wheat, cactus and sugarcane. \n\nMake a plot of farmland with your tool and place water in the middle. For now, make 3x1 plots, separated by a row of dirt or cobble. You want to be able to see the center of each column of 3x1 plots all at once, like this:\nFFFdddFFF\ndddFFFddd\nFFFdddFFF\ndddFFFddd\nFFFdWdFFF\ndddFFFddd\nFFFdddFFF\ndddFFFddd \nFFFdddFFF\nNow place crop sticks in each end of the 3x1 plot. Then place the seeds on the sticks and wait a bit.\n\nWhen they are almost fully grown you can put double crop sticks in the center spots by using crop sticks on already placed crop sticks. This center area can now grow new crops, even new species.\n\nWith some luck you might get a new unknown seed which can be scanned later.\n\nWeeds need to be removed with a trowel or spade otherwise your field will become overgrown by them.\n\nUsing 3x1 plots is easy and not much work. Check them every 5-10 minutes to remove weeds and gather new seeds. If you forget, you only lose one or two seeds. \n\nIf you find a really nice seed, you can do 3x3 or 5x5 plots with the nice seed in the middle and others next to it for crossing. But this requires more babysitting since weeds could destroy the whole field.\n\nDon't leave new crops in these intensive fields. Pull them out and hopefully get a seedbag. Put low stat seeds in production fields that don't require babysitting. Keep the high stat seeds for more crossing. \n\nCrossing happens when 2 or more almost mature crops are next to a double cropstick. There is a 90 percent change of getting the same species as the parents. The rest of the time will be a mutation. More details in the IC2 cropnalyzer quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wheat_seeds","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:reeds","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":16,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":719,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"potato","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First Breeding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"New plants have grown on your crop sticks. You can harvest the crop by right clicking it.\n\nLeft clicking with a seed bag will destroy the plant and replace it with the seedbag, so be careful. Collect 8 seeds of any kind.\n\nTo unlock the next quest, you will need the LV scanner.\n\nIf you haven't already, go back to Steam and build some Filing Cabinets. They make storing and moving large quantities of seeds a breeze. Plus they will properly sort the seeds based on name. To find a specific seed, type its name in the NEI search bar, and double click the bar so it highlights yellow. Now you can look through the Filing Cabinet and find the exact seedbag you want."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":8,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":720,"preRequisites":[724,531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weeds, weeds, and more weeds. You get so many of them while cross breeding. \nNeed some biogas cells for your power production in exchange? Or maybe some glowstone to light up your fields?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemWeed","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":128,"Damage":7,"OreDict":""},{"id":"minecraft:glowstone","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":721,"preRequisites":[531,719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:N Crops","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unknown seeds no more","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have a lot of unknown seeds already. Use your scanner to scan all the seeds.\n \nSeeds can be planted again to breed better and more resilient crops.\n\nLater you can use your portable scanner to see the crop stats while still in the ground.\n\nGrowability depends on having dirt beneath your crop(4 max), biome (swampy is best, followed by jungle and mushroom - basically any humid or wet biome such as tropical rainforest or bayou), air quality (Up toY=124 and don't place a lot above/around your plants), hydration, and fertilizer. When the crop tier and plant stats get high enough, they will actually die without enough Growability.\n\nAs long as you water and fertilize them, you can pretty much grow crops anywhere, but as you improve the stats you have to optimize their environmental conditions.\n\nIf the Growth stat gets too high, greather than 24 or so, the plant will spread weeds onto neighbors.\n\nSome crops, such as Redwheat, require certain light levels to crossbreed or grow."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":32,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone","Count":8,"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":722,"preRequisites":[719,543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFertilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speed up your plant growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To speed up the growth process a bit you can use a fertilizer. You will note, however, that bone meal no longer works. A bit of ash, apatite or calcite mixed with some water in a chemical reactor will give you the fertilizer you need. Apply by hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFertilizer","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_hoe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":723,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:carrot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potatos, Carrots, Pumpkins and Melons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your seeds have three different values: Growth, gain, and resistance (GGR).\n\nThe only way to change a crop's GGR without 3rd party tools is through cross breeding. When two plants cross-breed, the resulting plant will have a GGR score that is between both \"parent\" plants' GGR. Sometimes it will also be a little bit higher or lower. Thus, to obtain high GGR scores you must go through numerous generations of crossbreeding.\n\nThe highest score for GGR is 31."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:carrot","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:melon_block","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":724,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weed will show up from time to time on your crop sticks. Be careful and harvest the weed with your weed trowel before the whole field becomes overgrown with them and they destroy all your plants. Later you can make some weed Ex to destroy it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemWeedingTrowel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"IC2:itemWeed","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":725,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flower Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Growing dyes on crops sticks? Try to plant some flowers. If you cross breed Rose and Dandelion flowers you maybe get a new flower and new dyes with different colors.\n\nYou will need to plant 4 vanilla flowers to get them on a cropstick.\n\nTo get \"Rose Seeds\" place poppies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":8,"tag":{"owner":"IC2","name":"rose","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":8,"tag":{"owner":"IC2","name":"dandelion","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":32,"Damage":1,"OreDict":""},{"id":"minecraft:dye","Count":32,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"blackthorn","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"cyazint","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":726,"preRequisites":[543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChemical rubber production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A much more efficient way to make insulated cables is by making molten rubber in a chemical reactor which can be applied to a cable in the assembling machine. When you put both machines next to each other you can output the molten rubber directly to the assembling machine by clicking the fluid auto-output button on the chemical reactor. Make sure to set the correct side of the reactor as output side by wrenching it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2896,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":2022,"OreDict":"dustSulfur"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":30,"Damage":1246,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":30,"Damage":1366,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":727,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:fullDrawers1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lBetter than barrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While barrels offer a slot for a single item, drawers can have up to 4 slots each (holding 16 stacks per slot). Once you reach HV you can combine them with some ProjectRed pipes to set up a \"ghetto ME storage system\" (Tec2k17).\n\nJust watch out, they do come with some downsides. You won't be able to make them point up or down, and you can only acces the contents from the front (automation can use any side). \n\nAlso, if placed on top of a hopper, they can bug out and void items when the hopper is full. If you plan on that, use barrels or chests instead."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:fullDrawers1","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:butteredpotatoItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":728,"preRequisites":[727],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:halfDrawers2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCompact Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They are very compact and add some fanciness to your glorious dirt base. "}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:halfDrawers2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:halfDrawers4","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:loadedbakedpotatoItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":729,"preRequisites":[727,728],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:framingTable","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFraming Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can really make some swaggy and even FANCIER drawers using this table, all you have to do is place some decorative blocks (works with almost ALL decorative blocks) and it will take their texture, the TOP left is the outer Square bottom left is for the front face and top right is for the borders."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:framingTable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:fullCustom1","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullCustom2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullCustom4","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":730,"preRequisites":[717,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBio Fuels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are using steam, creosote, and possibly oil plus their by-products to generate Power. It's time to start with bio diesel. You can use wheat, sugarcane, apples, saplings or fish.\n\nBe sure you have a managed Forestry farm, Steve's Cart Farm, IC2 Crop Sticks with a harvester, or a lot of fish catchers because you need plenty of biomaterials for constant biodiesel production.\n\n§4Hint: Hazelnut is the ultimative source for biodiesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:reeds","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:apple","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:wheat","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wheat_seeds","Count":32,"Damage":0,"OreDict":""},{"id":"Forestry:fertilizerCompound","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":731,"preRequisites":[730],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFuelPlantBall","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPlant balls","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step is to compress plantballs out of your wheat. Your LV compressor is too slow for it. I suggest crafting 4 MV compressors for the new bio diesel processing line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":732,"preRequisites":[731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MaceratedPlantmass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPlant Mass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Macerate the plantballs down to plant mass for better processing. In the LV and MV tiers you get only one plant mass per, in HV tier you recieve two. IV macerator gives up to four of them with a chance of 50 percent and 25 percent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MaceratedPlantmass","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":733,"preRequisites":[732,1322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBiochaff","Count":32,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBio Chaff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plant mass needs to be centrifuged into bio chaff, the base material to make biomass. You need 1 or 2 MV centrifuges to run the new production line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBiochaff","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":23019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":734,"preRequisites":[733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay One: IC 2 Fluid Canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first way you get biomass out of bio chaff is to use the IC2 Fluid Canner. One bucket of water and one bio chaff gives one bucket of biomass. \n\n§4In MV Tier you can use the pyrolyze oven to do it in a more efficient way."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockMachine","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":28880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":735,"preRequisites":[733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":492,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay Two: Brewery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are lucky and find some brewing stands or familiar enough with Thaumcraft to make one you can craft a brewery. You get 750mb of biomass out of 750mb water and 1 bio chaff. \n\n§4In MV tier you can use the pyrolyze oven to do it in a more efficient way."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":492,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":736,"preRequisites":[1323],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":512,"Damage":30691,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFermented Biomass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the MV fermenter you can produce fermented biomass. This is the base product to make methane, ethanol and methanol.\nWhen you reach HV tier there's a more efficient way to process it - the distillation tower multiblock."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":502,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30691,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":737,"preRequisites":[127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.drawplate","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Can u eat those? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No you can't eat them but you can add them to your routed pipes. Without chips routed pipes can't do anything on their own, chips also have a GUI to configure them which can be opened by right clicking. \nThere are 8 types of chips:\n\n-Item extractor chip can be used to send items from its inventory to responder, dynamic responder, terminator and overflow responder chips in a pipe network. \n\n-Item responder chip will request items from the extractor chips in your network which match the filter configured to the inventory connected to the responder chip. Chips with higher priority value will receive items first until the inventory is full then will be sent to other inventories with valid filters and remaining space.\n\n-Dynamic item responder chip will request items from the extractor chips in your network that match items inside the dynamic item responder connected inventory. This chip has to be in the same interface pipe as the item responder chip in order to work. Priority rules apply here as well. \n\n-Item overflow responder works exactly the same as the item responder chip, however it only accepts items that cannot go to an item responder chip, dynamic item responder chip, or item terminator chip. \n\n-Item terminator chip works as a backup for responder chips.\n\n-Item broadcaster chip will show you the inventory connected to the routed request pipe on the pipe network and can be used to retrieve items from it. They can also extract from the side you configure. \n\n-Item stock keeper chip will constantly check the network for items and pull them to its pipe. If the chip is set to pull when empty, it will only pull if the inventory next to it is empty, otherwise it will pull when there are less items in the inventory than configured in the chip.\n\n-Item crafting chips craft things. \n\n-Item crafting extension chips are placed inside the item crafting chips. Make sure you randomize the id."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":4,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":738,"preRequisites":[127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":2,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Routed Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are six types of routed pipes: \n\n-Junction pipe is used to form an intersection that will allow other routed pipes to communicate. \n\n-Interface pipe will connect to an inventory allowing you to extract or insert items, chips can be used to control the logic. \n\n-Request pipe will allow requesting only specific items to be send through pipes.\n\n-Firewall pipe can control which items can pass through them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":0,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":739,"preRequisites":[738,737],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ghetto ME System","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are familiar with the mod it's time to organize items in your base a bit. These are the things you need in order to get a basic extract/insert system.\n\nFirst of all you will need a drawer controller. You can pick it from here or craft it yourself and place it down. Next to it add as much drawers as you want, and make sure they are touching each other or the controller.\n\nThe next step is to connect a routed interface pipe to your drawer controller. Take the item responder chip and configure it to filter mode: blacklist (this will allow you to get any items from your system) and add the chip to the routed interface pipe by right clicking on it. Don't forget the dynamic item responder.\n\nIn order to allow your system to be able to see items you need to add the item broadcast chip TO THE SAME ROUTED INTERFACE PIPE WHICH IS CONNECTED TO THE DRAWER CONTROLLER.\n\nThe last step is to connect a routed request pipe IN THE SAME NETWORK AS THE ROUTED INTERFACE PIPE and right click it to access the GUI. You can only extract items from it. In order to insert items simply right click them on the drawer controller. \n\nYou can find more complex tutorials on youtube for autocrafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":2,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":740,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":282,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lExtrude all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you hit the MV tier and it's time to get a better ratio when making sticks, pipes, wires, plates and many more parts. Most recipes use more than 32 EU/t so better make an MV extruder. After crafting the machine you need some extruder shapes for the different types of parts you want to make.\n\n§4Most of the Tinkers Gregworks tool parts are made in the extruder."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32351,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32350,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32352,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32353,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32356,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32358,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32359,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32360,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32361,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32362,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32363,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32357,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32372,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32375,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32374,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32355,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32373,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":282,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":741,"preRequisites":[1126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:ToolForgeBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§3§lTool Forge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally you get your first alumite. Now it's time to craft a tool forge for making bigger Tinkers tools. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":2,"Damage":15,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""},{"id":"TConstruct:CraftingSlab","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:SearedSlab","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:ToolForgeBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":742,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":3509,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":16,"ModDurability":0,"MiningSpeedExtra":700,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":3509,"MiningSpeed2":700,"HeadEXP":0,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"Steel Hammer"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOne Block mining is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making a hammer you are now able to mine a shaft of 3x3 blocks. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. Higher tier metals require the MV extruder. You'll need a hammer head,two large plates and a large rod for your hammer. Be careful in the Nether or you could be boiled in lava very quickly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":21,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":3509,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":16,"ModDurability":0,"MiningSpeedExtra":700,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":3509,"MiningSpeed2":700,"HeadEXP":0,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"Hammer"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":743,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:lumberaxe","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2193,"BaseAttack":4,"ToolEXP":0,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2193,"MiningSpeed2":700,"Head":16,"Attack":4,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Steel Lumber Axe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lCutting a Tree log by log is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making a lumber axe you are now able to cut down the entire tree in one hit. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. Higher tier metals require the MV extruder. Don't forget your backpack when you are cutting a sacred oak tree down."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":17,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:lumberaxe","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2193,"BaseAttack":4,"ToolEXP":0,"Built":1,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2193,"MiningSpeed2":700,"Head":16,"Attack":4,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Lumber Axe"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":744,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:excavator","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2413,"BaseAttack":6,"ToolEXP":0,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2413,"MiningSpeed2":700,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Steel Excavator"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMining Dirt Block by Block is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making an excavator you are now able to mine dirt in a 3x3 area. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. \nHigher tier metals require the MV extruder. Don't destroy your whole garden."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":19,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:excavator","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2413,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2413,"MiningSpeed2":700,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Excavator"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":745,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:liquid.glue","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGlue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you centrifuge sticky resin, you get some glue. Glue is very useful in the creation of good circuit boards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemHarz","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30726,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemHarz","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":746,"preRequisites":[77,759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Due to the chip production, silicon becomes a more important material. You can centrifuge it out of fullers earth, asbestos or redstone dust. The electric blast furnace is needed to make ingots. One ingot requires a temperature of 1687 K for 84 seconds at 120 EU/t using raw silicon. Using silicon dioxide and carbon dust, you can get an ingot in 12 seconds! Another time when it is wise to search NEI and not stop on the first recipe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"minecraft:redstone","Count":40,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":747,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiode","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits need diodes. There are two ways to craft them. Right now you have to use the Gallium Arsenide method with fine copper wires and molten glass. Later when you get an EBF you can use it to make silicon wafers to make even more. Once you have polyethylene you can use annealed copper wires to increase your output yet again. \n\nMake sure you check all the NEI recipes for advanced items instead of just using the first one you find."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":1980,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":748,"preRequisites":[97,745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEmpty Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuit boards require wooden pulp and refined glue to make phenolic circuit boards. By adding gold wire you can craft a good circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2809,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32719,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1420,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1420,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29086,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":749,"preRequisites":[754],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAre you Prepared for HV?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel will be the material for the HV Tier. There are two ways to process it. Mixing it by hand outputs 8 stainless steel dust.\n\nManganese can be found from ore veins with grossular ore, spessartine ore, pyrolusite ore and tantalite ore. Alternative sources are Garnet dusts from Garnet sands, or Almandine. If you get desperate, you can buy some ore from the Coins tab.\n\nChrome can be centrifuged out of manganese dust and ruby dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2031,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32224,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":750,"preRequisites":[759,951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17874,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lMolten Plastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Molten polyethylene can be made in a chemical reactor using ethylene, compressed air cells or oxygen - using oxygen gives a 50% boost. Use a mold for making plates in a fluid solidifier to make plastic sheets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":751,"preRequisites":[754],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":582,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMixing Stainless Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel will be the material for the HV Tier. There are two ways to process it. Mixing it in a mixer outputs 9 stainless steel dust each process.\n\nManganese can be found in ore veins together with grossular ore, spessartine ore, pyrolusite ore and tantalite ore.\n\nChrome can be centrifuged out of manganese dust and ruby dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":28,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":2302,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":2031,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":2030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":582,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32221,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":752,"preRequisites":[746],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon Plate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits require transistors, which are made out of silicon plates, fine tin wire and molten polyethylene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:hotdogItem","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32113,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":753,"preRequisites":[749,751],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lStainless Steel EBF processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel ingots are made in the electric blast furnace at a temperature of 1700K. \nIt takes 80 seconds at 480 EU/t or by adding oxygen gas 60 seconds at 480 EU/t.\n\n§4You need a miniumum of two MV energy hatches to power the EBF."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":11306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":754,"preRequisites":[77,893,1084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Energy Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some materials like stainless steel require 480 EU/t. Your LV hatches are not good enough. Craft a minimum of two MV hatches to upgrade your electric blast furnace to HV.\nIf you not make some Ultra Low Power ICs go and make some wafers first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":755,"preRequisites":[77,609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"SpecialData":-1,"PrimaryMaterial":"Iron","Tier":1,"MaxDamage":25600,"Voltage":32,"MaxCharge":100000,"Electric":1,"SecondaryMaterial":"Rubber"},"GT.ItemCharge":100000},"Damage":160,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter than Duct Tape","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A soldering iron tool to remove the \"burned out circuits\" message is better than duct tape. \nThe soldering iron requires one soldering material item and 10,000 EU. Valid soldering materials are fine wires, rods, and ingots made from either tin, lead, or soldering alloy. The soldering iron will consume the first such material it finds in the player's inventory.\n\nIn order to \"complete\" the quest they will need to charge the soldering iron after you craft it.\n\nFor the other problems other tools are necessary.\n\nPossible problems Tool to fix\n\"Pipe is loose.\" Wrench\n\"Screws are missing.\" Screwdriver \n\"Something is stuck.\" Soft mallet \n\"Platings are dented.\" Hammer \n\"Circuitry burned out.\" Soldering Iron \n\"That doesn't belong there.\" Crowbar"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":160,"OreDict":"craftingToolSolderingIron"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19314,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":756,"preRequisites":[77,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLess Power loss","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you reach MV tier you can make your own duct tape in case you have to move your multiblock machines around. Duct tape will fix all maintenance problems in any multiblock machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30726,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30726,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":757,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lRuby Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ruby is a good source for electrolyzing to get chrome and aluminium. Your new MV electrolyzer gives you access to a lot of new recipes. Once you get low on Ruby, you can centrifuge Redstone to get more.\nAnother good source of aluminium and oxygen is red granite dusts. You can get those from red stonelillies in the Fishing Farming Cooking tab using ic2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":2502,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":758,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Let's make some MV battery hulls for new batteries. Now it's up to you to make lithium, cadmium, sodium or acid batteries with these hulls."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32501,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":759,"preRequisites":[846,847],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.99","Count":1,"Damage":874,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMolten Polyethylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polyethylene is made out of ethylene in a chemical reactor.\nMolten Polyethylene cells carry 144L, perfect for 1 ingot or plate. \nIf you want precise amounts, you can use a Volumetric Flask once you electrolyze some Boron from Borax."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":43,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":32,"Damage":874,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":760,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2805,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lClay Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You found out that electrolyzing clay dust will give you silicon dust. There are plenty of stained clay blocks found in canyon and lush desert biomes or on mountains that can be pulverized to clay dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":832,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":2020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":761,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPowderbarrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Powderbarrels are twice as good as dynamite in the implosion compressor. Craft one stack."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:gunpowder","Count":256,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":17809,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"StevesCarts:ModuleComponents","Count":16,"Damage":43,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":762,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTNT","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"TNT is much more powerful than the powderbarrel but much harder to craft. There are LV and HV ways to craft. At LV you need heavy or light fuel to make some toluene which can be solidified to gelled toluene. Alternatively you can use sugar and plastic dust in a chemical reactor to make toluene more efficiently. Mix it with sulfuric acid to make TNT.\n\nThe HV way requires an oil cracking unit to make all kinds of cracked fuel or cracked naphta and a distillation tower to extract toluene from that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30647,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":256,"Damage":32010,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:tnt","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32010,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30720,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}]}]},{"questID":763,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockITNT","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§liTNT","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Industrial TNT is the HV variant of TNT. It explodes with more power, yet does not destroy blocks when it explodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30647,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":32010,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30628,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32010,"OreDict":""},{"id":"IC2:itemFluidCell","Count":8,"tag":{"Fluid":{"FluidName":"liquid_nitrationmixture","Amount":1000}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":764,"preRequisites":[556],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemDynamite","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDynamite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dynamite is the most basic explosive you can use in the implosion compressor.\nMix some paper, string and glyceryl trinitrate in a chemical reactor to get dynamite."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:paper","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30714,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemDynamite","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17809,"OreDict":""},{"id":"IC2:itemDynamite","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":765,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1157,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to oil drill!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps are nice but you're going to reach a point where you will want MOOOOOOOOOOOOORE oil. This multiblock will help with that but you will need to search for oil using a seismic prospector. You can find raw, light and heavy oil. There's also a chance to find natural gas.\n\nHigher tiers of power will drill faster. You need to upgrade the energy hatch corresponding to the power tier. \n\nLater you can upgrade the oil drilling rig so it extracts from more than one chunk at a time.\n\nYou need mining pipes in the machine controller block.\n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1157,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":15,"Damage":4401,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":62,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":766,"preRequisites":[160,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1160,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLet's get crackin!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cracking oil products like light and heavy fuel with the oil cracker is faster and more efficent than using a chemical reactor, producing 25 percent more output. Cracked products will result in additional by-products in the distillation tower. It is a smart idea to get this multiblock since you are going to need TONS of industrial TNT from Toluene for advanced tier rockets. \n\nThe 16 coils form 2 vertical rings of 8 on either side of the controller. The casings between the rings can be replaced with a hatch for steam/hydrogen input. Energy hatch and maintenance hatch can replace any of the casings. The input product hatch and output product hatch must replace one of the casings outside of the coils.\n\nHint: Only GT/Railcraft steam can be used, not ic2 steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1160,"OreDict":""},{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":20,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":53,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":63,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30001,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"steam","Amount":1000}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":767,"preRequisites":[73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAnalyzing the soil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of looking for ores by hand? Want to find deep oil that will last a long time? A seismic prospector will tell you the ores in the surrounding chunk in a handy book you can read, and also the oil in the oilfields beneath each 8x8 chunks.\n\nTo determine which kind of oil or gas there is in the chunk you need to scan the soil by right clicking an Advanced Seismic Prospector with 2 Powderbarrels, 4 Glyceryl Trinitate cells, 8 iTNT or 16 TNT. Make sure you wait a few seconds after placing the prospector before applying the explosives.\n\nThen use a Data Stick to extract the data by right clicking on it after the animation has finished.\n\nNow you need to put the analyzed data stick in a GT scanner. Then place it in the bottom right slot of the printer and add 3 paper in the top left slot and make sure you have at least 144 mb squid ink in it. (Only gregtech machines will work)\n\nAfter the process is done take the printed pages and combine it with a piece of leather in an assembling machine filled with at least 20 mb of refined glue. Don't assemble more than one book at time.\n\nTADA now you have a book with detailed info about the chunks you scanned.\n\nNote: Each oilfield is 8x8 chunks, and always on a by 8 chunk boundary. Within the field the amount can vary +- 25 percent. The amount reported in the book is the minimum and maximum per oilfield across all chunks in the field. The prospector reports on 3x3 oil fields at all tiers with the center oil field where the seismic prospector is located. Oil extraction rate depends on many factors, check the wiki for details. In general, anything above 300 is really good. The total amount in the chunk is complicated. \n\nOre locations are given as the center of the chunk. Ores that are marginal in that chunk may not be found in the center but on an edge. Look at where ores are located and determine the center of the vein. At higher tiers, it scans more chunks for ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":768,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1126,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou smell like a distillery!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This bad boy will tremendously boost the by-products of your cracked fuel or pyrolyse oven. This way you can make industrial TNT, polyethylene, polytetrafluoroethylene and other plastics more efficiently. \n\nYou will also need this for your automated setups.\n\nYou will need to make EV circuits in a cleanroom to build this machine.\n\nFor hatches, you can choose your own tier. 1 MV energy does most of the useful recipes. 2 MV energy or 1 HV energy hatch will cover almost all the rest except pollution or acetone.\n\nYou will need 1 input hatch, and at least 5 output hatches. An output bus will capture any solid outputs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1126,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":40,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30740,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":769,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":573,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPlaying with dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine will help you turn dust into crystals which you will need for high tier recipes. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":573,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemDust2","Count":9,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":770,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":213,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAvengers, Assemble! 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You know what this does. :D"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":213,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":771,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":571,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDust to crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use the autoclave to crystallize your dust. You can make raw carbon mesh out of carbon dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":571,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":772,"preRequisites":[1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":593,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPrecision is required","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will use this a lot to make high tier circuits, and for other recipes"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":593,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24532,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":773,"preRequisites":[771,759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPartCarbonMesh","Count":24,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay one: Raw carbon mesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This way of making carbon requires autoclaving 4 carbon dust. You can use polyethylene which gives you only 1 raw carbon fibre at LV tier, polytetrafluoroethylene gives you 2 at MV Tier or go for the best way: molten epoxid which yields 4 at HV Tier. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonFibre","Count":48,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonMesh","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11473,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":774,"preRequisites":[731,771],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.BioOrganicMesh","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay two: Bio Organic Mesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If want to save the ecosystem you can autoclave 16 plantballs to get raw bio fiber with the following liquids:\n\n§4-Biomass 33% chance\n-Methanol 50% chance\n-Fuel 90% chance\n-Nitro-diesel 100% chance\n\n§rHowever, making carbon plates this way will require an electric blast furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.RawBioFiber","Count":48,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.BioOrganicMesh","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":775,"preRequisites":[692,778],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CarbonPartChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon parts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These are the first parts you will need for your beloved nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CarbonPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCarbonMesh","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":776,"preRequisites":[775,797,796],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemNightvisionGoggles","Count":1,"tag":{"charge":200000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Seeing things brighter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano helmet is a bit special. It will provide you with night vision as long as you have energy! Don't turn it on in bright areas or you'll be blinded!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemNightvisionGoggles","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":777,"preRequisites":[775,769,772],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoCrystal","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are those green diamonds? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They may not be green diamonds but they are needed for your nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":778,"preRequisites":[773],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPartCarbonPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§7§6§lCarbon Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Carbon plates are needed for the nano armor. Go check out the armor chapter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11473,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":779,"preRequisites":[777,775,776],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorNanoChestplate","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon skin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can stop worrying about some mobs for now. This will help you survive a bit and will give you some of that SWAG. Your journey doesn't stop here traveller, as quantum armor awaits you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoHelmet","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoChestplate","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoLegs","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoBoots","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":780,"preRequisites":[774],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.BioCarbonPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOrganic Way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bio carbon plates are made out of raw carbon mesh. Put it in the electric blast furnace to make carbon plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.BioCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:cube","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:coal_block","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":781,"preRequisites":[77,717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1159,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lStill not enough charcoal?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This oven is the best way to get charcoal and creosote (x50 faster than Railcraft's coke oven) and other byproducts. You will need tons of bronze, iron and steel to build it, but it's worth it. Finally, it will be possible to dismantle the charcoal pit.\nWith Cupronickel coils the oven is a bit slower. Each coil tier speeds up the charcoal production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:gt.blockcasingsNH","Count":66,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1159,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""},{"id":"dreamcraft:tile.TripleCompressedCharcoal","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":782,"preRequisites":[760],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMonocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make wafers, you need to make monocrystalline silicon first. The process takes 450 seconds and requires silicon dust and gallium arsenide dust in the electric blast furnace. You can make 16 wafers out of every boule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":1980,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32030,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":980,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":783,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1131,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWe need big toys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All your little turbines take up too much space? Are you running out of water? It is time to solve these problems. This large turbine can help you produce a tremendous amount of energy. It will also distill water for you, so you can use the same water again inside your large boiler. Don't forget to make a rotor for the turbine. \n\nMake sure you provide the optimal flow of steam using a fluid regulator. Don't exceed your dynamo hatch's EU rating, or it will explode! For HV you will probably want an IC2 fluid regulator. Above HV you can use the fluid regulator covers.\n\nTurbines with a small turbine durability below 75k have their recipes removed. Use NEI with the appropriate long rod to find assembler recipes that will work for you. Long magnalium for small turbines, long titanium for normal turbines, etc.\n\nPre-moon, the best rotors are small ardite or vibrant alloy. Remember to disassemble rotor blades before they break to recover the materials.\n\nPost-moon, the best HV rotors are normal damascus or blue steel. Risk-takers can try ultimet but you must not provide optimal flow since it will give 517 EU/t, blowing up a single amp dynamo. Luckily turbines are now fully functional with multi-amp dynamos, so give those a try if you need extra amps!\n\nFor additional choices, see the Large Turbine Calculator in Discord."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":30,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1131,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":170,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:tile.TripleCompressedCharcoal","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":784,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIt's time to get more steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As soon as you have the ability to store energy in large quantities, it would be necessary to have a way to generate energy in large quantities. You need a large bronze boiler. But in order to make this boiler, you will need a mountain of bronze. This boiler produces 800 liters of steam per tick. This is enough to run 10 basic steam turbines.\n\nThe large boiler can use either water or distilled water. Water is consumed at a rate of 1L of water per 150L of steam.\n\nTo make a large boiler you must make a 3x3x5 structure with Bronze Pipe Casings in the center of the middle 3 levels. The lowest level must contain at least 1 or 2 input hatches, 1 or 2 input buses, 3 or 4 fireboxes, 1 muffler, and one maintenance hatch. The lowest level can not contain any plated bricks. All hatches, buses, and mufflers must have their back side touching a firebox. The output hatch can be placed on any of the upper 4 levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":5,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":32,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":61,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":71,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":91,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:tile.DoubleCompressedCharcoal","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":785,"preRequisites":[752],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTransistor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next tier we need advanced circuits. To create some advanced circuits, you need some transistors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19057,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":32717,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32719,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":786,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1021,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSteam is never enough","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can make advanced circuits, which means it's time to build a large steel boiler. This boiler is one and a half times more efficient than a bronze one, and that means we need 5 more steam turbines. Don't forget to monitor the water level!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":4,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1021,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5134,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":787,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1022,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMoooooore steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stock up on titanium, it will be fun. A large titanium boiler produces 1600 litres of steam per tick. For this amount you need to choose the right rotors for your turbines. For example, 2 normal damascus steel rotors will be just right. Optimal flow for such rotor is 800 liters per tick. Make a fluid regulator in the assembler to control the flow rate. If you have more than one boiler, you will need to make calculations in order to select the appropriate rotors. Make sure your dynamo hatch is capable of accepting all the EU, or it will explode!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":3,"Damage":3,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1022,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":14,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":788,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEven more steam? Are you sure?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This boiler is the most efficient source of steam. It allows you to produce as much as 2000 litres of steam per tick. If you need more, then build a dual or even quad boiler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":3,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1023,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:tile.QuadrupleCompressedCharcoal","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":789,"preRequisites":[769],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatCrystal","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnergy Crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Make energy crystals out of ruby and redstone dusts in the MV mixer. Energy crystals can store 1 million EU and work as an HV battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemDust2","Count":36,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemBatCrystal","Count":4,"tag":{},"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":790,"preRequisites":[789],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNano Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nano crystals are used for making the nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatCrystal","Count":1,"tag":{},"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32719,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":791,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":592,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Precision Laser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits need an MV precision laser. Let's craft one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":592,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":792,"preRequisites":[782],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some silicon wafers, put the monocrystalline silicon boule in a cutting machine. It would be better to immediately make the MV version because you will need it later for RAM, IC's and other chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":252,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":793,"preRequisites":[794],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32079,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGood Integrated Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits have three variants. For the advanced circuits you need the good integrated circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32701,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32079,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32716,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":794,"preRequisites":[795,837],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIntegrated Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are two variants of basic circuits. The basic circuit from IC2 or the integrated circuit which needs a circuit assembling machine to be made. The good integrated circuit needs two integrated circuits to be crafted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32701,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32715,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":795,"preRequisites":[717,530,529],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1180,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits require an LV circuit assembling machine. Basic ones can be made much more efficient with this machine. Let's craft one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1180,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11345,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":796,"preRequisites":[794,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.sensorLens","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sensor lens","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The night vision goggles need special sensor lenses to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28308,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.sensorLens","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemBatCrystal","Count":1,"Damage":26,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":797,"preRequisites":[794,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Heat Exchanger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The night vision goggles need advanced heat exchangers to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"IC2:reactorHeatSwitchSpread","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:reactorHeatSwitchDiamond","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":798,"preRequisites":[236,234,235],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron capped Greatwood Wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making a gold capped greatwood wand requires 35 vis, but your old wand's limit is 25. So first create an iron or copper capped greatwood wand and then create a gold capped greatwood wand.\nMake sure you use NEI 'U' command on the wand caps to find the correct GT:NH recipe for the wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"ordo":0,"perditio":0,"aer":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":799,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't try to dive with it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining a scuba helmet with a nano helmet in an assembling machine will give you a nano scuba helmet. You'd better not try to dive with it because you can't. It is a part of the new quantum suit helmet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoHelmet","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":800,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plated Leggings - Better not try to wear it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining stainless steel platings with some nano leggings in the assembler gives you nano plated leggings. Better not try to wear them because you can't. They are part of the new quantum suit leggings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoLegs","Count":1,"Damage":27,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":801,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't try to walk with it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining some rubber boots with nano boots in the Assembler gives you Nano Rubber Boots. Better not try to put them on because you can't. They are part of the new quantum suit boots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoBoots","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":802,"preRequisites":[799,801,800,654],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iridium Plated","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plating all your armor parts with iridium alloy casings gives them a better durability. Before you can wear these quantum armor parts you need to activate them with some quantum crystals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.IridiumAlloyItemCasing","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"GraviSuite:advNanoChestPlate","Count":1,"tag":{"toolXP":0,"charge":0,"toolMode":0},"Damage":27,"OreDict":""},{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmetEmpty","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartIridium","Count":4,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":803,"preRequisites":[802,804],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The quantum armor is a high tier and very durable armor with a lot of features like night vision, fall damage reduction and running very fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32706,"OreDict":"circuitMaster"},{"id":"gregtech:gt.blockmachines","Count":20,"Damage":1662,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32597,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32644,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":32604,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":32673,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemArmorQuantumHelmet","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumLegs","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumBoots","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32604,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":804,"preRequisites":[802,807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum crystal ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The quantum crystal is needed to turn quantum armor parts into wearable quantum armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":805,"preRequisites":[789,1406],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.LapotronDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lLapotron Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lapotron crystals require you to mix your energium dust with some lapis dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2526,"OreDict":""},{"id":"IC2:itemDust2","Count":48,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":806,"preRequisites":[805,808],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatLamaCrystal","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lLapotron Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new HV mixer you can make lapotron dust. Place it in an autoclave to make some raw lapotron crystals. With an EV assembler and advanced circuits you can make lapotron crystals which store up to 10 million EU.\n\n§4Hint: Nei shows only ic2 advanced circuits in recipe but all advanced circuits works."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LapotronDust","Count":120,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCircuitAdv","Count":8,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"dreamcraft:item.RawLapotronCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32714,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":807,"preRequisites":[1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuantum Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your quantum armor you need some quantum crystals. Place a lapotron crystal in your precision laser to get a quantum crystal "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.LapotronDust","Count":60,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":808,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":583,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMixing at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High Tier dusts need HV Mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":583,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11367,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11366,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":809,"preRequisites":[831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"NASA Workbench aka Dire Crafting Table","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Avaritia 9x9 dire crafting table replaces the NASA workbench. It is required to craft all rockets and high tier equipment. First of all you need 81 crafting tables to make a double compressed crafting table, a few HV components, wafers and a crystal matrix. And yes, you do need nether stars. Hint: Check out the nether star recipe which uses null catalyst and salis mundus. Null catalyst can be duplicated by adding magma cream, blaze powder and a tiny pile of nether star dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:crafting_table","Count":81,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Avaritia:Triple_Craft","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":144,"Damage":17500,"OreDict":""},{"id":"dreamcraft:item.StainlessSteelBars","Count":36,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:nether_star","Count":18,"Damage":0,"OreDict":""},{"id":"Avaritia:Resource","Count":36,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Avaritia:Resource","Count":9,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Avaritia:Crystal_Matrix","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32642,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":130,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":810,"preRequisites":[812,813,814,815,816,819],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of hard work and a few stacks of TNT your first rocket is finally ready. But before you can go to the Moon you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":3,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":22,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":811,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. You can craft the first one using a data circuit and a compressed steel plate in a hv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":812,"preRequisites":[80,809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 36 of these plates out of compressed aluminium plates, compressed bronze plates and compressed steel plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":10,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":148,"Damage":26306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":37,"Damage":32462,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":37,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":813,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Nose Cone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2.inv","Count":1,"Damage":14,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":814,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.rocketFins","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":815,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. Better craft two, because the Moon lander needs one also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32731,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":2,"Damage":14,"OreDict":""},{"id":"GalaxySpace:item.CompressedSDHD120","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":816,"preRequisites":[815,817,818],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon lander is required for a soft landing.\nYou will need an additional frequency module for hearing things on planets and a second seat for a Moon buggy you may build later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":3,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":817,"preRequisites":[809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.buggymat","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Buggy Seat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The buggy seat is part of the Moon lander and the Moon buggy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":10,"Damage":9,"OreDict":""},{"id":"IC2:blockRubber","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.buggymat","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalaxySpace:item.CompressedSDHD120","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":818,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":19,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frequency Module","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The frequency Module will help you hear sounds properly while in space (it's also used with the telemetry unit so that your buddies can keep track of you from your base, if you are playing with friends). You need it in your inventory and in the Moon lander."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32692,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"GalacticraftCore:item.battery","Count":2,"tag":{"electricity":0},"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":819,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Small Fuel Canister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 1 rocket you need to craft two of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleSmallCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.CompressedDualAluminium","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.CompressedDualBronze","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":820,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.landingPad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Launch Pad","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a launch pad. Build a 3x3 launch pad and place your rocket on top of it.\n\nMake sure you don't have any lightning warp effects or you'll be really sad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":9,"Damage":11,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":9,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.landingPad","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":821,"preRequisites":[827],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.fuelLoader","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To pump fuel into your rocket you need a fuel loader. Place it right next to the middle of any side of the launch pad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5132,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.fuelLoader","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":822,"preRequisites":[823],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenGear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Gear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oxygen gear is used to attach oxygen tanks to the oxygen mask. This is absolutely vital for any astronaut."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":5,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenGear","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockAlloyGlass","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":823,"preRequisites":[795,809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenMask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Mask","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen mask is part of the system used to breathe on planets without oxygen, the others being oxygen gear and oxygen tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ReinforcedGlassPlate","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenMask","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockAlloyGlass","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":824,"preRequisites":[823,822],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Light oxygen tank is an oxygen storage tank that can hold up to 900 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank. I recommend making the medium tanks and using the light tanks as spares to return to base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":14,"Damage":8,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":2,"Damage":900,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":825,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockOreCopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can be found between y levels 5 and 60 either as \"Copper Ore\" or \"Chalcopyrite\". Most of the time you'll find it together with \"Iron\" and \"Pyrite\".\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in NEI and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":24,"Damage":855,"OreDict":"oreChalcopyrite"},{"id":"gregtech:gt.blockores","Count":24,"Damage":35,"OreDict":"oreAnyCopper"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:oreBerries","Count":5,"Damage":2,"OreDict":""},{"id":"harvestcraft:footlongItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":826,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lIron Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With iron tools, you are able to mine most of the Overworld ores. I think you already found iron or magnetite. So bring me some ores and make some iron ingots out of them.\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in nei and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":917,"OreDict":"oreBandedIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":32,"OreDict":"oreIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":870,"OreDict":"oreMagnetite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":931,"OreDict":"oreYellowLimonite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":930,"OreDict":"oreBrownLimonite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:oreBerries","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":827,"preRequisites":[819],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For every flight the rocket needs some fuel. So refine some fuel and fill some fuel canisters. \nYou can use Fuel or Rocket Fuel from Ender IO."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":8,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":828,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Collector","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen collector is a block that gathers oxygen from leaves and farm plants to use in an oxygen bubble distributor, oxygen sealer, oxygen compressor, and other oxygen-reliant machines. If you plan to build a Moon base, which needs a continuous oxygen supply, you will need to build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1587,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":829,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen compressor is used to fill empty or depleted oxygen tanks. Connect an oxygen pipe to the blue ring input side and a power source to the grey square input side. Place an oxygen tank in the bottom right slot and it will take oxygen from the input and place it into the tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.oilCanisterPartial","Count":1,"Damage":1001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32642,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":830,"preRequisites":[822],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Parachute","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A parachute is used to prevent death upon re-entry into the Overworld's atmosphere. The parachute is an essential part of your journey to space. You should never journey into space without it. There will even be a warning if you try to launch without one on you.\n\nUse the assembler to save materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:wovencottonItem","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.canvas","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":19305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.canvas","Count":6,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32415,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32418,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32416,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32425,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":831,"preRequisites":[832],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced wafer is used for more advanced machines such as the advanced solar panel or the Avaritia dire crafting table. It is also used in the creation of a space station."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32034,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":832,"preRequisites":[160,795,102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic wafer is used for creating basic machines such as the basic solar panel, the fuel loader, the energy storage module and the compressor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32033,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":12,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32033,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":833,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purge your warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The warp you have accumulated over time is starting to become a problem. Making bath salts to clean off the warp is only a temporary solution. To truly get rid of it, you need something more powerful, a pure tear. If you collect a few things for me, I will give you one. Think wisely about using it, since it's a very long journey to unlock it through research."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:nether_star","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":10,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11317,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":16,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":29500,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":7,"OreDict":""},{"id":"minecraft:ender_eye","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"alienis"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"permutatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"praecantatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"sano"}]},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":834,"preRequisites":[66],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lCircuit Boards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For every circuit you need a basic circuit board. Craft a coated circuit board and use copper wire to finish it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17809,"OreDict":""},{"id":"IC2:itemHarz","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32710,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32710,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bread","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32710,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":835,"preRequisites":[67],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32716,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§4§3§lResistor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every basic circuit needs two resistors to work"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1360,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2535,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32716,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:blueberrysmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":836,"preRequisites":[542],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2980,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGallium Arsenide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The diode requires gallium arsenide and you may be wondering how to get gallium or arsenic this early in the game.\n\nSphalerite dust in an electrolyzer is the primary source of gallium at this tier. \nYou can also get gallium out of crushed zinc ore by using a thermal centrifuge. You can find the small zinc ores in the Overworld or the in the Nether at Y Level 80 - 210. To get additional crushed ore, use a Tinker's Construct tool with the Luck (Fortune) enchant on it - apply a lot of Lapis. \n\nYou can get arsenic from realgar small ores in the Nether at Y level 5 - 85. Centrifuge the dusts in a centrifuge. Other sources are Tinker's Construct cobalt ore in the nether and cobaltite ore in the Twilight Forest.\n\nYou need to level up your obsidian level tool, use a alumite tool, or make an Ironwood Pickaxe to harvest cobalt ore.\n\nAnother nice way to get gallium and arsenic is with XP buckets in a crafting grid.\n\nMix those two dusts in a mixer to get gallium arsenic dust.\n\nIn the nether it is easier to use a GT miner near the ceiling to get all the ores you need."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2039,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2980,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2039,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":837,"preRequisites":[791],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32038,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lILC and RAM","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits need integrated logic circuits and random access memory chips.\nYou can get those by cutting the ILC and RAM wafers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32036,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32038,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":838,"preRequisites":[785,793],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next tier we need advanced circuits. To make an advanced circuit, you need good integrated circuits, RAM, an integrated logic circuit, and transistors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28308,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":839,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32498,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHandle tiny piles like a K1ng","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Don't you hate having to manually compress all those tiny piles ? Well, let me show you how to automate that. A combination of typefilter, chest buffer (or super buffer in HV) and packager frees you from that annoying task. The chestbuffer can hold up to 9 stacks of tiny piles and the super buffer can hold 256 stacks of tiny dusts, which is more than enough. You can set its mode with a screwdriver on the output side. Set it to 9 to export 9 tiny piles at a time and let the packager compress these into regular dusts.\n\nSuper buffers can be lag sources, so be careful to keep them as empty as possible. If you are using a multiblock packager, be sure to change the buffer from Stocking mode to Transfer Size mode."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":9251,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":9231,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32498,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":401,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemItemConduit","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1386,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":840,"preRequisites":[643,641],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30644,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lButane and Propane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can distill a lot of different gases out of your \"refinery gases\".\nMethane, butane, propane, helium and ethane.\n\n§4Hint:\nRefinery gas is not the best source for Propane and Butane. Better refine those out of naphtha."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30643,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30644,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":841,"preRequisites":[850,851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30639,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTetranitromethane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bio diesel and diesel can be boosted using tetranitromethane. Ethenone and nitric acid are required to make tetranitromethane in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30653,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30641,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30639,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30629,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":842,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMethane Gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Methane gas with a burn value of 104,000 EU per cell can be burned in the gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30691,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":843,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30673,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Methanol with a burn value of 84,000 EU per cell can be used to make biodiesel and other fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30673,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":844,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ethanol with a burn value of 192,000 EU per cell can be used to make biodiesel and other fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30706,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":845,"preRequisites":[843,844,849,848,1544],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30627,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBio Diesel Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With ethanol or methanol and seed oil or fish oil you can make bio diesel. Burn value is 256,000 EU per cell. Diesel and bio diesel are needed for cetane-boosted diesel.\n\nYou get some glycerol as by-product. Save it so you can make glyceryl trinitrate for your dynamite or for your future epoxid production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30627,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30627,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30691,"OreDict":""},{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":846,"preRequisites":[550,126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lO like Oxygen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oxygen can be made in several different ways. Most commonly you'll either electrolyze it out of cassiterite sand, sugar from sugar canes or sugar beets, water, or various other oxygen-rich dusts, or centrifuge it from brown or yellow limonite dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":91,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2930,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2931,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":847,"preRequisites":[1744],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can make ethylene many different ways\n\n- Ethanol and sulfuric acid in a Chemical Reactor \n- Ethanol in a Chemical Dehydrator\n- Distilling various gases (i.e. wood gas) in a Distillery\n- Cracking Naphtha, fuels or refinery gas with hydrogen or steam in the Chemical Reactor will work too. Check NEI or the Game Mechanics Spreadsheet at http://bit.ly/gtnh-datasheets for details"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemBiochaff","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":848,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:fluid.seedoil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSeed Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make some bio diesel you need seed oil or fish oil and mix that with ethanol or methanol. Seeds give seed oil and fish produce fish oil when placed in a fluid extractor.\n\n§4Pam's peanuts are a good seedoil source. Another option is Forestry Butternuts. Or you can use IC2 crops to get Rapeseed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30713,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30711,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":849,"preRequisites":[543,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2685,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lSodium Hydroxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Make some sodium hydroxide. You can make it out of sodium (or out of salt water once you reach EV).\n\n§5§4The by-product hydrogen can be burned in a gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2017,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2685,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2017,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":850,"preRequisites":[852,893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthenone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hopefully you saved some sulfuric acid during your fuel production. Together with acetic acid you can make ethenone.\nCraft an advanced chemical reactor to get access to more advanced recipes.\n\nSave the ethenone for HV, you will need it to make tetranitromethane for cetane boosted diesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30670,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30691,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":851,"preRequisites":[846,853],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30653,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitric Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nitric acid can be made out of water, oxygen and nitrogen dioxide."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":12,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30717,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":852,"preRequisites":[847,846],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30670,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAcetic Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Acetic acid can be made out of oxygen and ethylene. Alternatively, it can be made out of biomass, wood vinegar or vinegar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30670,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":853,"preRequisites":[846,855],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitrogen Dioxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make nitrogen dioxide you need to combine oxygen gas and nitric oxide in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30658,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30717,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":854,"preRequisites":[550,555,943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAmmonia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nitrogen and hydrogen... Ammonia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":78,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30012,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30659,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":855,"preRequisites":[846,854],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30658,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitric Oxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make nitric oxide you need to combine oxygen and ammonia in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30658,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":856,"preRequisites":[857,858,2293],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§l1,1-Dimetylhydrazine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make 1,1-dimethylhydrazine you need to combine some dimethylamine and chloramine in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30655,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":857,"preRequisites":[854],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimethylamine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining ammonia and methanol in a chemical reactor produces some dimethylamine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30673,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30659,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":858,"preRequisites":[854,859],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChloramine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining hypochlorous acid and ammonia in a chemical reactor produces some chloramine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30659,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":859,"preRequisites":[126,1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lHypochlorous Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hypochlorous acid requires water, chlorine and some mercury."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30087,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":860,"preRequisites":[1012,1424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11028,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lTitanium finally","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rutile, chlorine and carbon dust makes Titaniumtetrachloride. Combining this with Magnesium in an HV EBF will give you hot Titanium ingots. Freeze those and you will get your first titanium.\nOn the Moon if you are lucky you can find Ilmenite ore which make the processing of Titanium a bit easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":12028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":861,"preRequisites":[1244,1891],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11316,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lTungstensteel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is needed for the next tier. Tungsten can be found on Mars or in Moon stone dust. Mix that with some steel dust. Smelt it at 3000K (requires nichrome coils) in an electric blast furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11316,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":862,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:ShortBow","Count":1,"tag":{"InfiTool":{"BaseDurability":57,"BaseAttack":2,"DrawSpeed":16,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":57,"MiningSpeed2":150,"BaseDrawSpeed":16,"Head":0,"Attack":2,"Handle":0,"Broken":0,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":3,"Modifiers":0},"display":{"Name":"Wooden Shortbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first bow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since vanilla bows are only craftable in the assembling machine and mobs do not drop them very often you have to make a Tinkers bow. Wood would be the best material for now. So craft the bow limbs out of wood and the bow string out of strings. The arrow that has the most durability is bone, so craft the stick out of bone. It is much lighter but less durable than a regular arrow. Use a flint tip to make it repairable with flint.\n\n§4You can repair your bow the same way as all the other Tinkers tools. Arrows can be regained by repairing them or picking them up from the floor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:Pattern","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":25,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":3,"Damage":0,"OreDict":"plankWood"},{"id":"minecraft:bone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:fletching","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:BowLimbPart","Count":2,"Damage":0,"OreDict":""},{"id":"TConstruct:bowstring","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:ShortBow","Count":1,"tag":{"InfiTool":{"BaseDurability":57,"BaseAttack":2,"DrawSpeed":16,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":57,"MiningSpeed2":150,"BaseDrawSpeed":16,"Head":0,"Attack":2,"Handle":0,"Broken":0,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":3,"Modifiers":0},"display":{"Name":"Wooden Shortbow"}},"Damage":0,"OreDict":""},{"id":"TConstruct:ArrowAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000029802322,"BaseDurability":107,"BaseAttack":2,"ToolEXP":0,"HarvestLevel":1,"RenderHead":3,"ModDurability":0,"Shoddy":0,"RenderHandle":1,"Accuracy":95,"Accessory":0,"MiningSpeed":400,"Unbreaking":0,"Damage":0,"BonusDurability":0,"TotalDurability":107,"Head":3,"Attack":2,"Handle":1,"Broken":0,"Mass":3.125,"Ammo":11,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Flint Arrows"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bone","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":863,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Javelin","Count":1,"tag":{"InfiTool":{"BaseDurability":35,"ExtraAttack":44,"BaseAttack":6,"ToolEXP":62,"Built":1,"ExtraSmite":20,"ExtraLuckLooting":33,"HarvestLevel":4,"RenderHead":14,"ModDurability":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":35,"Head":14,"Attack":6,"Handle":14,"Broken":0,"Ammo":7,"RenderAccessory":14,"ToolLevel":1,"RepairCount":1,"Modifiers":0},"display":{"Name":"Bronze Javelin"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBronze javelin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The bronze javelin is a bit expensive and has only 7 throws, yet it is a good mid-range weapon. With one bronze ingot you can replenish your stack of javelins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":25,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toughRod","Count":2,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:Javelin","Count":1,"tag":{"InfiTool":{"BaseDurability":35,"Head":14,"BaseAttack":6,"ToolEXP":0,"HarvestLevel":4,"Attack":6,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Ammo":7,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":35},"display":{"Name":"Bronze Javelin"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32241,"OreDict":""},{"id":"TConstruct:materials","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":864,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:ThrowingKnife","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":1,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Ammo":12,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Throwing Knife"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first flint throwing knife","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Is the bone bow too expensive for your taste? Then make a flint throwing knife instead. You need flint and a stick to get 12 knives. The durability and the attack damage are very low but it still helps with killing mobs from a safe distance."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":12,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:knifeBlade","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:ThrowingKnife","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":1,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Ammo":12,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Throwing Knife"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":865,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_bars","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMonster trap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're lucky you spawned in a sand or rainforest biome and find some quicksand. Collect a stack of the stuff, dig a small ditch and fill it with the quicksand to protect your \"dirt base\" home. Just don't fall in!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mud","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:torch","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":866,"preRequisites":[97,667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All the different mining veins that have been found seem to be really far apart. One way to shorten the travel time is to create a railroad from your base to the different mines. Sadly this requires a large amount of both iron and creosote. Let's not forget to place the last symbolic rivet on one of your new train lines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:rail","Count":512,"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.buffer.stop"},"Damage":32363,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:rail","Count":128,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":60,"Damage":0,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":867,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLapis, Lazurite, Sodalite, Calcite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to make your bricked blast furnace you need to find a lapis vine containing calcite.\nYou can find the vein in the overworld or the Twilight Forest at Y 20-50."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":526,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":524,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":823,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32244,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2934,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":868,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2934,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§3§lGypsum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make bricks for the blast furnace you need concrete and gypsum. Gypsum can be found in a vein together with basaltic and granitic mineral sand, and fullers earth. Y 50-60 and only in the overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":935,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":936,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":928,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":934,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:gingerbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pumpkinbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2934,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2823,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":869,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSifting Machine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need flawless or exquisite diamonds, emeralds, rubies or other gems? Well then it's time for you to make a Sifting Machine.\n\nYou can find small Zinc ores (look in NEI) or you can search the Nether for Sphalerite.\n\nYou'll need either an Ore Washer or Simple Ore Washer since the Sifter only takes purified ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6535,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":870,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSmelt all the things...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smelting up to nine items at once? With a bit of steel you can make a railcraft Steam Oven. 2x2x2\n\nHint: All furnace recipes work just fine, but you cannot use it to make charcoal from wood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":104,"OreDict":""},{"id":"Railcraft:machine.beta","Count":8,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":8,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":8,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":871,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32307,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lMolds, molds, molds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make steel and have a tinkers smelter you have to make molds. Molds can be used in the alloy smelter and the fluid solidifier. You need them to make vacuum tubes, ingots, gears and more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32302,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32307,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32309,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":872,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:maplesyrupItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Maple Syrup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You spent hours and hours to find some maple trees? Why not use your forest ranger coins to buy some syrup? Add some spruce saplings and plant some maple trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:pammapleSapling","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":873,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:rhubarbseedItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Seed Bags","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finding some special \"pams harvest craft\" seeds can be very difficult. With your farmer coins you can buy some seedbags."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":35,"OreDict":""}]}]},{"questID":874,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.pad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Jetpack v.0.1 Alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you like flying? Ok then, make a slimy bouncepad and enjoy the good view."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:slime.gel","Count":3,"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:slime.channel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:slime.pad","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:slime.gel","Count":4,"Damage":2,"OreDict":""},{"id":"TConstruct:slime.sapling","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":55,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":875,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSlime Island Journey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rubber trees are not the only source for raw rubber. Go and find a slimy island high in the sky. Slime balls and slime leaves give raw rubber too.\nMake some slime tree farms beside your rubber farm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:CraftedSoil","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:slime.sapling","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:strangeFood","Count":4,"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_sword","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:ladder","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":876,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1169,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBring me my vat of polyethelyne!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of using small cells to process chemicals? Build a Large Chemical Reactor and you can just pipe in and out fluids. Or use the glorious large fluid cells to deliver and remove fluids from the hatches. \n\nBe careful, if the output hatches are full, the reactor will void any extra products!\n\nSome of the old recipes can now be done simply in the LCR, btw.\n\nThe LCR also counts as a cleanroom for any cleanroom recipes.\n\nYou will also need:\n1 Maintenance Hatch\n1 Energy Hatch\n1 Input Bus\n5 Output Bus\n5 Input Hatch\n5 Output Hatch"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1169,"OreDict":""},{"id":"gregtech:gt.blockcasings8","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings8","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32408,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":877,"preRequisites":[879],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood","sceptre":1},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scepter with 75 vis capacity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A scepter is crafted from a wand core, a primal charm, three wand caps, a twilight forest monster mob drop, and some screws. Any sort of core or cap may be used, but the caps must match each other. A scepter cannot hold a focus, but holds 150 percent as much vis as a wand with the same core, and gives an additional 5 percent discount for costs, beyond any discounts from its caps or the user's worn equipment. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LichBone","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood","sceptre":1},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":878,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic Staff Core","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A staff requires an extra step for crafting: Two (matching) wand cores must be combined with a primal charm, and crystal clusters to produce a staff core. (While the recipes are all similar, each type of staff core requires a separate research topic to be learned.) "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":879,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Primal Charm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new 50 vis wand you are able to make a Scepter which holds up to 75 vis.\nFirst you need some primal charms which cost 50 vis to craft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28351,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCrystal","Count":4,"Damage":6,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":880,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":66,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Witch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. What's cooking?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":66,"OreDict":""}]}]},{"questID":881,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":57,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Pigmen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Do you want some bacon?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":57,"OreDict":""}]}]},{"questID":882,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Blaze","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me warm you up a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":61,"OreDict":""}]}]},{"questID":883,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":62,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magma Cube","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely, and bouncy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":62,"OreDict":""}]}]},{"questID":884,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Enderman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Don't look me in the eyes!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":58,"OreDict":""}]}]},{"questID":885,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":59,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Cave Spider","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me sing itsy-bitsy spider for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":59,"OreDict":""}]}]},{"questID":886,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ghast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. At least you're not a big cry-baby?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":56,"OreDict":""}]}]},{"questID":887,"preRequisites":[878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Wizard's Staff has a Knob on the End","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Join the core with two wand caps, a twilight forest mob drop, and screws just as for making a wand. A staff cannot be used for crafting, but holds 250 percent as much vis as a corresponding wand. It can even serve as a backup weapon for melee. While it cannot receive weapon enchantments, its damage is decent, and it does not take damage with use (no durability bar)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":888,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":60,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Silverfish","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me be as annoying as possible."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":60,"OreDict":""}]}]},{"questID":889,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magma Cube","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Wanna bounce?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":5,"Damage":56,"OreDict":""}]}]},{"questID":890,"preRequisites":[16],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lBetter Tank... ULV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 32 buckets in a tank. The ULV Tank from Gt++ needs steel plates, iron plates, tin plates, a clay pipe, and a water bucket."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":817,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":30768,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":891,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Tank... LV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 64 buckets in a tank. The LV Tank from Gt++ needs steel plates, iron plates, bronze plates, a huge clay pipe, and an LV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":892,"preRequisites":[891,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Tank... MV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 128 buckets in a tank. The MV Tank from Gt++ needs steel plates, darksteel plates, bronze plates, a bronze pipe and an LV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":819,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":893,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #2 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second item you'll need a lot of in MV tier. When you want to get fluid out of tanks you'll need one. \n\n§4Hint: Goes pretty well with fluid pipes or GT machines, adjust with a screwdriver. It can also be upgraded further into a fluid regulator which allows precise control of fluid transfer speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32611,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5134,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":894,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter Tank... HV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 256 buckets in a tank. The HV Tank from Gt++ needs aluminium plates, darksteel plates, vacuum tubes, a steel pipe, and an MV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":820,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":895,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32631,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #1 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first item you'll need a lot of in MV too. If you want to pull items out of chests or barrels you'll need one. \n\n§4Hint: Goes pretty well with item pipes or GT machines, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32631,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":896,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #3 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An electric piston for your MV machines. The third item you are going to craft a lot of in the future."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":897,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #4 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fourth item you'll need a lot of in MV, which is also a pain to craft. Arguably the most painful item ever. \n\n§4Hint: Works like a conveyor but can work with selected item slots. Adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":898,"preRequisites":[890,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":767,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSimple Ore Washer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Too lazy to make an ore washer, yet bored with your non-automatable cauldron? Then the simple washer is the machine for you! It works reasonably fast and uses only 8eu max - make sure you don't provide too much voltage! Ok, so you do not get any byproducts, but who cares!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":899,"preRequisites":[409],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paying the highest price","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A tier 2 blood altar needs 8 runes placed around the altar. Your new altar can hold more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":900,"preRequisites":[901],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Don't look it in the eyes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bad things may happen if this creature is allowed to stay alive. The ores in its cave are valuable anyway."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Hydra","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":901,"preRequisites":[903],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.meefStroganoff","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"I don't even...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ok so there is this maze. And there are... minotaurs. But what in the world is a minoshroom?"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Minoshroom","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":902,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"A big ugly snake","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Required for your first wand and in general, an ugly creature."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Naga","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":903,"preRequisites":[902],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Adventure time!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stop him before he makes his wish at Prismos'!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Twilight Lich","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":6,"Damage":0,"OreDict":""}]}]},{"questID":904,"preRequisites":[900],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.phantomHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Who you're gonna call?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Phantom Busters! Or wait... Ah whatever. They drop good armor by the way."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Knight Phantom","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":905,"preRequisites":[904],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"The big fluffy crybaby","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It flies, it makes funny sounds, and .. IT'S SO FLUFFY! Well, kill it."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Tower Ghast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":906,"preRequisites":[907],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Let her go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It seems the cold doesn't bother her. Committed crimes: None. But... you know... you have to progress somehow..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Snow Queen","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":907,"preRequisites":[905],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.alphaFur","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Yeti. Alpha, Yeti.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wanted: Alpha Yeti. Death. Committed crimes: Violently throwing ice at people, for no reason."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Yeti Boss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":908,"preRequisites":[451],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secret: A nice....","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey, you! I want that lamp. I have something for you in return. You don't need it anyways, do you?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:cleaver","Count":1,"tag":{"InfiTool":{"RenderExtra":9,"BaseDurability":27,"BaseAttack":6,"ToolEXP":0,"Built":1,"Moss":3,"Effect1":4,"HarvestLevel":0,"ModifierTip1":"Moss","RenderHead":9,"ModDurability":0,"Shoddy":0,"RenderHandle":9,"Accessory":9,"MiningSpeed":100,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":27,"MiningSpeed2":100,"Head":9,"Tooltip1":"Auto-Repair","Attack":6,"Handle":9,"Broken":0,"Extra":9,"RenderAccessory":9,"ToolLevel":1,"Modifiers":20},"display":{"Name":"Paper Cleaver"}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":909,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Creeper)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who hasn't experienced this... You think nothing evil, mine a few diamonds, and suddenly, you wake up in your bed, all your items gone. Time to strike back!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Creeper","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":910,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gold_nugget","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Pigman)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\"Zombie Pigman\"? What the hell is going on with you zombies! Maybe you should encase your animals better at night..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"PigZombie","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":911,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Spiders)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eeeek! Wall climbing monsters, gross! Slay them. Quickly! Watch out for the witch spiders, they can give as good as they get."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Spider","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":912,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Skeleton)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Arrows are nice, if you shoot them. If one hits you, well, bad things happen. \n\nHint: Arrows are an excellent source of telum."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Skeleton","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":913,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Blaze)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You should be careful with this task. Fire protection is highly recommended."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Blaze","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":914,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Zombie)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody knows who they are, or where they came from. They're just annoying at night, and too stupid to make a crafting table."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Zombie","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":915,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:enderman_head","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Enderman)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Uh, fancy teleport pearls. You need them. All of them. Now!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{"SMData":{"SMWebImmune":0,"SMArrowRefireMin":0,"SMUnderPressure":0,"SMWaterDamage":0,"SMLeash":0,"SMBurningImmune":0,"SMArrowSpread":14,"SMRegenTick":0,"SMFallImmune":0,"SMWaterPushImmune":0,"SMArrowRange":0,"SMArrowMoveSpeed":0,"SMArmor":0,"SMWaterBreath":0,"SMArrowRefireMax":0,"SMTex":["minecraft:textures/entity/enderman/enderman.png","minecraft:textures/entity/enderman/enderman_eyes.png"],"SMScale":0.9321846,"SMFireImmune":0,"SMArrowDamage":2,"SMPotionImmune":[],"SMRegen":0}},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":40,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.30000001192092896,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":7,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"carriedData":0,"PersistenceRequired":0,"HealF":40,"id":"Enderman","carried":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":6506027634560194000,"Health":40,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27476269499968,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Enderman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":916,"preRequisites":[913,909,914,910,915,912,911,537,985],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Wither)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After collecting a couple of those wither skeleton heads, you feel like you could use some more action. So why not kill a wither? You'll need a ton of nether stars anyway...\n\nKill it twice for something nice."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"WitherBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":3,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":917,"preRequisites":[456],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:heartCanister","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Secret: The trade for life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have been busy my friend. I have something for you. Give me your hearts, and I will magically enhance them so you can actually use them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"betterquesting:extra_life","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:heartCanister","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":918,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Skeleton: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to advance to a higher tier and reach Mars, Deimos and Phobos, you need to make yourself a better rocket. There are rumors that an Evolved Skeleton hiding out on the Moon has schematics of such a device."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Moon","range":-1,"index":0,"dimension":28,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":450,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.4000000059604645,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":450,"id":"GalacticraftCore.EvolvedSkeletonBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":3550669721897671700,"Health":450,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":2977706436292,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedSkeletonBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":919,"preRequisites":[918],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Creeper: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not that regular creepers are nasty enough, no. There is an evolved creeper boss! He is your key (Well he HAS a key...) to reach the next tier of planets (Asteroid Belt, Ceres, Io, Europa, Ganymede, Callisto)."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Mars","range":-1,"index":0,"dimension":29,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":-2,"Name":"tc.mobmod"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftMars.CreeperBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-3749161857075506000,"Health":600,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31694812711759,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftMars.CreeperBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":920,"preRequisites":[919],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"inventory":{},"type":4,"leftTank":{"Empty":""},"rightTank":{"Empty":""}}},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Blaze: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to proceed to Tier 4 Planets, the blaze boss needs to be killed. Find him in one of the dungeons on Ceres."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Ceres","range":-1,"index":0,"dimension":42,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossBlaze","Fuse":30,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-2265408451657568300,"Health":600,"roomCoordsX":0,"Dimension":0,"OnGround":0,"ignited":0,"Air":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24409945973051,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"ExplosionRadius":3,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossBlaze","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":921,"preRequisites":[920],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:misc","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Ghast: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fluffy, fluffier, ghasts! And also big crybabies. This one hides in a dungeon on IO, and holds the key for Tier 5 planets."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"IO","range":-1,"index":0,"dimension":36,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossGhast","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-1940216915570942500,"Health":600,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31541628372871,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossGhast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":922,"preRequisites":[921],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Crystal Boss: Ayyy.. Wait, what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Seriously, a crystal boss? Anyway, it's your key to Tier 6 planets, and he lurks around on Enceladus."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Enceladus","range":-1,"index":0,"dimension":41,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"SkeletonType":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"roomCoordsY":0,"carriedData":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedCrystalBoss","Fuse":30,"carried":0,"ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-6796800124609087000,"Health":600,"roomCoordsX":0,"Dimension":0,"OnGround":0,"ignited":0,"Air":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24491145111402,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"ExplosionRadius":3,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedCrystalBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":923,"preRequisites":[922],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Slime: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Totally looks like a thaumic slime to me. Don't you think so? Find this dude on Proteus."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Proteus","range":-1,"index":0,"dimension":47,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Size":0,"Attributes":[{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossSlime","Motion":[0,0,0],"Leashed":0,"UUIDLeast":7447897214129004000,"Health":600,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31487744687521,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":924,"preRequisites":[923],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Wolf:Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final frontier... A... wolf that is not even an Iron Maiden fan?... What did you expect, a super boss? Heh. No. Budget was too tight..."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Pluto","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":350,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":4,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":5,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":350,"id":"GalacticraftCore.EvolvedBossWolf","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-514555328123248260,"Health":350,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24669862148609,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossWolf","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":925,"preRequisites":[924,908,916,906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeCore","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Technology: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You beat the game, literally. There is nothing left to do, you might want to try real life... But one thing might be interesting for you. You know, just for the phuns. Select one of the totally OP items here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["This! Is OP"]},"Aspects":[{"amount":1000,"key":"instrumentum"}],"nodemod":0,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},{"id":"TConstruct:creativeModifier","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":900100,"terra":900100,"ignis":900100,"cap":"orichalcum","rod":"neutronium","ordo":900100,"perditio":900100,"aer":900100},"Damage":2000,"OreDict":""},{"id":"ProjRed|Fabrication:projectred.fabrication.icchip","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":926,"preRequisites":[410,422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyThaumium","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your altar more powerful you need to upgrade it. You need to build pillars two block high out of blood-soaked thaumium block and on top one block of glowstone blocks on each pillar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:glowstone","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyThaumium","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":927,"preRequisites":[421,430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyVoid","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make tier 4 slates you need a Tier 4 altar. This can be made like the tier 3 altar with pillars out of void-blood-soaked stones four blocks high and a blood brick on top of the pillars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":4,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBloodShard","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:voidBlock","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:largeBloodStoneBrick","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyVoid","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:speedRune","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":928,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make tier 5 slates you need a Tier 5 altar. This can be made with 4 beacons. Beacons have thaumcraft recipes and can be found in the thaumcraft book on the GTNH page."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":929,"preRequisites":[703,702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyIchorium","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The highest tier of the blood altar is tier 6. You need pillars of blood-soaked ichorium 7 blocks high and on top the crystal cluster blocks made out of demon soul shards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":56,"Damage":2,"OreDict":"ingotIchorium"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal8","Count":28,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystal","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyIchorium","Count":28,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":930,"preRequisites":[530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":679,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAuto Mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A miner in LV age? Wow! This nifty machine will find ores for you. Place up to two stacks of mining pipes in the right slots. This machine needs 8 EU/t to work. The miner searches for ores in a 17x17 block work area. Now comes with 2 fortune bonus! Great for gathering additional small ores...\n\nDon't forget to cover it up! These are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":679,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":931,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":680,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAuto Mining MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV miner will find ores for you faster than the LV miner. Place up to two stacks of mining pipes in the right slots. This miner need 32 eu to work. The Miner searches ores in a 33x33 block area and works two times faster than the LV variant. Comes with 4 fortune bonus, great for gathering small ores in the Nether.\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":680,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":932,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAuto Mining HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV miner will find ores for you faster than the MV miner. Place up to two stacks of mining pipes in the right slots. This miner needs 128 eu to work. The Miner searches ores in a 49x49 block area (three chunks wide, perfect for a chunkloader) and works two times faster than the MV variant. It also has a 6 fortune bonus, making it even better for small ores. Recommend taking some with you to the Moon to gather meteoric iron."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":933,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now its time to invest in some renewable energy. Let's start with solar panels. The basic one only gives 1 EU/t. Most GT machines can use them as covers. Be sure to put a glass layer above them in case it rains while you swap panels. You will still want to keep rain off the sides of the machine hull too.\n\n§4The Aluminium Iron plate needs an MV Forming Press."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"IC2:blockAlloyGlass","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"IC2:itemPartCarbonPlate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.AluminiumIronPlate","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":2000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":934,"preRequisites":[933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun 8V","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the ULV one. It generates 8 EU/t. Most gt machines can use them as covers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32750,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17980,"OreDict":""},{"id":"dreamcraft:item.ReinforcedAluminiumIronPlate","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":935,"preRequisites":[933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun 1x1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those single eu panels on a block to make them placeable in the world. Use an MV assembler to combine the panel with a ULV hull."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":936,"preRequisites":[934,206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun at LV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the LV one. It generates 32 EU/t max. Most gt machines can use them as covers. First you need to produce a sunnarium item by using 10 million eu power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17473,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"dreamcraft:item.IrradiantReinforcedAluminiumPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2320,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":937,"preRequisites":[936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun 1x1 LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 32 EU panels on a block to make them placeable in the world. Use an MV assembler to combine the panel with an LV hull, a battery, and a robot arm. Now this panel will clean itself!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32518,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":938,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTreetapElectric","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomated Sticky Resin Farmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are tired of crafting tons of tree taps, how about a machine that uses power but never breaks? Let's craft an electric tree tap!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemTreetap","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemTreetapElectric","Count":1,"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":100000},"Damage":32518,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":939,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemToolHoe","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomated Farmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your hoe must be getting worn out by now. Why not craft an electric one which never breaks?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":4306,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemToolHoe","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":940,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1172,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCleanroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make more advanced circuits you'll need a cleanroom. The cleanroom is a multiblock between 3x4x3 and 15x15x15 (WxHxD) blocks. Besides plascrete blocks for all edges you'll need a controller in the top center, filter machine casings for the rest of the top except edges, an energy and maintenance hatch , a reinforced door and three machine hulls. For now you can use MV tier.\n\nLet's build a 5x5x5 room. Expanding it vertically is easy to do, or you can make it wider and longer, as long as both X and Z match and are odd. Up to 5% of the plascrete blocks can be replaced with Reinforced Glass to see into the cleanroom and check on machines.\n\nYou can pass materials through the walls using Machine Hulls. You can pass 1A of power using Machine Hulls as well, or you can use Diodes to pass multiple amps through walls.\n\nJust be really careful when upgrading you machines. Be sure to remove the machine hulls and diodes and replace them with the new power tier, or else you will be very sad.\n\nIf the Cleanroom has maintenance issues, it will have a chance to void recipes needing a cleanroom. Monitor your cleanroom with a Hand Scanner, Industrial Information Panel, or using a Needs Maintenance Cover and a Redstone Powered Light or Howler Alarm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone_pressure_plate","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemDoorAlloy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockreinforced","Count":82,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":8,"Damage":11,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1172,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":941,"preRequisites":[77,1477,1478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32762,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lA very useful Scanner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The portable scanner is a tool capable of showing advanced information about almost every block in the game. \nIn order to function, the tool needs to be charged first. It can hold up to 400k EU and accept 128 EU/t or less. This is MV tier.\n\nIt can scan crops, which shows more information than the cropnalyzer does. The crop, which was scanned in the world, will drop a scanned seed bag.\nIt can scan machines from GregTech, giving information about current progress, the stored energy, efficiency, problems and CPU-load - be sure to check the full chat window for additional details.\nFor any block in the game it scans, it gives information about its ID, Metadata, position in the world and hardness value.\nIt also gives information about pollution level in the chunk the scanned block belongs to.\nIn addition it shows when the cleanroom has reached its 100 percent efficieny level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32762,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32764,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":942,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":16384000,"SecondaryMaterial":"Neutronium"}},"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lIt's a dirty job, and you're going to do it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Plunger is used to clear liquids from pipes. It can also be used on a machine to remove up to 1000mb of fluid from its internal buffer. You don't have to wrench your machine and replace it. It can be crafted from a rod of the desired material and rubber sheets. \n\n§4Hint: Plunger deals 2.75 - 7.75 damage depending on the materials used."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":44,"OreDict":"craftingToolPlunger"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:oldworldveggiesoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":943,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":423,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPerforming chemical experiments at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High tier chemical recipes like ammonia need an HV chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":423,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5683,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":944,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSuper Tank I","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 4000 buckets in a tank. The super tank I needs a hermetic casing made with aluminium plates and PTFE pipe. The tank need 4 circuits, a pulsating iron plate and an MV pump. Now you can store the same amount of fluids a steel 5x5 Railcraft tank contains in a single block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings6","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":945,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2879,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lChad - A better way to make Paper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making paper out of wood pulp and water can be tedious and difficult. Why not macerate some sugar cane down to chads and press it with two stone plates to paper? Later on you can use the chemical bath for a even better ratio."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":"craftingToolMortar"},{"id":"minecraft:reeds","Count":45,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:stone_slab","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":2879,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:paper","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"minecraft:stone_slab","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":946,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:planks","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBamboo fence","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are lucky and start off in a bamboo forest.\nBamboo is a very useful tree since it grows really fast and when you place bamboo sticks they will grow and protect your base behind a 3 block tall wall.\nAlternatively, you can also use Berry Bushes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:bamboo","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:saplings","Count":20,"Damage":2,"OreDict":""},{"id":"TConstruct:trap.punji","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":947,"preRequisites":[43],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:trap.punji","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lPunji Sticks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A early game protection moat can be made out of punji sticks. It hurts all mobs/players and additionally gives a slowness II potion effect. Make a trench around your base and put the punji sticks inside."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":20,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":20,"Damage":0,"OreDict":""},{"id":"minecraft:reeds","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:trap.punji","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:saplings","Count":10,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":948,"preRequisites":[37,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11304,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBetter than iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wrought Iron will become more important very soon when you have a bit of steel and are able to build high pressure steam machines. The material is much harder than iron, and you can make better tools with it too.\nTo make wrought iron, you need a tinkers smelter to melt some iron ingots down and cast nuggets; put these in a furnace to get wrought iron nuggets. With the compressor, you can compress the nuggets into ingots.\n\n§§§4§4§9§4Hint:\nCrushed or purified iron ore (not an impure version, look for Chalcopyrite veins) can be smelted to iron nuggets directly. Or you can use an alloy smelter to turn iron ingots into nuggets faster than a smeltery.\n\nLater on, you can use an arc furnace to make wrought iron ingots directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":9032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":9304,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":11304,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"WroughtIron","MaxDamage":38400,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"WroughtIron","MaxDamage":38400,"SecondaryMaterial":"WroughtIron"}},"Damage":16,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":949,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:stalkgarden","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Garden Bags","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finding some special \"Pam's HarvestCraft\" gardens can be very difficult. With your farmer coins you can buy some garden bags."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":36,"OreDict":""}]}]},{"questID":950,"preRequisites":[89],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":3456000,"globalShare":1,"questLogic":"AND","name":"XP berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few xp berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmerI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":5,"OreDict":""}]}]},{"questID":951,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":522,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFluid Solidifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use molds to make plates, sticks, bolts and many more item parts in the fluid solidifier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":522,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":952,"preRequisites":[951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBase too big? I've got a fix for you!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Keeping a base spread apart for pollution or explosion prevention can really wear you out. Try harvesting some Marble and centrifuging it into Calcite, and mix up some concrete in your Mixer. Next output it into a Fluid Solidifier with a block mold to make concrete blocks. You'll move faster on top of these blocks. They can even be turned into bricks to prevent unwanted spawns! Hint: 10 buckets of wet mix converts to exactly 160 blocks. These blocks can also be Chiseled into different varieties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":24,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":2845,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2939,"OreDict":"dustQuartzSand"},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2299,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":953,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5143,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel pipes are much better than steel pipes. Like all high tier pipes (Titanium, Tungstensteel etc) you need a better wrench to deconstruct the pipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5143,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":954,"preRequisites":[75,143],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockReservoir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThe \"Water Problems\" are solved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Entering the HV age you found a way of making a water reservoir which solves the finite water problem. Craft it with some fused quartz glass, HV pumps, and cauldrons."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockFusedQuartz","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32612,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:cauldron","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:blockReservoir","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":955,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Piston","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some pistons? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:sticky_piston","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":956,"preRequisites":[103,95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5122,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Bronze Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bronze fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5122,"OreDict":""}]}]},{"questID":957,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23354,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Magnetic Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic iron for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23354,"OreDict":""}]}]},{"questID":958,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21057,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tin Rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some tin rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21057,"OreDict":""}]}]},{"questID":959,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Iron Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some iron rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23032,"OreDict":""}]}]},{"questID":960,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Brass Rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some brass rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23301,"OreDict":""}]}]},{"questID":961,"preRequisites":[103,530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8516,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Certus Quartz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some certus quartz? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":8516,"OreDict":""}]}]},{"questID":962,"preRequisites":[98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:vacuumhopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lVroooooom...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of standing around to collect all the drops and XP from your diamond spikes?\n\nMake yourself a vacuum hopper to suck up all the drops and XP. Feed the XP into a tank to store it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:vacuumhopper","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":963,"preRequisites":[834],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Basic Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some basic circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32100,"OreDict":""}]}]},{"questID":964,"preRequisites":[748],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Good Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some good circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""}]}]},{"questID":965,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32700,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Vacuum Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some vacuum tubes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32700,"OreDict":""}]}]},{"questID":966,"preRequisites":[835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32716,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Resistors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some resistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32716,"OreDict":""}]}]},{"questID":967,"preRequisites":[747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Diodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some diodes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""}]}]},{"questID":968,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""}]}]},{"questID":969,"preRequisites":[785],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Transistors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some transistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32717,"OreDict":""}]}]},{"questID":970,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ram Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ram wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""}]}]},{"questID":971,"preRequisites":[794],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32037,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Integrated Logic Circuit Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some integrated logic circuit wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32037,"OreDict":""}]}]},{"questID":972,"preRequisites":[546,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30707,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some oil? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30707,"OreDict":""}]}]},{"questID":973,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:fluid.creosote.cell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Creosote Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some creosote oil? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30712,"OreDict":""}]}]},{"questID":974,"preRequisites":[641,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30739,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Naphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some naphtha? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30739,"OreDict":""}]}]},{"questID":975,"preRequisites":[644,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Methane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some methane? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30715,"OreDict":""}]}]},{"questID":976,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Ethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ethanol? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30706,"OreDict":""}]}]},{"questID":977,"preRequisites":[846,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Oxygen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some oxygen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30013,"OreDict":""}]}]},{"questID":978,"preRequisites":[555,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30012,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Nitrogen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some nitrogen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30012,"OreDict":""}]}]},{"questID":979,"preRequisites":[550,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Hydrogen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some hydrogen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30001,"OreDict":""}]}]},{"questID":980,"preRequisites":[745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30726,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Glue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some glue? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30726,"OreDict":""}]}]},{"questID":981,"preRequisites":[1084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Lubricant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some lubricant? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30724,"OreDict":""}]}]},{"questID":982,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Sulfuric Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What some sulfuric acid? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30720,"OreDict":""}]}]},{"questID":983,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Engineering processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some engineering processors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":24,"OreDict":""}]}]},{"questID":984,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Silverwood Sapling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silverwood saplings are always rare to find. Want some? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":8,"Damage":1,"OreDict":""}]}]},{"questID":985,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Ghast)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They shoot you with explosive fireballs but they are weak when you hit them or knock the fireballs back with a weapon. Better upgrade your armor with fire and blast protection.\n\nSorry about the giant ghast Amancila, it can't be changed. \n\nYou'll need to kill 10."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Ghast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":986,"preRequisites":[943,602],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal_frame","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Is this the End? No the END Dimension","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your investigation into the pearls has shown you that the source of the disturbance seems to be coming out of the shimmering portals inside strongholds. You feel strangely drawn into its mysterious depths.\n\nHint: throwing Ender Eyes in the air in the Overworld will guide you to the nearest stronghold . From time to time Ender Eyes are destroyed in this process, so make extras."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_pearl","Count":12,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"END","range":-1,"index":2,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"BiomesOPlenty:helmetAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":78}],"RepairCost":2,"display":{"Name":"Dream Masters Helmet"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:chestplateAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":34}],"RepairCost":2,"display":{"Name":"Dream Masters Chestplate"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:leggingsAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":34}],"RepairCost":2,"display":{"Name":"Dream Masters Leggings"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:bootsAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":2},{"lvl":5,"id":3},{"lvl":5,"id":4}],"RepairCost":2,"display":{"Name":"Dream Masters Boots"}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":987,"preRequisites":[604,990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"ACTIVATED","storedEnergyRF":5000000},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUpgraded RF Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Capacitor Banks are upgraded RF batteries which can store the RF power you generate. You can put many blocks together to enlarge your total battery capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":2,"tag":{"type":"ACTIVATED","storedEnergyRF":0},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":988,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":25000000},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lBigger, Better, Chargier?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Vibrant Capacitor Bank is the largest RF Battery for now. It can store 25 million RF in a single block. Putting many capacitor banks together will enlarge your total battery capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":989,"preRequisites":[160,81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11367,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lVibrant alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vibrant alloy is a high tier EnderIO alloy made out of ender eye, energetic alloy and chrome dust. 3600k heating coils and a vacuum freezer are needed to make ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11367,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":990,"preRequisites":[78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11366,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnergetic Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic alloy is a new alloy from EnderIO made out of gold, conductive iron and black steel dust. Double-layer capacitors need it and it can be made in the electric blast furnace with tier 2 coils (2700K)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11366,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":991,"preRequisites":[141,139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dark Steel Armor basic upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to upgrade one armor item with basic upgrades, you need a vibrant crystal and 10 xp levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:craftingMaterial","Count":36,"Damage":2,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8194,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":992,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"NA":0,"Health":30,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Go find some tropical bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next you will need to find some tropical bees. The hives can be found in Jungle biomes. Be careful as these bees are very aggressive and can poison you. Collect the silky combs and extract some silk wisp from those in order to make some Apiarist's clothes.\nLooking for pristine Bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beeCombs","Count":8,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":993,"preRequisites":[992,539,994],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeCombs","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Silky combs and Propolis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collect silky combs and extract some silk wisp out of it in order to make some Apiarist's clothes.\nThis can take quite a bit of time.\nUse a GregTech or Forestry Centrifuge to get Silky Propolis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":370,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:propolis","Count":305,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":25,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":994,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Forestry Centrifuge is able to centrifuge up to 9 items out of bee combs. It uses RF energy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17310,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32600,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20305,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11034,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:waxCapsule","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBees","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":995,"preRequisites":[539,994,993],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:craftingMaterial","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Woven silk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuge your silky propolis to get some silk wisp at a chance of 60 percent. Put 9 silk wisp in the Forestry carpenter or Gregtech assembler to get woven silk. \nThis fine fabric can be used for crafting Apiarist's Clothes or to upgrade your Forestry Backpacks to 45 slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":216,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":24,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":25,"OreDict":""},{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":996,"preRequisites":[578,995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Apiarist's Cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have collected 24 woven silk you can make a complete Apiarist's suit to be protected from bee stings and other bad bee effects. You can also use the suit parts to upgrade your EnderIO Dark Steel Armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":24,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristChest","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristLegs","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":997,"preRequisites":[991],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"id":5635,"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.glide":{"upgradeItem":{"id":5654,"Count":1,"Damage":1},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.glider"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"id":4910,"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.chestplate","slot":1}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dark Steel Armor advanced upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your Dark Steel armor can be upgraded in various ways by combining it with various other items. You will need an anvil and a lot of XP.\n\nMake sure when making the potions to only do three at a time, so the NBT data matches."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristChest","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristLegs","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":3,"Damage":8194,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:waterlily","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"EnderIO:itemGliderWing","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:noteblock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"tag":{"enderio.darksteel.upgrade.soundDetector":{"upgradeItem":{"id":25,"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.sound"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.naturalistEye":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.naturalistEye"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.helmet","slot":0},"enderio.darksteel.upgrade.nightVision":{"upgradeItem":{"Count":1,"Damage":8198},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.nightVision"},"enderio.darksteel.upgrade.gogglesRevealing":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.gogglesOfRevealing"},"enderio.darksteel.upgrade.speedBoost":{"level":2,"upgradeItem":{"Count":1,"Damage":1},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.solar_two"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.glide":{"upgradeItem":{"Count":1,"Damage":1},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.glider"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.chestplate","slot":1}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.leggings","slot":2},"enderio.darksteel.upgrade.speedBoost":{"level":3,"multiplier":0,"upgradeItem":{"Count":1,"Damage":8194},"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.speed_three"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"tag":{"enderio.darksteel.upgrade.swim":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.swim"},"enderio.darksteel.upgrade.jumpBoost":{"level":3,"upgradeItem":{"Count":1,"Damage":0},"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.jump_three"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.boots","slot":3}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:blockSolarPanel","Count":2,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":2,"OreDict":""},{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":8262,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":8258,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":998,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDark Steel Tool and Weapon basic upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to upgrade a weapon or tool, you need a vibrant crystal and 10 xp levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMaterial","Count":2,"Damage":8,"OreDict":""},{"id":"minecraft:diamond_shovel","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":999,"preRequisites":[998],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDark Steel Tool and Weapon advanced upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your weapons and tools can be upgraded even more by adding capacitors and various other items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:diamond_shovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"tag":{"enderio.darksteel.upgrade.travel":{"upgradeItem":{"Count":1,"Damage":8},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.travel"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.travel":{"upgradeItem":{"Count":1,"Damage":8},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.travel"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.spoon":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.spoon"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":2,"OreDict":""},{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""},{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1000,"preRequisites":[989,933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRF Solar Panel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is possible to power RF machines with a solar panel. It outputs 10 RF/t. Perfect for low use RF machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1001,"preRequisites":[1000],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRF Solar Panel Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The upgraded RF solar panel is much better. It outputs 40 RF/t."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1002,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:magicbees.enchantedEarth","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanted Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted Earth makes saplings and seeds planted on it grow faster. When stacked on top of each other it has a chance to add ticks to the block above accumulating all the way to the top. This will randomly speed up growth a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:magicbees.enchantedEarth","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1003,"preRequisites":[936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§aPower of the Sun at MV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the MV one. It gives 128 EU/t max. Most GT machines can use them as covers. First you need to produce sunnarium out of 9 smaller sunnarium pieces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17341,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17470,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"dreamcraft:item.IrradiantReinforcedTitaniumPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2340,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1004,"preRequisites":[1003],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun 1x1 MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 128 EU panels on a block to make them placeable in the world. Use an HV assembler to combine the panel with an MV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1005,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2056,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lIndium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At EV Level you are able to make Indium for HV Solar Panels. Indium cannot be found in Ore form. It can only be made with an EV chemical reactor.\nFirst you need to make indium out of purified galena and sphalerite ore. Mix in some aluminium to get indium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":6839,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":27,"Damage":6830,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2056,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1006,"preRequisites":[1003,1005,861,1890],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the HV one. It generates 512 EU/t max. Most GregTech machines can use them as covers. First you need to produce enriched sunnarium by mixing irradiated uranium and sunnarium. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17339,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32065,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17981,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32705,"OreDict":"circuitElite"},{"id":"dreamcraft:item.IrradiantReinforcedTungstenPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1007,"preRequisites":[1006],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun 1x1 HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 512 EU panels on a block to make them placeable in the world. Use an EV assembler to combine the panel with an HV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32538,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1008,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBooks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Books can be found easily enough in villages or in the roguelike dungeons surface brick house.\nI'm sure they have a recipe too.\n\nNow glue on the other hand...or should I say horse? Try and get a horse inside a smeltery and feed it hay to keep it alive.\n\nOr you can wait until after you go to the Nether and get some sulfur. Either way. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:book","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemDust","Count":32,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32234,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1009,"preRequisites":[633,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish trapping 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fishing can be very boring. Why not automate it with a fish trap?\nThis is your fish trap 2.0"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":5132,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":4,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1010,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:freshmilkItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fresh Water and Milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many cooking recipes need milk and water. Crafting it in the crafting table can be very tedious.\nIt is much easier using a Forestry worktable. Drag-click all your buckets into the worktable, and craft them all at once."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:freshwaterItem","Count":64,"Damage":0,"OreDict":""},{"id":"harvestcraft:freshmilkItem","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2817,"OreDict":""},{"id":"harvestcraft:flourItem","Count":16,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1011,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":822,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Bauxite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main goal when you reach the Moon is to find some bauxite ore to make titanium for the EV machine tier. Some meteoric iron is required for your tier 2 rocket for reaching Mars so be sure to collect a stack from fallen meteors and small ores beneath the surface."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":822,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":19,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":918,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1012,"preRequisites":[1011],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2375,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRutile","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rutile can be thermal centrifuged out of bauxite and ilmenite dust. \nElectrolyzing bauxite can extract even more rutile and putting ilmenite in the electric blast furnace can give some rutile too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":383,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2375,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2010,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30376,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2018,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1013,"preRequisites":[1015,1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32011,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSMD Circuit components","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Surface-mount devices are more advanced circuits parts. They are needed for high tier circuits and are cheaper to craft than basic capacitors, transitors, diodes and resistors. You need an Advanced Assembler and some molten polyethylene.\n\nBe sure to check how much gallium you have available. It might not be worth it to use SMD diodes and resistors until you have a steady supply with an HV macerator, bees, or bauxite ore. Also look into IC2 crops to 4x your zinc, sphalerite, and bauxite.\n\n§4The easiest way to get Platinum is with Nickel ore and a chemical bath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1014,"preRequisites":[1017],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lWorkstation Extreme Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier of circuits are the extreme circuits. Workstation Circuits are the easiest one and are needed in EV Tier. Let's craft some.\n\nIn addition, you will need 16 Diodes, SMD or non-SMD."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32703,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":26085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32704,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1015,"preRequisites":[1021,1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lEmpty Plastic Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plastic circuit boards require plastic Plate with Sulfuric Acid to make an Empty Board. By adding copper foil and Iron(III) Chloride or Sodium Persulfate you can craft a plastic circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":29035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32007,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1016,"preRequisites":[1013,1221,1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lIntegrated Processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are three variants of good circuits. The good electronic circuit, the good integrated circuit and the integrated processor which needs an MV circuit assembling machine. The integrated processor requires a CPU, capacitors, transistors and resistors.\nA cleanroom is needed.\n\nYou will need in addtion 4 Resistors, 4 Capacitors and 4 Transistors. You can use SMD or non SMD versions."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1017,"preRequisites":[1013,1019],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32703,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lProcessor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another variant of the advanced circuit from IC2 is the processor assembly.\nTwo Integrated Processors are needed in the MV circuit assembler recipe.\nThe recipe is a cleanroom recipe.\n\nIn addition you will need 8 Capacitors, SMD or non-SMD is fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32080,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32703,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1018,"preRequisites":[1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lCentral Processing Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Integrated Processors need central processing units. You can get these by cutting a ram wafer.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32044,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24545,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1019,"preRequisites":[1016],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32014,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSmall Coil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Processing assembly needs some small coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":28613,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19345,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1020,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"iron3chloride","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIron (III) Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron(III) Chloride can be made by first making hydrochloric acid out of hydrogen and chlorine. Then combine this with some iron dust to make Iron(III) Chloride.\nYou can etch your board with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30683,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30693,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.integrated_circuit","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1021,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30718,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§r§6§k§r§6§lSodium Persulfate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium Persulfate can be made in the electrolyzer out of sodium bisulfate dust.\nSodium bisulfate is made out of sulfuric acid and salt in the chemical reactor.\nYou can etch your board with it.\nSave the hydrochloric acid for your future epoxid production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2817,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2630,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30718,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemFluidCell","Count":8,"tag":{"Fluid":{"FluidName":"iron3chloride","Amount":1000}},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1022,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23355,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Magnetic Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic steel for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23355,"OreDict":""}]}]},{"questID":1023,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Alu Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some alu rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23019,"OreDict":""}]}]},{"questID":1024,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21300,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Bronze Rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bronze rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21300,"OreDict":""}]}]},{"questID":1025,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5132,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Steel Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5132,"OreDict":""}]}]},{"questID":1026,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":23303,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Electrum Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some electrum rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23303,"OreDict":""}]}]},{"questID":1027,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Flawless Emerald","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some flawless emeralds? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":29501,"OreDict":""}]}]},{"questID":1028,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ender Pearl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ender pearls? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1029,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23356,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magnetic Neodymium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic neodymium for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23356,"OreDict":""}]}]},{"questID":1030,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23306,"OreDict":""}]}]},{"questID":1031,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Steel rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21305,"OreDict":""}]}]},{"questID":1032,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5142,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""}]}]},{"questID":1033,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Chrome Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some chrome rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23030,"OreDict":""}]}]},{"questID":1034,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ender Eyes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ender eyes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_eye","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1035,"preRequisites":[98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:xpshower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBe sure to get your armpits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to use all that delicious XP to raise your levels? Move the tank with XP above you and attach this convenient shower head to take the XP from the tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:xpshower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1036,"preRequisites":[1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Plastic Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some plastic circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}]}]},{"questID":1037,"preRequisites":[1016],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Central Procesing Unit Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some central processing unit wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32045,"OreDict":""}]}]},{"questID":1038,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32011,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Resistors SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD resistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32011,"OreDict":""}]}]},{"questID":1039,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32016,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Diodes SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD diodes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32016,"OreDict":""}]}]},{"questID":1040,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32018,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Transistors SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD transistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32018,"OreDict":""}]}]},{"questID":1041,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Capacitor SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD capacitors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32020,"OreDict":""}]}]},{"questID":1042,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Logic processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some logic processors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""}]}]},{"questID":1043,"preRequisites":[1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Chlorine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some chlorine? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30023,"OreDict":""}]}]},{"questID":1044,"preRequisites":[1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30693,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Iron (III) Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some iron 3 chloride? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30693,"OreDict":""}]}]},{"questID":1045,"preRequisites":[1021],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30629,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Sodium Persulfate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some sodium persulfate? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30718,"OreDict":""}]}]},{"questID":1046,"preRequisites":[586],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":607,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Pyrochlore Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can't find Pyrochlore ore because of an old worldgen? Buy some Ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":607,"OreDict":""}]}]},{"questID":1047,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Forest Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Forest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1048,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Deep Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Attuned Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1049,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ender Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Ender Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1050,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Bees House","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bee houses? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1051,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Apiary","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Apiaries? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1052,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Impregnated Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some impregnated frames? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1053,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Infernal Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Infernal Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1054,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Oblivion Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Oblivion Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1055,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.paper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Did you want to know your warp level?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a few forbidden researches your warp level has increased a bit. Do you want to know how much warp you have?\nCraft some litmus paper to print out the warp level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.paper","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":8,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1056,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Meadow Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Meadows Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1057,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Modest Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Modest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1058,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tropical Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Forest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1059,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Wintry Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Wintry Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":6,"OreDict":""}]}]},{"questID":1060,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Marshy Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Marshy Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1061,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Water Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Water Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1062,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rocky Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Rocky Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1063,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Nether Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Embittered Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1064,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Curious Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Mystical Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1065,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Unusual Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Unusual Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1066,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Resonating Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Sorcerous Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1067,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Space Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Here's an idea for your space station.\nYou can add up to four spin thrusters to your station to rotate it.\n\nDays on space stations last longer than on the overworld, so you can generate more solar power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":24,"Damage":0,"OreDict":"ingotIron"},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11057,"OreDict":"ingotTin"},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":"ingotAluminium"},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.standardWrench","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.spinThruster","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1068,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":2,"id":212}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are you prepared?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you prepared for the Moon?\nA few things will help you to live longer and prevent you from dying on the Moon.\nIf you die on the moon you will be returned to earth without your stuff. A Soulbind enchantment will keep an item with you when you die.\nGraves are placed at the location where you died."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:itemMaterial","Count":1,"Damage":8,"OreDict":""},{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":8}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":2,"id":212}]},"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1069,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Oak, Spruce, Birch, Jungle Sapling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You spawned in a desert and need Oak or Birch saplings? No problem! For five Forestry Coins you can select which one you want to buy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:sapling","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":1,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":2,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":3,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":4,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":5,"OreDict":""}]}]},{"questID":1070,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Magic Feather","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's craft some magical Map focuses to create a magical map which will help you find Twilight Monster Bosses.\nGo find some Raven feathers. You can get them by killing Ravens sitting on Obsidian Blocks in Twilight. Then you need some Torchberries and some Glowstone dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.tfFeather","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.torchberries","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1071,"preRequisites":[1070],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.emptyMagicMap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Magic Map","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the Magic map you need the magic map focus and a stack of paper. Please only use the map in the Twilight Forest. You can only get one map every 24 hours so be careful with it. Using the map in the Overworld or another dimension will lag the server."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.emptyMagicMap","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1072,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:mooncharm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon arrival","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have a small present for you: a Talisman of Remedium which is very useful to persevere during the dark nights with all these monsters.\nFirst you have to prove you can survive on the moon by yourself. After mining some moon turf, dirt, and rock, you can have it.\n\nMake sure you check back in the HV questline for necessary ores you should gather while here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:quartz","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":1,"dimension":28,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:cleansingTalisman","Count":1,"tag":{"enabled":0},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1073,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":182,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Naga","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Naga in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFNagastone","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":182,"OreDict":""}]}]},{"questID":1074,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":190,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Lich","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Lich in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorI","Count":7,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":1,"OreDict":""},{"id":"dreamcraft:item.LichBone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":190,"OreDict":""}]}]},{"questID":1075,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":205,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":960000,"globalShare":1,"questLogic":"AND","name":"Minoshroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Minoshroom in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},{"id":"TwilightForest:tile.TFMazestone","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":205,"OreDict":""}]}]},{"questID":1076,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":189,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":960000,"globalShare":1,"questLogic":"AND","name":"Hydra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Hydra in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFFireJet","Count":1,"Damage":8,"OreDict":""},{"id":"TwilightForest:item.minotaurAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":189,"OreDict":""}]}]},{"questID":1077,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":224,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1200000,"globalShare":1,"questLogic":"AND","name":"Knight Phantom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Knight Phantom in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFUnderBrick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":224,"OreDict":""}]}]},{"questID":1078,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":217,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1200000,"globalShare":1,"questLogic":"AND","name":"Ur Ghast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon an Ur-Ghast in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFTowerStone","Count":1,"Damage":1,"OreDict":""},{"id":"TwilightForest:item.phantomHelm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":217,"OreDict":""}]}]},{"questID":1079,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":226,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1440000,"globalShare":1,"questLogic":"AND","name":"Yeti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Yeti in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":3,"OreDict":""},{"id":"TwilightForest:item.fieryTears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":226,"OreDict":""}]}]},{"questID":1080,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":231,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1440000,"globalShare":1,"questLogic":"AND","name":"Snow Queen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Snow Queen in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.alphaFur","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.AuroraPillar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":231,"OreDict":""}]}]},{"questID":1081,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":222,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Bending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Plate Bending Machine allows you to directly make double, triple or more compressed plates, which might be useful for your first rocket in HV Tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":222,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemDensePlates","Count":8,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1082,"preRequisites":[1083],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":162,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Battery Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"MV machines can internally hold 1 battery. But sometimes you need to store more power than that, or you want a whole powerline to share batteries. You can use a battery buffer to store large amounts of batteries. They come in different sizes like 1x, 4x, 9x and 16x.\nBuild a 4x buffer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":172,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1083,"preRequisites":[758],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32528,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Lithium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Lithium is the best material to use when making batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32528,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17315,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1084,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLubricant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using lubricant instead of water or distilled water in your cutting machines will increase the output or speed of the machines.\nYou can make lubricant out of oil, seed oil, fish oil or creosote in a distillery. If you are able to craft a brewery you can use talc and soapstone to get much more lubricant each cycle.\n\nLube cells are required to make low tier energy hatches, so stockpile a few cells and use the rest to make your cutting machine faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30724,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30713,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1085,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMore Compact Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are starting to find more and more iron you feel your wood chests are too small to hold all the stuff you found and collected. Now it's time to upgrade your chests to iron chests. You can just build a new chest or upgrade the wood chest with a wood to iron chest upgrade item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""},{"id":"minecraft:chest","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:woodIronUpgrade","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1086,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:strawberryjuiceItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Juice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most of your berries can be extracted to juice. This is a chance to get more food variants and the nutritional value is higher than eating the fruit directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:applejuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:carrotjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:melonjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:blackberryjuiceItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:strawberrymilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:chocolatemilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:bananamilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1087,"preRequisites":[665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:potatocakesItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potato Cakes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potatoes, onions, butter and a skillet make very tasty potato cakes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:onionItem","Count":4,"Damage":0,"OreDict":"cropOnion"},{"id":"harvestcraft:butterItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:potatocakesItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32559,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1088,"preRequisites":[665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:friedeggItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fried Eggs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So easy, skillet and an egg.... fried egg."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:friedeggItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2817,"OreDict":""},{"id":"harvestcraft:flourItem","Count":8,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1089,"preRequisites":[1088,638,1087,1086],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hearty Breakfast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's now combine all the things together and make a healthy and very good breakfast.\nSome cooked meat, potato cakes, toast, fried egg and a tasty juice provide you with a very nourishing meal.\nYou can use any cooked meat and any fruit juice here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":"listAllmeatcooked"},{"id":"harvestcraft:potatocakesItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:friedeggItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:applejuiceItem","Count":1,"Damage":0,"OreDict":"listAlljuice"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:friedeggItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:potatocakesItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:toastItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":1090,"preRequisites":[546,625],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:flowing_lava","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lTry to dry out the Nether","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps can do more than pump oil and water. You can go to the nether and pump lava from the huge lava lakes too.\nDon't forget to bring some tanks or fluid cells with you. Once you reach HV lava can be centrifuged for gold, silver, tin, copper, and a little tungstate.\n\nThis is a good use for your LV pumps once you upgrade to MV pumps for oil."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""},{"id":"irontank:goldTank","Count":4,"Damage":0,"OreDict":""},{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Go to the Nether","range":-1,"index":2,"dimension":-1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1091,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Tanks... Oh shiny","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you build a cutting machine you can make some diamond plates for your new 64 buckets single block tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"TConstruct:GlassPane","Count":2,"Damage":0,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1092,"preRequisites":[1090],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestthenether:glowFlower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNew source of Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find some glowflowers in the Nether and plant them in the Overworld. You will never need to go to the Nether and harvest glowstone again."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestthenether:glowFlower","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestthenether:glowflowerseedItem","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:dye","Count":32,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1093,"preRequisites":[1322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDid you run low on Gold or Redstone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you run low on redstone and gold? No problem with your glowstone flower farm. You can centrifuge glowstone dust to redstone and gold dust.\nRedstone is also a good source of aluminium and chrome."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:glowstone_dust","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":1810,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":1086,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"minecraft:diamond_hoe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1094,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Chests... Oh shiny","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you build a cutting machine you can make some diamond plates for your new big diamond chests."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IronChest:goldDiamondUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1095,"preRequisites":[1085],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lEven More Compact Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you found enough gold you can upgrade your chest to make it an even bigger inventory of 9x9. You can just build a new chest or upgrade the iron chest with a wood to gold chest upgrade item. You can use an assembler to make them a little easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":18086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27086,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:ironGoldUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1096,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemInkwell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scribing Tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To unlock your researches you need a scribing tool and paper. Better make two of them. One for your research table and one for researches. You also need some paper and ink."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25880,"OreDict":""},{"id":"minecraft:glass_bottle","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":2,"Damage":0,"OreDict":"dyeBlack"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:ItemInkwell","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:paper","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1097,"preRequisites":[1055],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemBathSalts","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bathing the warp effects away.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Litmus paper tell you how high you warp level is, but how can you get rid of the nasty warp effects? Bath salt will help you by prohibiting warp effects for a short period. Just throw the salt into a 1x1 water hole and jump inside. You will feel relieved a bit after bathing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"auram"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"cognitio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"ordo"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"sano"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1098,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bathing in a Spa. Automated Warp removing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bathing in a spa will automate the process of temporary removing warp effects. Take the bath salt with you into the spa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1099,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSanitySoap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Temp warp remover Soap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This soap is very special. It will remove temporary warp and has a small chance to also remove some normal warp, if you are lucky. Taking a bath first increases your chances.\n\nHint: You need to chisel your tallow block for the recipe to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":18,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1100,"preRequisites":[237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanting Table 1.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally with your new wand and 50 stored vis you are able to build your own enchantment table. The recipe can be found on the GTNH Thaumcraft Page"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bookshelf","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1101,"preRequisites":[1100,117],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"damage":256},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Division Sigil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you found a division sigil in a chest already. You have heard about some ritual to activate it.\n\nYou need an enchantment table, 8 redstone dust, a good sword and an animal you want to sacrifice at night. Catching and holding it with a lasso would be the easiest way.\nPlace your enchantment table on a grass field and surround it with redstone dust.\nPrecisely at midnight place the animal on or near the table and kill it.\nOf course you also need to have your sigil on you.\nBe aware! Your actions will have consequences."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":8,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"damage":256},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:torch","Count":16,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:unstableingot","Count":3,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1102,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Beacon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new wand you are able to create a beacon. The beacon recipe is found on the GTNH Thaumcraft Page. Activate it in your base to gain various positive effects."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_block","Count":164,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1103,"preRequisites":[1101,1104],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:cursedearthside","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cursed Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Kill the monsters that spawn on the cursed earth. Use a shovel with the silk touch enchantment to dig up the cursed earth blocks. You will need these blocks for your mob spawner later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:cursedearthside","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1104,"preRequisites":[1100],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Silky Jewel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to craft some silky jewels for your tinkers tools. Lots of blocks you can easily grab with this tool.\n\nThe recipe can be found on the GTNH page after researching the enchantment table."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1105,"preRequisites":[1102,986,1106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"stable":1},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Division Sigil Stable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second ritual will not be as easy as the first one. After this ritual your sigil will be stable enough to make stable unstable ingots which will not explode.\n\nThis ritual needs to be performed in The End dimension. \nThe ritual is performed by placing a Beacon in the centre of a flat area of at least 11x11, not necessarily End Stone. Then place a chest in each of the cardinal directions leaving 4 spaces empty between the chest and the Beacon. In each chest insert these specific contents:\n\nNorth: iron ingot, gold ingot and the other things listed in the task.\nSouth: The different Ore Blocks and the other things listed in the task.\nEast: The potions.\nWest: The Music disks.\n\nA spiral pattern of Redstone and String is then laid out around the beacon. At any time, Shift+Right-clicking the Beacon with an Activated Division Sigil in hand will show the building progress of the ritual.\n\nFinally, kill an Iron Golem while it stands within the ritual area to activate the process. If it works, there will be an explosion that destroys the beacon and chests, while every Enderman in the End vanishes. During the ritual, throngs of aggresive mobs imbued with Haste will begin spawning and attacking the Player who needs to kill 100 of them to complete the ritual. If the Player dies or leaves the dimension, the ritual will fail and will have to be started over. Once enough mobs have been killed, the first activated Sigil in the inventory will stabilize. The Pseudo-Inversion Sigil can be used an unlimited number of times, and dividing an Iron Ingot by Diamond will produce Mobius \"Unstable-Stable\" Ingot which does not explode, can be produced in any crafting interface and will stack up to 64."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":40,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_fished","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_chicken","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:baked_potato","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:hardened_clay","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:grass","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:clay","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:obsidian","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lapis_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:emerald_ore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:record_cat","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_blocks","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_chirp","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_far","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_mall","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_mellohi","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_stal","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_strad","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_ward","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_11","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_wait","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_13","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":8199,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8200,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8201,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8202,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8203,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8193,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8194,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8195,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8196,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8197,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8205,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"The END","range":-1,"index":7,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":8,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"stable":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1106,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:brewing_stand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blub blub blub.....","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The brewing stand is really important for brewing the various potions like night vision, healing, haste and jump. Toxic potions or splash potions can be created too. \nWith your basic wand you can create one.\n\nThe recipes can be found on the GTNH page in the Thaumonomicon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:brewing_stand","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1107,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lThe Iron Guy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you feel lonely? Need some extra protection in your base? Want to keep the pigmen off your back in the Nether?\nThey can do good amounts of damage and aggro enemies like the pigmen away from you. They can even take care of that pesky Vampire Pigman.\nCraft some Iron Golems and the monster problem inside your base will be gone.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:iron_ingot","Count":9,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1108,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:snowball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe Cool Guy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Feeling lonely? Located far away from a smow biome?\nCraft a Snow Golem, and perhaps challenge him to a snow ball fight."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:snow","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:snowball","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:snow","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1109,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oh crunchy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of doing Thaumcraft research you found a way to craft pure tears. Ichorium purifies the nether star which sucks all the warp away. Be careful, as this may have a deadly end."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1110,"preRequisites":[1109],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.amulet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purge all your warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you ever have a dream where you could purge all your warp with no bad side effects? This purification talisman will let your dreams come true.\nDo not forget to wear it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.amulet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1111,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apicultureChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Chest for Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A chest for bees only. It can hold up to 125 different bees in one chest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":3,"Damage":0,"OreDict":"beeComb"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32403,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apicultureChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1112,"preRequisites":[501],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameUntreated","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Untreated frames are the simplest frames. They do not work in bee houses, only in apiaries. You will need them to craft bee houses.\n\nThey increase the bee's performance. Each untreated frame will double a bee's productivity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":9,"Damage":0,"OreDict":"slabWood"},{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:frameUntreated","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1113,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameImpregnated","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Impregnated Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impregnated Frames are even better than untreated Frames. \nEach frame doubles the bee's productivity. It has a longer durability than the untreated frame, but a shorter one compared to the proven frame."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:slab","Count":9,"Damage":38,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":3,"Damage":0,"OreDict":""},{"id":"Forestry:oakStick","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:frameImpregnated","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:honeyDrop","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1114,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Proven Frame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Proven frames are much better than impregnated ones.\nEach frame doubles the bee's productivity. Out of the three Forestry frames (Untreated, Impregnated and Proven), the proven frame has the longest durability.\n\nYou can make them or purchase them from a villager. If you can't find a beekeeper, there are couple of different options to get one. Rescue a zombie villager, add doors to a village to get them to make kids, or perhaps use a cupid's bow and arrow..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:propolis","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:propolis","Count":16,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1115,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Moron's Guide to Taller Trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forestry trees have a variety of attributes. Once you get a tree with a useful attribute, you can breed that attribute into other tree species. This way you can get an ultimate tree that combines all the attributes you want - including the type of fruit! These breeding lines do not cover every option or even the best, but are great starts to get you into Forestry.\n\nIT IS RECOMMENDED YOU DO YOUR FORESTRY TREE BREEDING IN AN ENCLOSED AREA, OR UNDERGROUND. BUTTERFLIES ARE A KNOWN LAG SOURCE.\n\nFor faster tree breeding, enclose your trees so that butterflies cannot escape, and breed bees with better traits for area and pollination.\n\nGirth - The width of your tree. Wider trees have more leaves, but will also need more saplings to begin growing. All saplings must be the same species and girth. The sapling in the NW corner determines the stats of the new tree, and is where bone meal must be applied to mature the tree. Butternut already provides 2x2 girth.\n\nHeight - Controls how high the tree grows. Jungle trees are already Larger, but if you want Largest there is a guide to getting Cocobolo trees. There are rumors of rare villagers with Giant Sequoia saplings capable of reaching into the clouds...\n\nMatures - The growth speed of a sapling into a tree. Important if you plan to cut it down right away for logs.\n\nSaplings - Chance of getting a sapling from a detroyed leaf. Balsa, a tree on the way to Cocobolo, has High number of saplings. Good for making into biomass or other uses.\n\nSappiness - The amount of biomass a sapling produces in the Fermenter. Boost Fermenter output more using honey or fruit juice. Blue Mahoe provides the highest sappiness, but Lemon and Plum are respectable.\n\nYield - Chances of getting a fruit from a destroyed leaf. Plum is the best here.\n\nFruit - Each fruit from various trees provides different advantages. Lemons are great sources of Fruit Juice but don't provide much Mulch for the fermenter. On the other hand, Plum is a mediocre source of Fruit Juice, but great for Mulch. The best seedoil nut is coconut, but butternut or hazelnut are good alternatives.\n\nWhen breeding these trees for quests, you will need to breed the species \"pure\", not a hybrid."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1116,"preRequisites":[1117],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some cultivated bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Common Princess and Foresty Drone can be bred to cultivated bees. \n\nCultivated bees have the shorest lifespan - this means they make great princesses to breed with your newly bred drones. The queen will die quickly, quickly giving genetic material to work with. Make sure the traits you want are kept!\n\nThey are also a Fast production bee, which means lots of honey combs for powering your Beealyzer or Treealyzer. \n\nCultivated Bees produce Honey Combs every 0.9 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time.\n\nMake sure your cultivated bees are pure with a Beealyzer or GT scanner.\n\nThe main bee breeding quests will require pure bees but you can use Ignoble or Pristine princesses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":32,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1117,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some common bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To cross breed bees you need two different species of bees. One drone and one princess from different hives (Meadows and Forestry as an example)\nBee Houses do not allow crossbreeding. In an Apiary you can cross breed them to a new species. Certain frames will help this process. Shortening their lifespan means faster crosses. Increasing Mutation rate means getting rare bees quicker.\n\nCommon Bees produce Honey Combs every 2.2 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nMake sure your bees are pure by checking their genetics with a Beealyzer or GT scanner."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMeadows","UID0":"forestry.speciesMeadows"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMeadows","UID0":"forestry.speciesMeadows"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1118,"preRequisites":[1116],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":30,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some noble bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding common and cultivated bees can result in noble bees. \n\nNoble bees produce dripping combs every 3.8 minutes and honeydew. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nYou've heard of a drunk beekeeper saying he has perfected a method of creating proven frames using Honeydew and a little magic. It might be worth your time to try experimenting yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1119,"preRequisites":[1118],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeCombs","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dripping Combs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your noble bees produce some dripping combs.\nA good source for honey, and if have a magical mind, honeydew for proven frames."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":16,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1120,"preRequisites":[1118],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":35,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some majestic bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding noble and cultivated bees can result in majestic bees.\n\nMajestic bees have a very important attribute - high fertility. They will leave 4 drones when they die. This means lots of genetic material for the next generation to work with.\n\nMajestic bees produce dripping combs every 1.5 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:honeydew","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1121,"preRequisites":[1120],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":40,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectBeatific","UID0":"forestry.effectBeatific","Slot":13}]},"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectBeatific","UID0":"forestry.effectBeatific","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some imperial bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding noble and majestic bees can result in imperial bees.\n\nThese bees produce a Regeneration buff in their active area. You can probably find a use for this in case of...accidents.\n\nImperial bees produce dripping combs every 3.8 minutes and royal jelly every 5.1 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nRoyal jelly is needed in making scented paneling for an Alveary - the third tier bee housing.\n\nYou can now start working towards the Master Registry in the To Grind, or Not to Grind tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":32,"Damage":5,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1122,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:royalJelly","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Royal Jelly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Royal jelly is a honey bee secretion that is used in the nutrition of larvae, as well as adult queens. It is only produced by the imperial bee. It's production can be increased with proven frames or any other kind of frames except for the soul frame. Royal jelly is also useful because it can craft ambrosia, which fills 8 hunger points (4 full food icons) and gives Regeneration I for 40 seconds. Royal jelly is used to craft scented paneling which are required in the creation of alveary blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:royalJelly","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1123,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:alveary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Alvearies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The alveary is an advanced variant of the apiary. The alveary allows for combs to be produced faster due to its natural speed increase to production (as well as the ability to add up to six frames via the Extra Bees frame housings) and due to its ability to be modified by other blocks. \nIt is possible to adjust the internal temperature of the alveary using the alveary heater or alveary fan in order to accommodate bees that require hotter or colder climates.\n It is also possible to use mutators to increase chances of mutation, alveary lighting and alveary rain shield to allow bees without the nocturnal and tolerant flyer traits to work during the night and rain, respectively, and the swarmer to use excess royal jelly to create princesses that last for a limited number of generations.\n\nA submission station is recommended for quests with large amounts of items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":432,"Damage":19086,"OreDict":""},{"id":"Forestry:royalJelly","Count":216,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":216,"Damage":0,"OreDict":"itemPollen"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beeswax","Count":432,"Damage":0,"OreDict":""},{"id":"Forestry:oakStick","Count":648,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":30725,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":216,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":216,"Damage":0,"OreDict":"logWood"},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":30713,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Forestry:impregnatedCasing","Count":27,"Damage":0,"OreDict":""},{"id":"Forestry:craftingMaterial","Count":216,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Forestry:alveary","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:royalJelly","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:propolis","Count":32,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":1124,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeStructural","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Barrel Upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are your cobblestone or dirt barrels filled to the brim? \nNo problem, upgrade them!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17809,"OreDict":""},{"id":"minecraft:stick","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeStructural","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeCore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1125,"preRequisites":[1124],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Barrel Upgrades Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are your upgraded cobblestone or dirt barrels full again? \nNo problem, upgrade them some more!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeCore","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeStructural","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1126,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAlumite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's upgrade time again. You can make alumite like modpack Moron by mixing obsidian, steel and alumin(i)um in the smeltery, or you can be a GregTech hero and search NEI for an alternate recipe using dusts. Alumite pickaxes are able to mine ardite in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":16,"Damage":15,"OreDict":"ingotAlumite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":31,"OreDict":""},{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1127,"preRequisites":[596],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:heavyPlate","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lReinforced X? Unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your steel tool you are able to mine obsidian. Large obsidian plates give a reinforced modifier which increases the durability of your tool. \nReinforced level X makes a tool unbreakable."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:obsidian","Count":16,"Damage":0,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1128,"preRequisites":[867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lLapis? Lucky!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you were lucky and received the luck modifier on your pickaxe. If not, you may still have an unused modifier on your pick so you can add some lapis lazuli. Or you can perhaps add another modifier by adding a diamond and a gold block to your pick and then add some lapis. \n\nYou can put the lapis lazuli in more than one slot in the tool station, use blocks to raise the luck level faster, and even use lapis blocks in the crafting station with your tool for maximum luck gain."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":64,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:golden_carrot","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:gingerbreadItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1129,"preRequisites":[535],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRedstone? Haste!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mining and digging can be soooo slow. Get some redstone on your pick, shovel or axe to make it faster. You can use the Crafting Station to upgrade your tool 8 dust at a time. Later when you get a compressor you can use blocks to do 9 per block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1130,"preRequisites":[54,495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:creativeModifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§3§e§4§3§lExtra Modifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't have an extra modifier on your tool you can easily add one.\nA gold block and a diamond are all you need.\nYou can add two more modifiers, but you need to figure out how yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":16,"Damage":86,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"harvestcraft:leafyfishsandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1131,"preRequisites":[479,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SearedBrick","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lArdite and Cobalt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are done with all quests you can look for cobalt and ardite in the Nether. Remember, you need an electric blast furnace to process these materials before you can make tools with them. But you have heard rumors of a special wood only found in another land, a forest of twilight, that can make tools strong enough to mine them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SearedBrick","Count":4,"Damage":2,"OreDict":"oreArdite"},{"id":"TConstruct:SearedBrick","Count":4,"Damage":1,"OreDict":"oreCobalt"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1132,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:quartz","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§f§3§lNetherquartz? Sharpness","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your sword is too dull? Get some nether quartz to sharpen it again.\n\nIf you have lots of Certus quartz, 1 piece of Certus is equal to 24 Nether quartz."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:quartz","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2022,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1133,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterquesting:submit_station","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSubmission Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Although many of the questing tasks can be submitted directly through your inventory (including liquids) sometimes you need a more automated solution. This is where the Object Submission Station (OSS) comes in handy. \nTasks supporting the OSS can be selected through the built in interface to enable its use. Once setup, liquids and items can be either piped in or dropped into the interface's input slot. It will not void items or liquids if no task is selected or if it has already been completed, however, making it relatively safe from accidental item/fluid deletion. Multiple OSS are also capable of taking on separate sub-tasks under the same quest simultaneously!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17809,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"betterquesting:submit_station","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1134,"preRequisites":[608],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":753,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV Advanced Steam Boiler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LV Gt++ Steam Boiler is the next machine you can build to produce steam more efficiently than with the High Pressure Boiler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":753,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11089,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1135,"preRequisites":[890,898],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":20,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lULV Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your simple ore washer working you need a ULV Transformer. The Washer can only work with 8 EU. If you put more energy into it you get a big hole in your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2006,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1136,"preRequisites":[97,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLossless LV Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about losless 32 EU LV Cables ? Redstone alloy is a superconductor wire and will transfer your energy without any loss.\nRedalloy is a new alloy which requires an EBF. Mix redstone, silicon and coal by hand, or in the mixer for a better result."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2535,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2381,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11381,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30645,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1137,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Generator will transform mechanical energy into electricity. The EU output depends on the KU input. It is most commonly used together with a Kinetic Wind Generator, Kinetic Water Generator or a Kinetic Steam Generator.\n\nWhen placing a kinetic generator, any time, the \"input\" side is the side facing you. So you will place the kinetic generator, then the wind/water/steam gen, and then place a rotor inside. Power can be drawn from any side of the kinetic generator, up to the rated amount per side. \n\nNOTE: It now requires an Avaritia Dire Crafting Table and Titanium. Follow the quests in Space Race and get to the moon. Use NEI to find the recipe since Better Questing cannot show it.\n\nWARNING: Breaking a kinetic generator improperly will not return the generator. Use a GT wrench, and right-CLICK it. It should drop immediately. Try again if it just changed directions. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":11,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21306,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31028,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1138,"preRequisites":[1137],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockKineticGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Wind Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Wind Generator generates energy from wind power which varies randomly, although certain factors can change this. \nUnlike the Windmill, the Kinetic Wind Generator will require maintenance in the form of the Rotors. These are needed to run the Kinetic Wind Generator.\nOnce a Rotor is placed inside the GUI, the block is given sufficient space, and the current wind level is adequate for the current rotor, the Kinetic Wind Generator will begin to generate Kinetic Energy. \nThis can be converted into EU by using a Kinetic Generator attached to the correct face (the black circle).\nAbout Wind\nFirst off, the wind strength of a particular area is affected by 3 factors: Height, Weather, and Chance. The higher up in the world you are, the higher the wind level. Below y64, there is never enough wind to be used, and KWG's will not function at all. Weather will also give boosts; Rainy weather will give a 20% boost to normal wind levels, and stormy weather will give a 50% boost. The final factor of chance makes the wind strength vary randomly, however there is a limited range of variation.\nThe easiest way to check the current wind level in an area is by using a Windmeter.\nWind is strongest at around Y160, towards the build limit of Y255 there is very little wind, hence no point attempting to run Windmills that high.\nWhile inconvenient, the Wind Generator can run anywhere.\n\nYou will need to use NEI to see the recipe, since it use the Dire Crafting table. Make sure to put the items in the right place, or you will get a Water Generator instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20028,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockKineticGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1139,"preRequisites":[1137],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockKineticGenerator","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Water Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Water Generator allows Kinetic Units to be produced via the movement of water in river and ocean biomes. As with the Kinetic Wind Generator, it requires either Gearbox Rotor. Search NEI for appropriate options.\n\nIf the Kinetic Water Generator's Rotor isn't entirely submerged in water, it will alert you there is \"no room for the rotor\". If the Kinetic Water Generator isn't placed in a river, ocean or deep ocean biome, it will alert you it \"must be placed in a river or ocean biome\". Check the Game Mechanics spreadsheet on Discord for a list of biomes and their tags.\n\nWhile inconvenient, the Water Generator runs more consistently.\n\nYou will need to use NEI to see the recipe, since it use the Dire Crafting table. Make sure to put the items in the right place, or you will get a Wind Generator instead.\n\n§4You can use Witchery to convert biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32612,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockKineticGenerator","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1140,"preRequisites":[1138,1139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemironrotor","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§9§lRotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Wind and Water Generators need Gearbox Rotors to function. They can be added and removed with standard automation. Higher tier rotors will last longer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":28028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":4,"Damage":8,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemironrotor","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemwoodrotor","Count":1,"Damage":1,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":8,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1141,"preRequisites":[1138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:windmeter","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lWind Meter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Windmeter measures wind strength. It show's you on which height you can place your Wind Generator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:windmeter","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockIronScaffold","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1142,"preRequisites":[1144],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Battery Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HV machines need battery buffers too. They come in different sizes like 1x, 4x, 9x and 16x.\nBuild a 1x and a 4x buffer for HV. \n\nYou can use the 1x with a transformer and run MV machines for a decent time. Or transform it twice to LV and run a bunch of LV machines for a long time. Useful when you want scanner near your bees or trees. Remember to cover them up or else rain will make you very unhappy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":173,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1143,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32502,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Let's make some HV battery hulls for new batteries. Now it's up to you to make lithium, cadmium, sodium or acid batteries with these hulls."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32502,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1144,"preRequisites":[1143],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32528,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Lithium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Lithium is the best material to use when making batteries. Make sure to use the Assembler recipe with Polyethylene to save on resources."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17315,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1145,"preRequisites":[1140],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV EV Tranformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gregtech cables will not connect to IC2 machines so you need transformers to convert the energy. The best way is building two transformers and a battery buffer to store the generated energy in batteries or energy cells. The longer the cable the more energy will be lost at low tiers. So use high tier voltages when transporting energy over long distances.\n\nBe careful; IC2 machines do not care about rain but your GT machines will explode violently if exposed to water.\n\nIt is also important to transfer the power up, not down, to avoid explosions if the rotor generates more than 120 EU/t. It is not recommenend to use better rotors than the iron ones on HV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":23,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemDust2","Count":9,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1146,"preRequisites":[35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGT 6 styled Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why the new pipes don't auto-connect anymore? This was changed to make the pipe smarter. You can now use a wrench to connect only the pipes you want. You don't need a plate or a foil to prevent pipes from connecting anymore.\n\nYou'll still want to cover hot pipes to prevent getting hurt!\n\nShift clicking on the end of a pipe will disable the fluid input on that side. This is super handy, for example, to prevent coal boilers from feeding back steam into water pipes. \n\nAlso, pipes now come with a shutter built in for free to reduce sloshing. Shift-rightclick with a wrench on the side you want prevent input.\n\nLarge or Huge fluid pipes can be a \"poor man's\" storage tank, holding large amounts on their own.\n\nFor machine outputs, including the boilers, and water siding tanks you will not need pumps. Other tanks will need pumps or Tinker's Construct faucets to move fluids.\n\n§4Hint: If you click one pipe onto the other they will auto-connect."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:woodIronUpgrade","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1147,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§2§4§3§lGT 6 styled Wires and Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why the new wires and cables don't auto-connect anymore? This was changed to make the wires and cables smarter. You have to use a wirecutter or soldering iron to connect the wires and cables on the side you want. No more burnt cables or wrongly connected wires and cables from now on. You can shift-rightclick to attach a cable on the side of a machine you cannot see, like attaching a cable to the bottom while looking at the front.\n\nHint: If you click one wire or cable on the other it will auto-connect. Cables and pipes can be painted to make sure you do not cross your MV line with your EV line, or dump hot lava into your plastic water pipes. No boom today.\n\nHa ha just kidding there is always a boom today!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:splitpeasoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1148,"preRequisites":[103,77,543,97,717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Machine hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier of machine hull needs aluminium - a lot of aluminium. Keep your EBF running and make some aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1149,"preRequisites":[673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11313,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA new alloy - Magnalium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You wonder why you need magnalium now? It's not for GT machines right now but for a material update for your crossbow.\nIt's a very good material in LV Tier. Go to the Twilight Forest and find an Olivine/Glauconite vein located at Y 10-40 or in the Overworld a Glauconite Soapstone mix located at Y 20-50 and a Granitic Mineral Vein in the Overworld Located at Y 50-60 (The Gypsum vein you will need for the Bricked Blast Furnace).\nWith your Ore Washer you can get Magnesium and Aluminium out of the Ores (Magnesite for Magnesium (marbel can be used too)and Fullers Earth for Aluminium) and mix it in the Alloy smelter to Magnalium.\nMagnesite gives 10 tiny piles of Magnesium each dust but fullers earth gives only a tiny pile of Aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2018,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11313,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1150,"preRequisites":[741,1149,673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":288,"BaseAttack":2,"DrawSpeed":35,"ToolEXP":0,"HarvestLevel":3,"RenderHead":1602,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accessory":2,"MiningSpeed":600,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":288,"BaseDrawSpeed":35,"Head":1602,"Attack":2,"Handle":1602,"Broken":0,"Extra":6,"RenderAccessory":2,"ToolLevel":1,"FlightSpeed":5.99399995803833,"Modifiers":0},"display":{"Name":"Magnalium Crossbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Crossbow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now its time to craft your Crossbow Limb and the Crossbow Body to upgrade your old Wooden Crossbow."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11313,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:Cast","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:Cast","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""},{"id":"TGregworks:tGregToolPartCrossbowBody","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:barleyFood","Count":2,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1151,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":38,"BaseAttack":1,"DrawSpeed":33,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":38,"BaseDrawSpeed":33,"Head":0,"Attack":1,"Handle":0,"Broken":0,"Extra":6,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":4.5,"Modifiers":0},"display":{"Name":"Wooden Crossbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWooden Crosbow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you are able to make a better long range weapon - a crossbow. Use wood for the the crossbow limb and the body and use obsidian (Reinforced III) for the tough binding. Normal strings for the bowstrings would be enough for now.\n\nAssemble the bow yourself on your tool forge.\n\n§4For upgrades:\n§5§4§3Redstone - Speed on the draw\nLapis - Fortune on kills\nMoss - Self-repair (this is not visible in NEI until you unlock it in the GTNH Thaumcraft tab)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:Pattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:Pattern","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:CrossbowLimbPart","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:toughBinding","Count":1,"Damage":6,"OreDict":""},{"id":"TConstruct:bowstring","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":38,"BaseAttack":1,"DrawSpeed":33,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":38,"BaseDrawSpeed":33,"Head":0,"Attack":1,"Handle":0,"Broken":0,"Extra":6,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":4.5,"Modifiers":0},"display":{"Name":"Wooden Crossbow"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1152,"preRequisites":[1150],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:bowstring","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFiery Bowstring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why not upgrade your bowstring too? You got some from the last quest, but will need to find some more in the Nether by killing spiders. Craft some fiery bowstring with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:barleyFood","Count":3,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:bowstring","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11382,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1153,"preRequisites":[1152],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lArdite Crossbow Body","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your crossbow even better craft an ardite crossbow body. You received a few ardite ingots as reward before but will need to find ore in the Nether and process it in an Electric Blast Furnace.\nWith redstone you can make your bow faster. This requires a free modifier slot on your crossbow.\nDon't bother putting Nether Quartz on the crossbow, it only improves damage from whacking mobs over the head with it. Put the Nether Quartz on your bolts instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":11382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1154,"preRequisites":[1150,1155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.05400000140070915,"BaseDurability":705,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accuracy":87.5,"Accessory":1,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":705,"Head":2,"Attack":3,"Handle":1602,"Broken":0,"Mass":3.4800000190734863,"Ammo":71,"RenderAccessory":1,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Crossbow Bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnalium bolts are much better than your old wooden bolts.\nYou can use nether quartz on the bolts to make them even better. \nThis requires a free modifier slot.\nNOTE: Unlike other tinker tools and weapons, bolts cannot be upgraded. You will need to make a fresh one. Experiment with NEI to find other good bolt materials. \n\n§4To make it, you must use a Fluid Solidifer instead of the Tinker's casting table."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:fletching","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":2}},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.05400000140070915,"BaseDurability":705,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accuracy":87.5,"Accessory":1,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":705,"Head":2,"Attack":3,"Handle":1602,"Broken":0,"Mass":3.4800000190734863,"Ammo":71,"RenderAccessory":1,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":11382,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1155,"preRequisites":[579,543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":521,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBasic Fluid Solidifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your molten fluids back to a solid state you need a fluid solidifier. This is handy for processing molten rubber directly from the chemical reactor. It is used for crossbow bolts as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":521,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:energydrinkItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:beansontoastItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32716,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1156,"preRequisites":[1151],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000774860382,"BaseDurability":188,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accuracy":97.5,"Accessory":0,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":188,"Head":2,"Attack":3,"Handle":0,"Broken":0,"Mass":4.335000038146973,"Ammo":19,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWooden Bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your crossbow need some ammo to shoot with. Let's craft some wooden bolts. For now, you can put either iron, alumite, or steel on the tip of your bolts using the Smeltery. For higher tier bolts and tips you will need to pump metals into a Fluid Solidifier with the correct tool rod inserted.\n\n§4For upgrades\n§3Nether or Certus Quartz - More damage\nMoss - Self-Repair (unlock in GTNH Thaumcraft tab)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:toolRod","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:fletching","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":2}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000774860382,"BaseDurability":188,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accuracy":97.5,"Accessory":0,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":188,"Head":2,"Attack":3,"Handle":0,"Broken":0,"Mass":4.335000038146973,"Ammo":19,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1157,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":19}],"GT.ToolStats":{"PrimaryMaterial":"Rubber","MaxDamage":25600,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lRubber Soft Mallet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wooden soft mallet breaks after a few uses. Now you can make a rubber mallet which is much more durable."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"woodStick"},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":11880,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":19}],"GT.ToolStats":{"PrimaryMaterial":"Rubber","MaxDamage":25600,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chickenpotpieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1158,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron Wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood is much harder and durable than rubber. Ideal for a soft mallet. Collect some liveroot, macerate it and mix the powder with iron and gold to create a new magical material.\n\nYou can make some unique armor with this material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.liveRoot","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2832,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":86,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":2338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodIngot","Count":18,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1159,"preRequisites":[1158],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Steeleaf","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you locate a labyrinth you may find steeleaf in chests inside if you are lucky.\nThis is the best material for a soft mallet, however a unique armor out of steeleaf would be an even better use for this material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.steeleafIngot","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1160,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellEmpty","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEmpty Cells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your plate bender you are able to make empty cells. The circuit needs to be configured to 12 otherwise you will make foil. Once you have an LV Extruder, you can make cells directly from ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1161,"preRequisites":[67],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2006,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Redalloy Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some redalloy cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2006,"OreDict":""}]}]},{"questID":1162,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tin Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some tin cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1246,"OreDict":""}]}]},{"questID":1163,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Copper Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some copper wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1360,"OreDict":""}]}]},{"questID":1164,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUniversal Macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the important machines in HV is the Universal Macerator. It has an additional output slot to get more materials when macerating ores.\n\n§4This is a key source of extra Gallium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":303,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1165,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11880,"OreDict":""}]}]},{"questID":1166,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:quartz_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lQuartz and Quartzite Veins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nether is full of different kinds of quartz. Go and find a quartzite and certus quartz vein. They are located between Y levels 80-120."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1523,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":1904,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1516,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_rod","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1167,"preRequisites":[622],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2006,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lLithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lithium can be washed out of Lepidolite Ore or centrifuged out of Spodumene Ore. At MV you can electrolyze clay dust for it. Look for canyons to find hardened clay and macerate it for dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2006,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:coleslawburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1168,"preRequisites":[621],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2017,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lSodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium can be washed out of Glauconite Ore and Sand. It can also be electrolyzed out of salt."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2017,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32224,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1169,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemBathSalts","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":360000,"globalShare":1,"questLogic":"AND","name":"Bath Salt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oh you feel so dirty. Go and take a bath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1170,"preRequisites":[1099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSanitySoap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Bath Soap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oh you feel so dirty. Get the soap and take a long hot bath to get rid of some of that nasty Warp."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1171,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11335,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Damascus Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Damascus Steel is very durable and useful for GT tools. Buy some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11335,"OreDict":""}]}]},{"questID":1172,"preRequisites":[662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11345,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCheaper Annealed Production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It' s even faster and cheaper to make annealed copper in the arc furnace than in the electric blast furnace. Annealed copper is a very good material for cables in MV. It only loses 1 EU per block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11345,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1173,"preRequisites":[948],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11304,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Wrought Iron Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Whant some wrought iron ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11304,"OreDict":""}]}]},{"questID":1174,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11305,"OreDict":""}]}]},{"questID":1175,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Aluminium Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some aluminium ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""}]}]},{"questID":1176,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""}]}]},{"questID":1177,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thaumium cooking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it is time to cook your first thaumium ingots. After researching it you need iron ingots and praecantatio aspect to make it. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"praecantatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1178,"preRequisites":[1289],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTinCanFilled","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Food 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forget everything you know about food and values. With your new canning machine you are able to fill tin cans with very nourishing food. This food can be consumed in milliseconds and makes you full and happy. And you can eat as much as you want without getting tired of the food.\nEating before you are starving restores saturation and conserves cans."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":18057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemTinCan","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemTinCanFilled","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:apple","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:golden_apple","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1179,"preRequisites":[77,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEBF Infos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can use a scanner to manually check how your EBF works, or you can make an information panel from nuclear control and always see the status. Make a GT sensor kit and use it on the EBF controller. Place the the sensor card in your info panel. Enable it with a redstone signal.\n\nThe GregTech sensor card can monitor Gregtech machines like the EBF, Turbines, and Pyrolyse ovens. This is handy for keeping an eye on maintenance issues for multiblocks.\n\nIf you want to put the panels far from the machines they are monitoring, you will need range upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32763,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30726,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1180,"preRequisites":[1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPassive Chunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using the MV bender you can finally press dense plates. Let's craft some passive chunkloaders.\n3x3 chunks are loaded. You need coins or ender pearls to power the chunkloader. \nEnder pearls power personal anchors for 4 hours per pearl, and 1 hour in passive anchors . Personal anchors can also be powered with ender fragments for 1h. \n\n§4Personal anchors are loaded once the owner visits, and stays loaded while the player is logged in. \nPassive anchors are loaded once the owner visits, and stays loaded until the server resets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChunkloaderTierI","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1181,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Minecart with Tank, Workbench or Furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want to transport oil or other fluids, have a portable crafting table or a portable chest? Then you need to craft some minecarts with tanks, chests or crafting tables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:cart.work","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:chest_minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:cart.cargo","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1182,"preRequisites":[866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.gamma","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluid loader and unloder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you plan to automate the oil transport from your oil field far away, you need a fluid loader and unloader. A locking track will stop the train as long as oil is loaded or unloaded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.gamma","Count":1,"Damage":4,"OreDict":""},{"id":"Railcraft:machine.gamma","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.locking"},"Damage":20176,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":128,"Damage":5103,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"minecraft:rail","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1183,"preRequisites":[1181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:furnace_minecart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Locomotive 0.1 Alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The furnace cart is a cheaper locomotive. Click with coal or charcoal on the cart and and it will start moving. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:furnace_minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:coal","Count":32,"Damage":1,"OreDict":""},{"id":"minecraft:coal","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1184,"preRequisites":[1183,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.loco.steam.solid","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Steam Locomotive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The steam locomotive is much better than the furnace cart. You can control the speed and the direction the locomotive will move. You need to put water and coal inside to make steam to power the locomotive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.loco.steam.solid","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:coal","Count":64,"Damage":1,"OreDict":""},{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1185,"preRequisites":[1184,89],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.loco.electric","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric Locomotive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electric Locomotives are much better than steam ones. You need electric rail for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.loco.electric","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":32,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1186,"preRequisites":[866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boost your speed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to not use a locomotive and drive with one or two carts only, you can use some booster tracks. Activate them with a lever or a redstone torch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:golden_rail","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:rail","Count":64,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1187,"preRequisites":[866,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad - high speed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you ever dream of driving in a railcart at high speeds? Well your dreams can come true with the high speed tracks. Be careful though; you need to lower the speed when your rails change direction or when the track ends."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.transition"},"Damage":26865,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":3,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1188,"preRequisites":[866,1176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad - blast proof","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Railroads in the nether are dangerous. The reinforced tracks are blast proof. Hope you are blast proof too. \nYou can move 25% faster than with normal tracks.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.reinforced.boost"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":4,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1189,"preRequisites":[77,866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad electrical","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electrical tracks are used together with your electrical locomotive. You need to power the rails with energy.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":5,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1190,"preRequisites":[1189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.epsilon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric feeder Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your tracks electrified you need an electric feeding unit, shunting wires and some support frames. You can use an MFE or a transformer to get GT energy into the feeder unit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.epsilon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.delta","Count":8,"Damage":0,"OreDict":""},{"id":"Railcraft:frame","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.buffer.stop"},"Damage":32363,"OreDict":""},{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.gated.oneway"},"Damage":0,"OreDict":""},{"id":"minecraft:detector_rail","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1191,"preRequisites":[878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic \"Staffter\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is also possible to create a bizarre hybrid of staff and scepter (sometimes called a \"staffter\"), by using a staff core instead of a wand core in the scepter recipe. The resulting device can neither hold a focus nor be placed in a crafting table, but it can still be used to activate constructs, or as a \"vis battery\" for Repair-enchanted equipment or Runic shielding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":3,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27028,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","sceptre":1,"AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1192,"preRequisites":[74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Aluminum berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few aluminum berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":4,"OreDict":""}]}]},{"questID":1193,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Gold berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few gold berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":1,"OreDict":""}]}]},{"questID":1194,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Iron berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few iron berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1195,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Copper berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few copper berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":2,"OreDict":""}]}]},{"questID":1196,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Tin berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few tin berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":3,"OreDict":""}]}]},{"questID":1197,"preRequisites":[1213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1194,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lFusion reactor MK2 - bigger, better, fusor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have some europium, put it to use by making an mk2 reactor. This one will require the same block placement, but replacing LuV casings with fusion machine casings, superconducting coil blocks with fusion coil blocks, and using ZPM tier hatches. This reactor can handle recipes up to 320M eu startup. In addition, if you perform an mk1 recipe on an mk2, you will overclock it. Fusion overclocking is different than normal gt. It will take 2x the power, but the recipe will go 2x faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":47,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":67,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":57,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1194,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32091,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32607,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32616,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32636,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32646,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2311,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1198,"preRequisites":[1199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1195,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lUpgrading the reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A mark 2 is nice, but why not make a mark 3? It will double the power needed per recipe, while cutting the processing time in half. This time you will need UV or above hatches, as well as Fusion machine casings MK2. This reactor is capable of doing all fusion recipes. Each energy hatch is capable of providng up to 8192eu/t, per energy hatch, for the recipe. The reactor can take as little as 8192eu/t to run. The UV hatch can accept up to 2 amps of 524288eu/t before it explodes, as usual."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":58,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":68,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":48,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":7,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1195,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32094,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32608,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32617,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32637,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32647,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2023,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1199,"preRequisites":[1197],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmetal1","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lMaking americium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you can upgrade your reactor, you will need to get some americium. The recipe will look pretty expensive, but once you made the next tier of reactor, you will unlock a simplier and cheaper one. You will need at least 128 plates for the reactor casings, 9 to scan for the recipe, and 4 to build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":141,"Damage":11078,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":141,"Damage":11030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal1","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":17103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32599,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1200,"preRequisites":[1212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1153,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lMaking power with your plasma","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a reactor, it's time to utilize it. The simplest plasma you can make for power is Helium plasma. It's renewable from water, but also provides a lot of power. However, you will need a way to convert the plasma into EU. To do this you will need a large plasma turbine. This will also need a dynamo hatch that can handle the power you're outputting. For Helium plasma, you will want a UV or above hatch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":18,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31325,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5204,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32090,"OreDict":"circuitUltimate"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":61,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":29,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1153,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32096,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32606,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2405,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1201,"preRequisites":[1200],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DraconiumAwakened","MaxDamage":19660800,"SecondaryMaterial":"DraconiumAwakened"}},"Damage":174,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lTurbine Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your fancy new Large Plasma Turbine will need a rotor to go inside of it. You can make it out of any gt material, but the best are trinium, awakened draconium and neutronium. Trinium will give you the most eu/t out of a single multiblock, with the best efficiency. Neutronium will give you the longest lasting turbine rotors with a lower efficiency, and less power per reactor. Awakened draconium will give you a balance between the two. You can make turbines in 4 different sizes. The larger the turbine the more eu/t it will produce. However, the largest turbine isn't also the most efficient. When using turbines be careful of flow rates. To find the optimal flow rate, you divide the optimal energy flow rate listen on the turbine, by the energy value for the plasma. Make sure to use a fluid regulator set to this flow rate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":196608000,"SecondaryMaterial":"Neutronium"}},"Damage":174,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11975,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1202,"preRequisites":[1198],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings4","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§e§d§n§o§r§l§d§lTime for another reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While one reactor is nice and all, why not make another? This time you can use the MK3 americium recipe to make it easier. "}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1203,"preRequisites":[1202],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§m§l§r§d§lMaking more americium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Costing just 1 ingot of Plutonium, and 2 buckets of hydrogen, this recipe is much easier and faster than the MK2 version. By making americium plasma, then putting it through a turbine, you will get americium in the liquid state. Again you will need at least 132 plates for the controller, and the fusion machine casings. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":11101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":264,"Damage":30001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":17103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32560,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32737,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1204,"preRequisites":[1],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCrafting time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to get yourself a 3x3 crafting area. Grab some flint and some wood, and build one!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:apple","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1205,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHoppers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hoppers come in handy when you want to automate your machines. \nYou can input items via hoppers directly into GT pipes and you don't have to use a conveyor belt. \nHowever, the input rate is much slower, and the hopper must be beneath its source inventory."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chocolatesprinklecakeItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1206,"preRequisites":[549,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Light Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some light fuel? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30740,"OreDict":""}]}]},{"questID":1207,"preRequisites":[552,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30741,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Heavy Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some heavy fuel? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""}]}]},{"questID":1208,"preRequisites":[107,933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":45,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Power Solar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar or lava. If you are able to make solar panels you can power your cart with the sun."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":45,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":1,"Damage":44,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1209,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Digging","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to automate digging for ores ? A drill head made out of iron is the cheapest alternative."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1210,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":69,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Thermal Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar or lava. Why not power your cart with lava?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":69,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1211,"preRequisites":[110],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: More Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you craft side chests you can add more different chests to the cart. Some sides are reserved for tools so no chest can be placed there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":3,"OreDict":""},{"id":"StevesCarts:CartModule","Count":1,"Damage":4,"OreDict":""},{"id":"StevesCarts:CartModule","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1212,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lStarting Fusion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that your power needs are increasing, you need a way to keep up with demand. To generate over 1A ZPM with a single machine you have two options: solars, and fusion. While solars are simpler to set up, solars cap out at 524288eu/t. Fusion can reach levels close to eight times that with the right setup. For your first reactor, you will need a controller, 2-16 fluid input hatches, 1-16 fluid output hatches, and 16 energy hatches. All hatches have to be LuV tier or better. Each hatch provides 2048eu/t for the recipe, and has a storage capacity of 160M eu. This means you can do any fusion recipe that takes less than 32768eu/t or less, and has a startup of 160M eu or less. Using more fluid hatches means you need less fusion casings. While this doesn't matter as much for the mk1 reactor, this principle helps tremendously with the high reactor tiers. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":56,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":66,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":46,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":32,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":32,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32092,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32606,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2403,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1213,"preRequisites":[1212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmetal3","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lGetting europium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make an mk2 reactor, you will need europium. Once you make a t6 rocket you will be able to find this as an ore. Until then you need to produce it in the reactor. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":13,"Damage":11067,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal3","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17070,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32599,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1214,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Clockwork Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Producing RF Power by hand is a good idea for making one or two recipes in the Forestry machines. The turrets can be charged with it too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24304,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31304,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11310,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1215,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bio Gas Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Producing RF Power with Lava is possible with the Biogas engine. You need Water, Seedoil, Milk, Sap Cresote or FR Biomass in the other slot. The engine outputs 50RF/t depends on the fluid you put in.\n\nFuel /Lava / Usage Energy Ticks\nWater Constant 10 RF/t 1000\nFruit Juice Startup/Restart Only 10 RF/t 2500\nLiquid Honey Startup/Restart Only 20 RF/t 2500\nMilk Constant 10 RF/t 10000\nSeed Oil Startup/Restart Only 30 RF/t 2500\nBiomass Startup/Restart Only 50 RF/t 2500"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24300,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31300,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:canSeedOil","Count":16,"Damage":0,"OreDict":""},{"id":"Railcraft:fluid.creosote.can","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:canLava","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:canBiomass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1216,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Peat fired Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Peat fired engines use Peat or Bituminous Peat to run. Peat burns for 5000 ticks and produces 10 RF every tick, 1 peat makes 0.66 Ash, so you get 2 Ash for burning 3 peat.\nBituminous Peat burns for 6000 ticks and produces 20 RF/tick.\n\nPeat Farms can be setup by using a managed farm with tin electron tubes. It is possible with a manual farm too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31032,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:peat","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:bituminousPeat","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1217,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Copper, Tin, Bronze Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22035,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22057,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":18,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":6,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":6,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":6,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:canBiomass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1218,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron, Gold, Diamantine Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22086,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":3,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":4,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:canSeedOil","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1219,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rubberised, Obsidian, Lapis Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22880,"OreDict":""},{"id":"dreamcraft:item.LongObsidianRod","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22526,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":8,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":6,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"minecraft:redstone_block","Count":7,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1220,"preRequisites":[1219,1218,1217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blaze, Endereyes, Emerald Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22801,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22533,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":7,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":12,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":16,"Damage":10,"OreDict":""},{"id":"Forestry:canHoney","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":20,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestryI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1221,"preRequisites":[1018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1181,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAdvanced Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More advanced circuits require an MV circuit assembling machine. Let's make one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1181,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30718,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1222,"preRequisites":[1014],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1182,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAdvanced Circuit Assembler II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your workstation circuits you can craft an HV circuit assembler. This is need for higher tier circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1182,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1223,"preRequisites":[1246],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lEV Circuits Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV circuit assembler requires IV Circuits to craft. With this assembler you can make a lot more high tier circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1224,"preRequisites":[1230,1228],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17470,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Epoxid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epoxid is needed for your advanced Circuits boards. You need Sodium Hydroxide, Epichlorohydrin and Bispenol A to make it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30648,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30669,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":4,"Damage":470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17470,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1225,"preRequisites":[1222],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lIV Circuit Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mainframes are the first IV Circuits you can make in HV. Used for EV and IV machines and components.\n\nIn addition, you will need 16 Capacitors, SMD or non-SMD.\n\nOnce you get a reliable polyethylene setup, it will save a lot of resources to use SMD components."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1226,"preRequisites":[845],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30629,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGlycerol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Glycerol becomes important in creating epoxid in the next tiers. It is important for TNT production too. It is left over when producing bio diesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":30629,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1227,"preRequisites":[1021],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30683,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHCL","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HCl becomes important for your epoxid production in HV/EV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30683,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1228,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30648,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEpichlorohydrin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epichlorohydrin is another product needed in your epoxid production. By now you should be experienced enough to figure out which path is best for your setup using NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30648,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1229,"preRequisites":[176,552],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30687,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPhenol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The easiest way is to get phenol out of heavy fuel. There are other ways, like getting it out of wood tar from a pyrolyse oven, isopropylbenzene and oxygen, or chlorobenzene and water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1230,"preRequisites":[552,1229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30669,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBisphenol A","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Bisphenol A you need to combine Phenol, Acetone and HCl in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30672,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30669,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32106,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1231,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lYou gonna hate this 1-4 in HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor Belts and robot arms are the most needed machine parts in HV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32642,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32632,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1232,"preRequisites":[1231,1233],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32692,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lYou gonna hate this 5 and 6 in HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32682,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32692,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11054,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1233,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnder Eyes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ender eyes are available at HV in the chemical reactor. Combine some ender pearls with blaze powder."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:blaze_powder","Count":1,"Damage":0,"OreDict":"itemBlazePowder"},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1234,"preRequisites":[1020,1224,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEmpty Expoxid Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epoxid circuit boards require epoxid plate, gold foil and sulfuric acid to make an empty board. By adding electrum foil and Iron(III) Chloride or Sodium Persulfate you can craft an epoxid or advanced circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17470,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32711,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17470,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1235,"preRequisites":[1013,1221,1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMicroprocessor LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Microprocessor is the most highest tier way to craft an LV circuit, but you get 2 per recipe. It requires plastic board, a cleanroom, a cpu and a few smd components."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1236,"preRequisites":[1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":253,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lCutting Machine HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nor, nand and other high tier chips require an HV cutting machine. This machine is also needed for cutting glowstone doped wafers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":253,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1237,"preRequisites":[746,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32031,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lGlowstone Doped Monocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make more advanced wafers, you need to make glowstone dopped monocrystalline silicon first. The process takes 600 seconds and requires silicon dust and glowstone dust in the electric blast furnace. You can make 32 wafers out of every boule.\n\nUnfortunately, these boules seem to require higher heat than cupronickel coils can produce. You'll need to go to Multiblock Goals and get a cleanroom, vacuum freezer, and kanthal coils in order to make them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2020,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32031,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1238,"preRequisites":[1237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32034,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lGlowstone Doped Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some glowstone doped silicon wafers, place the monocrystalline glowstone doped silicon boule in a cutting machine. An HV version of the cutting machine is needed for future wafers and chips.\n\nYou will need to cut these wafers in a cleanroom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32034,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1239,"preRequisites":[1238,1236,772],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNor and Nand chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The data stick requires nand chips. Nor chips are needed for more advanced circuits. You can get these by cutting nand and nor wafers.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32042,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32040,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32041,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24533,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1240,"preRequisites":[1239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Data Sticks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Data sticks are very important for seismic prospecting and for the assembly line in the LuV age. Go and craft a few data sticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1241,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRadon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Radon is used for quantum eyes, quantum stars and emitters and sensors in the EV machines. Try to find a Pitchblende vein first and/or recycle your plutonium and uranium from your reactor.\n\n§4This Vein can be found on Mars and Phobos."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1242,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lEV Chemical reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV chemical reactor is required to get some indium or make your radon production much faster. If you already made a large chemical reactor use that instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":424,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"minecraft:ender_eye","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1243,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4873,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPitchblende","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to try running your nuclear reactor you need some uranium or plutonium fuel. Go and find a pitchblende vein on Mars at Y 30-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4873,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4922,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1244,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lScheelite, Tungstate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is the material you need but first go find some scheelite and tungstate mix on Mars. Look at Y 20-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4006,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1245,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§f§a§lYou gonna hate this 1-4 in EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in EV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32613,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32643,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32633,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1246,"preRequisites":[1245,1247],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32693,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lYou gonna hate this 5 and 6 in EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32693,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1247,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuantum Eye","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantum eyes are required in EV emitters and sensors. Just infuse your ender eye with radon to get one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32724,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1248,"preRequisites":[1223,1249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are three variants of advanced circuits. The advanced electronic circuit, the processor assembly and the nanoprocessor. The Nanoprocessor needs an EV circuit assembling machine to be made. Use your epoxid boards for it.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32016,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1249,"preRequisites":[1234,1018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano CPU Wafer and Chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nano CPU Wafer is made out of a CPU Wafer with carbon fiber and molten glowstone in an EV chemical reactor. Cut it for nano CPU chips.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32055,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone_dust","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonFibre","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1250,"preRequisites":[1248],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32083,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor Array","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano processor array is an EV circuit. \nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32082,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32083,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1251,"preRequisites":[1250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32084,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lElite Nano Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The elite nano computer is an IV circuit.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32083,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32084,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1252,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":543,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lHV Chemical Bath","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV chemical bath or better is needed for the quantum eye."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":543,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1253,"preRequisites":[1319],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":37,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second largest storage component, used to make 16k ME storage cell, or can be upgraded to make 64k ME storage component. Can be recovered from a crafted 16k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":37,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1254,"preRequisites":[1318,1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 16,384 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1255,"preRequisites":[180,1256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highest tier storage cell, which can contain 65,536 bytes of storage. 65,536 bytes of storage can hold 8,128 stacks of a single item, or 4,160 stacks, while holding 63 different items. The 64k storage cell uses 512 bytes of data to store a single type. When placed inside a drive or chest will consume 2.0 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 64k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1256,"preRequisites":[1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Largest storage component, used to make 64k ME storage cell. Can be recovered from a crafted 64k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":38,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1257,"preRequisites":[1254,1256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 65,536 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":4,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1258,"preRequisites":[1298],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wireless Booster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wireless booster is used to increase the range of the ME wireless access point."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:ender_eye","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1259,"preRequisites":[1306],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Filling Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Export bus for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1260,"preRequisites":[1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingMonitor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crafting Monitor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which displays the top level job and its current progress so you can monitor at a glance how your crafting jobs are progressing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingMonitor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1261,"preRequisites":[1251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano processor mainframe is the cheapest LuV Circuit.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32084,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32706,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32011,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1262,"preRequisites":[206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":184,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBattery Buffer x9","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"EV battery buffer for up to nine batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":184,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1263,"preRequisites":[1262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11349,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBlue Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your sunnarium batteries are made out of blue steel: a mixture of steel, black steel, brass and rose gold."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2334,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2351,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11349,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1264,"preRequisites":[1263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32540,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV Sunnarium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first EV sunnarium battery used in EV tier. You make it with the sunnarium you generated before."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32503,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2318,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32540,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32540,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1586,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1265,"preRequisites":[1262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:MU-metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32054,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV GT++ Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A cheaper variant is the GT++ EV battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32538,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1428,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"miscutils:MU-metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1426,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1266,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":21,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLow Voltage Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's possible to run MV machines while still in LV age. Build a transformer and use 4 power sources 32 eu/t to power one 128 eu/t machine. You can change the mode of a transformer with a soft mallet. If the transformer is wired and loaded then DO NOT change the mode otherwise there probably will be a big explosion. Be careful when switching directions - better to break and replace than rotate with the wrench and blow up a line of machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":21,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1267,"preRequisites":[1266,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMedium Voltage Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's possible to run HV machines while still in MV age. Build a transformer and use 4 power sources 128 eu/t to power one 512 eu/t machine. You can change the mode of a transformer with a soft mallet. If the transformer is wired and loaded then DO NOT change the mode otherwise there probably will be a big explosion."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1268,"preRequisites":[1267],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":878,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLV High-Amp Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need a transformer with more than 4 amperes you need a high amp transformer. You can input four 128 eu/t power sources and output 16 ampere at 32 eu/t.\nModes can be changed with a soft mallet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":878,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1269,"preRequisites":[1268],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLow Voltage Power Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need even more amps then craft a power tranformer with a max LV output of 64 amps. You can input sixteen 128 eu/t power sources and output 64 amps at 32 eu/t. Modes can be changed with a soft mallet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1270,"preRequisites":[724,1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:itemSpade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Time for a Spade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having a Weeding Trowel, Hoe and Shovel in your Inventory is painful when dealing with crops. Get the Spade - it combines these items, is unbreakable, and increases the chance of getting seeds from plants.\n\nBe careful! Right-clicking on a plant pulls it for seeds. Make sure to switch to Sense or your open hand to harvest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:itemSpade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"White Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Nether Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Black Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Red Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Gray Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Yellow Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Goldfish Plant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}]}]},{"questID":1271,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":283,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lExtruder HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV Extruder is needed to extrude tough metals like Tungstensteel and HSS."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":283,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1272,"preRequisites":[634,1273],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wheaty juice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step to brew beer or other alcoholic fluids is wheaty juice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32115,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1273,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":491,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBrewing, the Industrial Way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want brews or alcohol, I recommend you to build one of these. You might have noticed that you cannot build a brewing stand without Thaumcraft. But fear not, you can still find them in chests. Better get searching..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":491,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1274,"preRequisites":[1273,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFerment your brew!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What's better than lame brews? Alcoholic brews! Get one of these to make beer, rum or even vodka."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":501,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"berriespp:BppPotions","Count":4,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1275,"preRequisites":[1278],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fake Jagermeister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jagermeister is a common drink in Germany, why don't you grab a bottle? This one seems to be a cheap fake tho..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:BppPotions","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":30,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1276,"preRequisites":[1272,547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Korn and Doppelkorn","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Korn is german for wheat. That's why this special alcoholic brew is named like this. Doppelkorn means double-wheat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:BppPotions","Count":1,"Damage":1,"OreDict":""},{"id":"berriespp:BppPotions","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1277,"preRequisites":[19],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:reeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sugarcanes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcanes are a source of sugar, and therefore alcohol. If you want some rum or sugar, you'll need these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:reeds","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1278,"preRequisites":[1272,893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vodka","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vodka is Russian for \"small Water\". It is a rather high proof alcoholic fluid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":1279,"preRequisites":[1090,931],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2347,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFirestone Ore/Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Firestone ore is handy for some base building machines. Unforunately, it's in the nether...at the bottom of the lava ocean! Here are some tips for finding it\n\nFirestone can be mined with the GT miners, if you place it within range.\nFirestone only spawns in deep lava, at least 6 deep. It will only replace netherrack, so a fjord filled with soulsand won't have any. Can you think of ways to check the lava depth, and what's down there?\nNormally you can't see through lava, but if you enable nightvision on the nanosuit, you can see a short distance at the bottom. But how to prevent getting burned?\nAlternatively, if you keep your head at just the correct height above the lava and at the correct angle, you'll be able to see underneath it - surely there must be a hovering jetpack?\nFirestone ore and products will cause random fires to start nearby, so get it into a backpack quickly!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2347,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2347,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1280,"preRequisites":[1277,1274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The industrial way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making rum can be automated, but you need to follow this industrial way for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32109,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"potion.freed","Amount":1000}],"ignoreNBT":0,"index":1,"consume":0,"taskID":"bq_standard:fluid"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"potion.swhine","Amount":1000}],"ignoreNBT":0,"index":2,"consume":0,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1281,"preRequisites":[1280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rum. Yummy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1282,"preRequisites":[1277,1283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sugar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"The gathering: Sugar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stockpiling sugar might be a good idea if you have a sweet tooth. Or not?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sugar","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:caramelappleItem","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCook","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1283,"preRequisites":[502,994,1284],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:jarFilled","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Honey for sugar.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since honey contains a lot of sugar, it might be a good idea to get some honey."}},"tasks":[{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"for.honey","Amount":1000}],"ignoreNBT":0,"index":0,"consume":0,"taskID":"bq_standard:fluid"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"honey","Amount":1000}],"ignoreNBT":0,"index":1,"consume":1,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:honeyedSlice","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1284,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:hive","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wasps honey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Giant wasps can be found in the Nether. Quick! Sneak into their hive and steal some honey!"}},"tasks":[{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"honey","Amount":5000}],"ignoreNBT":0,"index":0,"consume":0,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":1,"OreDict":""}]}]},{"questID":1285,"preRequisites":[495,98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:spike_base_diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Spikes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond Spike damages mobs that touch any side of it other than the bottom. With +7 attack damage, the Spike does as much damage as a Diamond Sword. Mobs will not walk around the block, but will try to walk over it as if it were a regular solid block. Most explosions won't destroy the Spike because it has a very high blast resistance.\n\nThese can also be enchanted with all the enchantments a regular diamond sword would receive. This includes Looting and Sharpness, which function exactly as it does on a sword. Interestingly, mobs killed by the Diamond Spike will return experience as if killed by the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17500,"OreDict":""},{"id":"minecraft:diamond_block","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:spike_base_diamond","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:epicbaconItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:diamond","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1286,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Primal Shrooms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Primal shrooms allow you to refill wands easier before you can move nodes to your base.\nGo and find some in a magical forest biome. Try using a Nature's Compass. Or buy some if no biome is close to your location.\n2 pumpkins and 4 entropy slivers are the perfect combo to make these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:ashroom","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""},{"id":"minecraft:nether_wart","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1287,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Vish Shroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magic mushrooms whoooo!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizard","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":5,"Damage":5,"OreDict":""}]}]},{"questID":1288,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemHops","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hops, the source of beer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't want pure alcohol, but beer, get some hops by crossbreeding IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemHops","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinFarmerI","Count":6,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1289,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":223,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lHV Bender","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV Bender is going to be 4x faster than your LV Bender, but it also opens up an important recipe - Tin cans! \n\nWith this bender you can turn Tin Casings into Tin Cans. Using the Tin Cans with food in a Canner (LV is fine) will make Canned Food. This can stack up to 64, and will fully restore your shanks - no need to rotate food types any more! You will eat as much as you need with one click. One drawback is you will no longer get the Well Fed buff with its slight health regen bonus. Also, these cans don't fit in the lunch bag or lunch box so you don't need those any more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":223,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemTinCanFilled","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1290,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Imma chargin' my...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Charged certus quartz is one of the basic components for a lot of AE recipes. Just mix some certus quartz and redstone dust to get charged certus quartz dust.\nUse the autoclave to make crystals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":"dustRedstone"},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2516,"OreDict":"dustCertusQuartz"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1516,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":810,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1291,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockEnergyCell","Count":1,"tag":{"internalMaxPower":200000,"internalCurrentPower":200000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping your Network Happy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Helps with fluctuating power. Energy cells store up to 200,000 AE. They do not accept power directly but are used to buffer some power in an already existing ME network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockEnergyCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":9,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1292,"preRequisites":[184,183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockDrive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Storing your ME data","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A block designed to do one thing, store storage cells. This block holds 10 storage cells so you can tightly pack your storage into a very small space. ME drives show their contents and the storage cell status on the front of the drive face. Red - Indicates the storage cell is full. Orange - Indicates the storage cell cannot hold any more types, but it can store more items. Green - Indicates the cell can hold more types, or more items. Black - Indicates there is no channel, or power is offline. It's important to note, that without an ME Network this block does nothing. It's only useful when combined with a way to input, and output items, and requires 2 AE/t power to function, and additional power for each storage cell stored inside it. The ME drive requires a channel to function."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockDrive","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1293,"preRequisites":[1292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:hardmedrive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Safety first!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This storage cell housing is blast proof and stores only 3 cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:hardmedrive","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1294,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockQuartzGrowthAccelerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speeding up growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Used to accelerate the process of purifying crystals, which allows you to create pure certus quartz crystal, pure nether quartz crystal and pure fluix crystal. Must be powered by an ME Network via the top or bottom, and consumes a steady 8 ae/t while plugged in. Crystal Seeds must be in an adjacent water block to be affected - the seeds will shimmer more rapidly when in the presence of a powered crystal growth accelerator. Can only connect to cables, or other networked machines on the top and bottom of the machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockQuartzGrowthAccelerator","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":1200},"Damage":1200,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1295,"preRequisites":[1294],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ae2stuff:Grower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Perfecting Crystal Growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The crystal growth chamber is used for fast crystal growth, and it is possible to increase its speed by installing an acceleration card in an upgrade slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ae2stuff:Grower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":1200},"Damage":1200,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1296,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purifying the impure","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Purified versions of nether, certus and fluix crystals"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":48,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2522,"OreDict":"dustNetherQuartz"},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2516,"OreDict":"dustCertusQuartz"},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":8,"OreDict":"dustFluix"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":1200},"Damage":1200,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":10,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8523,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1297,"preRequisites":[400],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:essence","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Dragon essense","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need some Dragon essense? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1298,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSecurity","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wireless Setup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Allows you to configure which users, and what permissions the users have with the ME System. By existing it enforces permissions on the usage of the system.\n\nThe security system does not prevent destructive tampering, removing cables / machines or breaking of drives. If you need to protect your system from physical vandalism you will need another form of physical security. This block provides network level security.\n\nThe player who places the ME security terminal has full control over the network and cannot exclude himself any rights. By adding a blank biometric card you define a default behavior for every player who has no biometric card registered.\n\nIn addition to security on the software layer, you can link up your wireless terminal with the network and access it wirelessly.\n\n\nAllows wireless access via a wireless terminal. Range and power usage is determined based on the number of wireless boosters installed into the ME wireless access point. A network can have any number of ME wireless access point with any number of wireless boosters in each one, allowing you to optimize power usage and range by altering your setup. Requires a channel to be operational."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSecurity","Count":1,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:tile.BlockWireless","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":32,"Damage":140,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":{}}]},{"questID":1299,"preRequisites":[1291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockDenseEnergyCell","Count":1,"tag":{"internalMaxPower":1600000,"internalCurrentPower":1600000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense boys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Giving your network even more stability. Dense energy cells store AE energy up to 1.6 million units. They do not accept power directly but are used to buffer power in an already existing ME Network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockDenseEnergyCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1300,"preRequisites":[1298,1299],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ToolWirelessTerminal","Count":1,"tag":{"internalMaxPower":1600000,"internalCurrentPower":1600000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME in the Ether","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you linked up the wireless terminal in the ME security terminal, it grants a portable access to the ME network. Put it into a charger to recharge it.\n\nHolds 1.6m AE in its battery and drains 1 AE/t for each block you are away from the nearest ME wireless access point."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ToolWirelessTerminal","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1301,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Annihilation and Formation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Formation Core - a component which can convert energy back into matter.\nAnnihilation Core - a component which can convert matter into energy.\nGates all network I/O."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":44,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":1,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1302,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":440,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Machines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME Interface is the only component which can be used as a part, or as a Block. Crafting an ME interface in either form by itself produces the other form. The thin form is useful if you want to provide several different interfaces in a single block of physical space, but each will need its own channel. The block form lets multiple other blocks connect to a single ME interface, using only one channel for the interface. The ME Interface acts as an in between when working with pipes, tubes, networks, or machines from other mods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":440,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1303,"preRequisites":[1302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":220,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Inventories","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME storage bus, when attached to another inventory block in the world lets you access that inventory via networked functions. This allows you to use chests, barrels, or other types of item storage in your networks.\n\nThe storage via the ME storage bus is bi-directional, it can both insert, or extract items from the inventory block it is attached to as long as the ME storage bus has its required channel.\n\nThe UI allows you to control which items are selected as storable items, this selection has no effect on what items can be extracted once they are in the storage.\n\nThe storage bus will function with nearly any inventory block, including ME Interface, Minefactory Reloaded DSUs, Factorization barrels, JABBA Barrels, and Better Storage crates. They can also be used to route items passively into Buildcraft pipes.\n\nIf you place a storage bus on an ME Interface the storage bus will be able to interact with the full conents of the target network, unless that interface is configured to store items inside itself, in which case it will see those stored items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":220,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11085,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1304,"preRequisites":[1303],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Storage bus for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1305,"preRequisites":[1302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"For Fluid Recipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ME interface for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1306,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":260,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Extracting Items From the Network","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME export bus extracts items from the ME network's networked storage and places them into the inventory it faces. You must configure which items it will insert, leaving the configuration blank will result in nothing. The ME export bus will try to export any of the items on its list skipping over those it cannot fit into the destination. The ME export bus requires a channel to function. This is the functional opposite of the ME import bus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":260,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1307,"preRequisites":[1297],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Dragon essense II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need some Dragon essense? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":320,"Damage":0,"OreDict":""}]}]},{"questID":1308,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":240,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inserting Items Into the Network","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pulls items from the inventory it is pointed at and places them into the ME network's networked storage. You can specify which items it will pull out via the UI, else it tries to pull out any item in the adjacent inventory. The ME import bus will attempt to import any possible options, even if 1 or more of the configured items cannot be stored. The ME import bus requires a channel to function. This is the functional opposite of the ME export bus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":240,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1309,"preRequisites":[1308],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Emptying Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Import Bus for Fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1310,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":39,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Something to put your Components in","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An empty storage container, you can insert any of the various storage cell parts into it to create a usable storage cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":39,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1311,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main processor for 1K and 4K cells.\n\nAs alternatives to storing items in ME, you can use a storage bus connected to other blocks. A common tactic is to connect to a bank of Compressed Chests or even a Drawer Controller in this way. This can help reduce the power requirements in your AE system."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":22,"OreDict":""},{"id":"dreamcraft:item.GoldCoreChip","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1312,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automating Crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Is a component of the crafting CPU. This particular block provides the CPU with no additional features, but can be used as a \"filler\" block and as a crafting ingredient for the crafting storage, monitor and co-processing units."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1313,"preRequisites":[1314,1310],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.1k","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lowest tier storage cell, which can contain 1,024 bytes of storage. 1,024 bytes of storage can hold 127 stacks of a single item, or 65 stacks, while holding 63 different items. The 1k storage cell uses 8 bytes of data to store a single type. When placed inside a drive or chest will consume 0.5 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 1k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand. The settings can be changed in the cell workbench."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.1k","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1314,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":35,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smallest storage component, used to make 1k ME storage cell, or can be upgraded to make 4k ME storage component. Can be recovered from a crafted 1k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1315,"preRequisites":[1314,1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 1024 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1316,"preRequisites":[1317,1313],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.4k","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second tier storage cell, which can contain 4,096 bytes of storage. 4,096 bytes of storage can hold 508 stacks of a single item, or 260 stacks, while holding 63 different items. The 4k storage cell uses 32 bytes of data to store a single type. When placed inside a drive or chest will consume 1.0 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 4k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.4k","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1317,"preRequisites":[1314],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second smallest storage component, used to make 4k ME storage cell, or can be upgraded to make 16k ME storage component. Can be recovered from a crafted 4k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1318,"preRequisites":[1317,1315],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 4,096 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1319,"preRequisites":[1317],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main processor for 16k and 64k cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":24,"OreDict":""},{"id":"dreamcraft:item.DiamondCoreChip","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1320,"preRequisites":[731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":242,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV compressor is twice as fast as the LV one but uses 4x the power. I suggest crafting 4 MV compressors for the new biomass processing line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":242,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1321,"preRequisites":[732],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":302,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV macerator is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":302,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1322,"preRequisites":[732],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":362,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV centrifuge is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":362,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1323,"preRequisites":[733,734,735],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellEmpty","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§6§lBiomass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chose the IC2 or the gregtech way to make biomass. Water and BioChaff is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1324,"preRequisites":[848,717,1544],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":512,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAdvanced Fluid Extractor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV fluid extractor is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":512,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1325,"preRequisites":[409],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:daggerOfSacrifice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dagger of Sacrifice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get more blood. Mobs are a good source for more blood. Transform your knife of sacrifice in your tier 2 altar into a dagger of sacrifice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:daggerOfSacrifice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1326,"preRequisites":[1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Co-Processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides additional item delivery from the CPU to the ME Interface for crafting.\n\nThis can be used to make more assemblers active in parallel for the job, and thus increase overall crafting speed. These only help if your setup has steps properly separated so the system can run multiple tasks in parallel, or even split the same pattern across multiple interfaces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1327,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":52,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Recipe Patterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A blank pattern, once encoded as an encoded pattern, is used to control crafting by inserting them into molecular assemblers and ME interfaces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":52,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1328,"preRequisites":[1327],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pattern Terminal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A specialized version of the ME crafting terminal designed to encode blank patterns into encoded patterns.\n\nLets you browse the contents of your network like other terminals, but also contains an area for designing patterns. There are two modes for pattern encoding. Crafting patterns, and processing patterns. Processing patterns are designed for use with machines that do not use standard crafting recipes - such as furnaces, or other machines. To select between modes, click the button to the right of the interface: when it shows a standard crafting table, it will create crafting patterns, and when it shows a furnace, it will create processing patterns.\n\nFor crafting patterns (\"Crafts...\"), you specify the input crafting materials on a standard 3x3 crafting grid, and the output materials are determined automatically.\n\nFor processing patterns (\"Creates...\"), you specify the input materials and output materials, including quantity, by placing stacks of items in the interface. If a processing operation is not guaranteed to succeed (such as secondary products from some machines), it will not work correctly as a processing pattern.\n\nWhen designing crafting patterns you can click the output to extract a crafted item as long as you have the materials required to craft the item.\nDon't forget to enable oredict substitution where needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17522,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1329,"preRequisites":[1300],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ae2stuff:Wireless","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME in your Cleanroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wireless connector is a close range quantum bridge alternative.\nConnections are point-to-point - you can't connect more than 2 blocks together. Each block will use 10 + distance^2 AE/t. Does not work across dimensions. Power needs to be provided on only one side. Up to 32 channels can be transferred through the connection. Can connect directly to dense cables. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ae2stuff:WirelessKit","Count":1,"Damage":0,"OreDict":""},{"id":"ae2stuff:Wireless","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":10,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1330,"preRequisites":[1306],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ore Dictionary Output","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME ore dictionary export bus will attempt to push the configured item/fluid [From the same ore dictionary] from the ME network into a machine or other input inventory. To configure an item/liquid, type in the item's name [e.g. if you want to export all ores put \"ore*\"]. The rate of export is very fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1331,"preRequisites":[203],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ToolMemoryCard","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"To Link P2P Busses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A small item, that can be used to store, copy, and paste settings. Shift + right click on a configurable object to save the settings onto the memory card, then right click on any other block of the same type to paste the settings. They are also used to link the input P2P tunnel to the corresponding output P2P tunnels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ToolMemoryCard","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1332,"preRequisites":[237,935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Solar LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The power of the sun x10. This solar panel works like 10 regular ones, but costs only 9. How is this possible? Magic! NOTE: They give out GT EU. NO TRANSFORMER NEEDED!"}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":8,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.ReinforcedAluminiumIronPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1333,"preRequisites":[240,238,88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Potentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aren't you tired of voiding all that useless potentia essentia? Well here's the solution:\nA generator that consumes potentia and outputs GT EU NO TRANSFORMER NEEDED!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"potentia"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemAdvBat","Count":3,"Damage":26,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32681,"OreDict":""}]}]},{"questID":1334,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Auram","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Generator is quite tricky. It requires Auram Essentia, that isn't that common, but its output is nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"auram"}]},"Damage":1,"OreDict":""}]}]},{"questID":1335,"preRequisites":[241,1332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused Solars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Compressed Solar Panels can be infused with Aspects for certain additional features. Check them out and choose one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemEssence","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:BlockJarFilledItem","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1336,"preRequisites":[1332,261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double Compressed Solar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"100EU/t for 72x1EU/t Solars? Sounds like a good deal. Get one of these. They can be Infused as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockGenerator","Count":5,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""}]}]},{"questID":1337,"preRequisites":[1335,1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Even more Infused","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can infuse double or triple compressed solars as well."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1338,"preRequisites":[1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Full power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triple Compressed Solars. Yes, that's right. They are a bit more expensive than their lower counterparts, 576 Solars in total. But they give out 1,000 GT EU per tick and have no need to be cleaned. How so? Magic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EMT:EMTSolars","Count":1,"Damage":4,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":10,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":13,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":7,"OreDict":""},{"id":"EMT:EMTSolars2","Count":1,"Damage":0,"OreDict":""},{"id":"EMT:EMTSolars2","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1339,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So, you got rid of the Potentia, maybe you don't want Ignis, but Potentia? Get this one to be able to burn Ignis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"ignis"}]},"Damage":1,"OreDict":""}]}]},{"questID":1340,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Arbor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When using magical plants to get Praecantatio Essentia, you'll end up with a couple dozen of Arbor Essentia jars. But no worries! This generator runs on Arbor! Awesome!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"arbor"}]},"Damage":1,"OreDict":""}]}]},{"questID":1341,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcanes to power...? This generator runs on Aer Essentia, it might not be as powerful as it's counterparts, but it's fuel is cheap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"aer"}]},"Damage":1,"OreDict":""}]}]},{"questID":1342,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Lucrum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This highly-warped, high-power Essentia generator is a lifesaver, when you run out of energy. Just toss some gold into your Arcane Furnace and burn the Lucrum you get."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"lucrum"}]},"Damage":1,"OreDict":""}]}]},{"questID":1343,"preRequisites":[645,230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:FeatherWing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Works like in anime!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want to fly. Badly. So go and ductape wings!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:FeatherWing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1344,"preRequisites":[1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ThaumiumWing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since you have access to better materials than cardboard now, you wanted to make wings. Angel wings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ThaumiumWing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1345,"preRequisites":[1344,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanosuitWing","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secret-Angel-Assasin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Infusing your Wings with Nano-Technologies seems to be the next step, to further improve them and combine magic and technology."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanosuitWing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1346,"preRequisites":[1364],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dropped in Asgard, fallen to earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've heared rumors of a mighty weapon, dropped in Asgard and fallen to earth. Could this be the mystical Item?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1347,"preRequisites":[1346,1361,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:Mjolnir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Repaired it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sadly enough, the hammer was broken. But you have the skills and the knowledge to repair it, don't you?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":2,"Damage":6,"OreDict":""},{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemSwordElemental","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemBatCrystal","Count":2,"Damage":26,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17880,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EMT:Mjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1348,"preRequisites":[1347],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:SuperchargedMjolnir","Count":1,"tag":{"charge":2000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Super-Mjollnir","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Addidional tweaks to your Mjollnir have changed it. Now you can summon Guardian Snowman to help you out!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:SuperchargedMjolnir","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":12,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1349,"preRequisites":[226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricGogglesRevealing","Count":1,"tag":{"charge":100000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electrogoggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you wander with your Goggles of Revealing you noticed that they tend to break easy. So craft yourself some electric ones that just need to be charged again!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricGogglesRevealing","Count":1,"Damage":165,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1350,"preRequisites":[1349,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanosuitGogglesRevealing","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nano Goggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The #1 product for spies and wanna-be-spies. Nano-Goggles. Don't you want one of these too? But they are sold out? Craft some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanosuitGogglesRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1351,"preRequisites":[1350,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumGogglesRevealing","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Goggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you continue to progress, you notice that your black goggles don't match your nice white and shiny armor. You decide to get a pair of white ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumGogglesRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":5,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1352,"preRequisites":[1351,1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:SolarHelmetRevealing","Count":1,"tag":{"charge":20000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Goggles > 9000","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This special pair of goggles recharges itself while you wander in sunlight. How convinient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:SolarHelmetRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":1353,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:electricCloud","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sparking Nitor...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"YELLOW! What an ugly color! I want PURPLE Nitor! Get me some and you'll receive something nice in exchange."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"EMT:electricCloud","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCandle","Count":16,"Damage":10,"OreDict":""},{"id":"Thaumcraft:blockWoodenDevice","Count":4,"tag":{"color":10},"Damage":8,"OreDict":""},{"id":"TConstruct:slime.gel","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1354,"preRequisites":[1096,789],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricScribingTools","Count":1,"tag":{"charge":400},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rechargeable Scribing Tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you tired of getting all the Ink for your scribing and you don't want to use your blood either? Get this Hi-Tech Scribing Device which will make your life much easier! Treat it like an LV machine - charge in any LV machine's battery slot, or in an LV battery buffer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricScribingTools","Count":1,"Damage":400,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemBatCrystal","Count":1,"Damage":26,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemInkwell","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1355,"preRequisites":[1345,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumWing","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings - Ultra Force!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"From ore to ingot, from nano to quantum, as you progress, your technology level increases, so should your wings as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumWing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"IC2:itemOreIridium","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1356,"preRequisites":[1355,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:itemArmorQuantumChestplate","Count":1,"tag":{"charge":20000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings - Combine!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last step is to combine the quantum armor with your quantum wings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:itemArmorQuantumChestplate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1357,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricHoeGrowth","Count":1,"tag":{"charge":200000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric Hoe-ing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the Hoe of Growth breaks easily, we have a fix for you! Get this one and simply recharge it, when it's empty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricHoeGrowth","Count":1,"Damage":1561,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1358,"preRequisites":[1333,215,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTMachines","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"EU->VIS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This device allows you to charge your wands using EU, but it costs 10kEU per Vis restored."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTMachines","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":1,"Damage":52,"OreDict":""}]}]},{"questID":1359,"preRequisites":[238,79],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ShieldFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Press and hold the B button to block!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Focus allows you to block any incoming damage. Sneak away if you're fighting an enemy too strong for you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ShieldFocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1360,"preRequisites":[1359],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ShieldBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reactor Shielding 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Shield Blocks - explosion proof - single use. Get a couple of these to shield your reactor!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ShieldBlock","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemOreIridium","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1361,"preRequisites":[1365],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What the Heck...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You found a yellow-ish glowing ball. It might be useful later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1362,"preRequisites":[1363],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:BaseBaubles","Count":1,"tag":{"warp":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The One Ring.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So you found it. The One Ring, forged by a mighty Dark Wizard. A strange feeling tells you to put it on. The Ring seems to whisper to you as well..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:BaseBaubles","Count":1,"tag":{"warp":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1363,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Ring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:BaseBaubles","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1364,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Mjolnir","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1365,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Ballthingy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1366,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]},"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ocean Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Ocean Bees? Since some servers don't provide ocean biomes, buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beePrincessGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""}]}]},{"questID":1367,"preRequisites":[486,995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgrade your Forestry Backpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your woven silk you can upgrade your Forestry backpacks. Each Pack has 45 slots.\nYou need a carpenter, your old backpack and a bit of seed oil.\n\nIf the recipe is not working, put the bag in a crafting grid to reset additional nbt data."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":18,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:diggerBagT2","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:minerBagT2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:craftingMaterial","Count":9,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1368,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Lost in the Twilight Forest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stay in the Twilight Forest and your portal gets broken, you are stuck. Every 24h you are able to exchange some materials to get a new portal crystal to escape."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.tfFeather","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFFirefly","Count":4,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.torchberries","Count":16,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFLog","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1369,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Time to find some Amber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every Thaumcraft Infused Stone vein has a bit of amber ore in it. Go and find some amber ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":514,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1370,"preRequisites":[1369],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Light it up!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The arcane lamp creates additional light sources which acts like a Torch in a sphere with a radius of 16 blocks centered on it. This will include caves or other areas behind walls. That might be useful... One downside, it might put a light where one isn't wanted, like inside an EBF. \n\nWhen attached to the base of an arcane bore, the arcane lamp gains an additional ability: It will light up the tunnel that the bore digs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCosmeticOpaque","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1371,"preRequisites":[827],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.canisterPartialLOX","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"LOX and Bagels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LOX canister is an alternate solution to refilling your oxygen tanks.\nTo make liquid oxygen you need 1 oxygen cells.\nPut this in the HV powered vacuum freeezer to get 1 cell of liquid oxygen.\nTransfer this liquid oxygen into a tank, and then into a LOX canister.\nTo refill your oxygen tanks just put the tank and the LOX canister in the crafting grid to transfer oxygen.\nEach LOX canister can fill 4 Heavy Oxygen Tanks, 6 Medium Oxygen Tanks, or 12 Light Oxygen Tanks. With a full stack you won't need to bring oxygen equipment with you.\n\nSo much Greggy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":1,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.canisterPartialLOX","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":900,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1372,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Fire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Fire is a basic wand focus. When equipped to a wand, it will be able to spew a short-range cone of fire by holding down the right mouse button. Its base vis cost is 0.1 ignis per second.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusFire","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1373,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusExcavation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Excavation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Excavation when equipped to a wand, will emit a green beam of light that will mine blocks of any hardness (except for blocks like Bedrock) from a distance.\nIts base vis cost is 0.15 terra per tick that it mines a block. It is also used in operating the Arcane Bore.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusExcavation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1374,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Shock","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Shock when equipped to a wand will shoot a bolt of lightning when the right mouse button is pressed. It homes in slightly to the nearest mob/player from where it is aimed. Its base vis cost is 0.25 air per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1375,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Equal Trade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Equal Trade is a wand focus added by Thaumcraft 4. It is used to switch out blocks in the world with blocks in the player's inventory. Shift right-clicking on a block with it equipped will attune the focus to the block, making it the substitute block. Left-clicking on another block will replace it with the substitute block. Right-clicking will transform a 3x3 area of blocks that the player can see (the focus will not affect blocks behind those). This range can be extended by using a Focal Manipulator. Each use costs 0.05 ordo 0.05 perditio and 0.05 terra.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1376,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusFrost","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Frost","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Frost when equipped to a wand will launch a ball of ice that can bounce off of blocks and mobs if their hardness is high enough. It will inflict Slowness on mobs, freeze water and solidify lava. Its base vis cost is 0.05 aqua 0.02 ignis and 0.02 perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusFrost","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1377,"preRequisites":[1373,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusWarding","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Warding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Warding can be used to make blocks invincible. To ward a block, right click on it with a wand or staff with this focus on it. This will make the block invincible until it is unwarded by right clicking it again with the wand. Take note that only the player who warded the block can unward it. \n\nWarded Blocks are completely indestructible and will produce particle effects similiar to runic shielding when the owner or another player tries to break it. Also, blocks that are affected by gravity(such as sand and gravel) will not fall when warded. Warded blocks cannot be affected by any outside influence such as redstone and pistons. If you attempt to ward glass, it will break the glass instead. There is a block known as warded glass available within the warded arcana research. The only way to break the warded block is via the owner right clicking with a wand in hand. Warding a block costs 0.1 aqua, 0.25 ordo and 0.25 terra.\n\nSpecial Note: Warded blocks emit light.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusWarding","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1378,"preRequisites":[1375,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPortableHole","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Portable Hole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Portable Hole when equipped to a wand will create a temporary 3x3 hole centered on the targeted block that will go 32 blocks. Some blocks cannot be passed through, such as Bedrock. Its base vis cost is air 0.1 and perditio 0.1 per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPortableHole","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1379,"preRequisites":[1182,1180],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart with Chunkloader","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When transporting oil from long distances, a train is going to need a chunk loader. Craft one, and I'll give you a second one for free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChunkloaderTierI","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1380,"preRequisites":[234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPech","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Pech's Curse","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Pech's Curse is a rare wand focus which cannot be crafted by the player. It can only be obtained from a Pech Thaumaturge -- either by trading, or by killing it for the drop. (If attacked, the Pech will use it against you!) Its vis cost per shot is 0.1 Perditio, 0.1 Terra and 0.1 Aqua.\n\nThe focus fires a small ball of energy with a bright bluish-green trail. This missile is affected by gravity, so the shots need to be \"arced\" to hit distant targets. When the shot hits a mob, it does one heart of damage and randomly inflicts one of several effects on the target: Poison, Weakness, or Slowness. A 5th-level upgrade to the focus can make it give all the effects at once.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPech","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1381,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Primal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Primal will hurl an orb of primal energy while holding right-click with it equipped. The orb explodes on impact, and has a small chance to cause other effects, such as creating taint, or a node at the impact site. Its base vis cost changes every tick.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1382,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pimp your Wand Focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Manipulator requires both XP levels and centi-vis in order to upgrade foci. Each Focus can be upgraded a total of five times, with the level and vis cost increasing by 8 for each upgrade. Some upgrades can be applied only at certain levels (often only at level 3), and others have prerequisite upgrades. Some upgrades like Frugal and Potency can be applied multiple times. All upgrades are permanent, and there is currently no way to remove them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1383,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Node Stabilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced node stabilizer acts like a normal node stabilizer but with key differences. It will still stop the node it affects from being drained but the node can now drain from other lesser nodes. It also has a higher chance to improve fading and unstable nodes. The downside is that any nodes it affects will have their recharge rates effectively reduced to nothing. They will recharge at an extremely reduced rate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1384,"preRequisites":[234,1373],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusSmelt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Efreet's Flame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Efreet's Flame is a Wand Focus that smelts blocks like a Furnace would when pointed and fired at them. It shoots a beam similar to the Wand Focus: Excavation. Each usage consumes 0.45 Ignis and 0.12 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusSmelt","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1385,"preRequisites":[1375,238,1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusDislocation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Dislocation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Dislocation allows the user to take and place any blocks, even Tile Entities and things usually unobtainable, like Aura Nodes and their energized counterparts.\nIt uses:\n5 Ordo + 5 Perditio + 1 Terra to take any solid block. \n25 Ordo + 25 Perditio + 5 Terra to take any block with tile entities (such as Chest). \n100 Ordo + 100 Perditio + 20 Terra to take Mob Spawner.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusDislocation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1386,"preRequisites":[1380,238,1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusHeal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Mending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Mending is a wand focus that will slowly mend the Caster's wounds by expending Vis. The Focus consumes 0.45 Aqua and 0.45 Terra per cast, healing half a heart (1 health).\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusHeal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1387,"preRequisites":[1384,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Uprising","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Uprising is a wand focus that propels the player in the direction they're facing. When used, the focus consumes 0.15 Aer per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1388,"preRequisites":[1387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusDeflect","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Disorientation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Distortion can be equipped on any wand. It protects the caster from \"ordinary\" projectiles such as arrows, snowballs, and potions. The focus can be enabled by cycling through the foci currently in the player's inventory, which is done with the F-key. The focus consumes 0.04 Aer and 0.08 Ordo per tick from the Vis stored in the wand while in use.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusDeflect","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1389,"preRequisites":[1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusEnderChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Ender Rift","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Ender Rift is a Wand Focus that opens the vanilla Ender Chest remotely when the player right-clicks with it. When used, the focus consumes 0.9 Ordo + 0.9 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusEnderChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1390,"preRequisites":[238,1387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:xpTalisman","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Telekinesis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Telekinesis is a wand focus that can move nearby objects such as dropped items, arrows etc. where you are pointing with the wand or towards you, if you hold Shift key while using it. Consumes 0.05 Aer + 0.05 Perditio per tick used.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusTelekinesis","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1391,"preRequisites":[238,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Experience Drain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Experience Drain will drain the player's experience at a rate of 15 xp per tick, restoring vis at a rather fast rate.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusXPDrain","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1392,"preRequisites":[238,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusShadowbeam","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Shadow Beam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Shadowbeam shoots a beam of energy that is reflected by any block and damages everything it passes through. The beam travels a rather short distance though. Consumes 0.15 Aer + 0.25 Ordo + 0.25 Perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusShadowbeam","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1393,"preRequisites":[1380,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTaint","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Tainted Storm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Tainted Storm can be equipped on any wand and will emit a stream of tainted particles which will damage anything in a short distance and inflict Taint Poison for 5 seconds. The focus will also debuff the caster with Flux Flu III for 10 seconds unless enchanted with Antibody. The foci can be enchanted with Frugal, Potency, Enlarge, Antibody and Corrosive. Each cast costs 0.1 Aqua + 0.1 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTaint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1394,"preRequisites":[1393],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTaintedBlast","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Tainted Shockwave","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Tainted Shockwave will release a powerful shockwave around the caster which travels 15-20 blocks and will damage all mobs in the radius and push them back the same as a Knockback II enchantment. After using this foci the caster will be unable to use any other magic for 15 seconds. The foci can be enchanted with Frugal and Enlarge, each level of Enlarge will add 1 block to the shockwave radius. Each cast costs 10 Aqua + 5 Ordo + 10 Terra + 10 Perditio.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTaintedBlast","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1395,"preRequisites":[243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusVisShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Vis Shard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Vis Shard can be equipped on any wand. While equipped, it can be right-clicked to cast a homing projectile which deals 2-5 damage points. This projectile can bounce off of solid blocks. If the target is not hit in 10 seconds, the projectile disappears. This focus can be enchanted with Frugal, Potency and Persistent.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusVisShard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1396,"preRequisites":[320,284,1378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusEldritch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Dark Matter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Dark Matter allows the player to cast the projectiles Eldritch Guardians cast. Can be upgraded with Potency, Frugal, Sanity, Diffusion and Corrosive. For each projectile cast the player will get Temporary Warp. This will not happen if the focus is enchanted with Sanity. Enchanting the focus with Diffusion will change its firing mode from single projectiles to short-range black gas which acts as a flamethrower.\n\nEach cast costs 0.2 Ignis + 0.2 Perditio. With Corrosive each cast will cost additionally 0.2 Aqua + 0.3 Ignis\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusEldritch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1397,"preRequisites":[320,284,1396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTime","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Time can be equipped by any wand. When used during day, will set the time to dusk. When used during night, will set the time to sunrise. Each cast costs 10 of all primal aspects and will make the player unable to use any other foci for 30 seconds.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTime","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1398,"preRequisites":[320,284,1396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusMeteorology","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Meteorology","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Meteorology can be equipped by any wand. When used during rain will stop rain, when used during sunny weather, will start rain. Each cast costs 10 of each primal aspect and will make the caster unable to use any other foci for 30 seconds.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusMeteorology","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1399,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusMageMace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Mage's Mace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Mage's Mace can be equipped by any wand and will boost attack damage up to 15 hearts. It can be enchanted with Frugal, Potency and Bloodlust. Each attack with this focus costs 0.5 Perditio.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusMageMace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1400,"preRequisites":[1378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:BlinkFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Blink","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Blink is a very powerful focus allowing to teleport whenever you click, as long as the destination is less then 50 blocks away from you. But, as there is no teleport cooldown, you can travel extremely fast with it. Consumes 3 Perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:BlinkFocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1401,"preRequisites":[1382],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusShock","Count":1,"tag":{"upgrade":[{"id":0},{"id":-1},{"id":-1},{"id":-1},{"id":-1}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infuse your Focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Try to add Potency to your Shock Focus. At Level 3 you can add Chain Lightning or Shock Wave."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusShock","Count":1,"tag":{"upgrade":[{"id":0},{"id":-1},{"id":-1},{"id":-1},{"id":-1}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1402,"preRequisites":[274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27084,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iridium screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chrome screws are nice, but they seem to break if too much vis channels through them. Get some Iridium screws."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27084,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1403,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1122,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Steam Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to use steam in HV tier then it's time to build a steam turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1122,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1404,"preRequisites":[81,78,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2320,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSuperconductors 128 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 128 EU MV Wires ? Pentacadmiummagnesiumhexaoxide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix cadmium, magnesium and oxygen in a mv mixer. Next te base dust needs an EBF with Kanthal Coils. A vacuum freezer is also required to cool it down. Make some MV Superconductor base Wires and use an assembler to combine these wires with Helium, Stainless Steel pipes and HV pumps to get your 128 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2055,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2018,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2987,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11987,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2200,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2200,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5140,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32611,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2320,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1405,"preRequisites":[79,860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSuperconductors 512 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 512 EU HV Wires ? Titaniumonabariumdecacoppereikosaoxide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix titanium, barium, copper and oxygen in an HV mixer. Next the base needs an EBF with Nichrome Coils. A vacuum freezer is also required to cool it down. Make some HV Superconductor base Wires and use an assembler to combine these wires with Helium, Titanium pipes and EV pumps to get your 512 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":1028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":27,"Damage":1063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":1035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":2988,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11988,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2220,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2220,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":5150,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2340,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1406,"preRequisites":[1245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":214,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV asembler is required to make some lapotron crystals. Other recipes are twice faster than with an HV assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":214,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1407,"preRequisites":[806,1246],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":594,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§k§r§a§lEV Laser Engraver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV precision laser is required to make quantum crystals. Other recipes are twice as fast than with an HV precision laser."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":594,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11085,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1408,"preRequisites":[861,1243,86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lSuperconductors 2048 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 2048 EU EV Wires ? Uraniumtriplatinide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix uranium 238 and platinum in an HV mixer. Next the base needs an EBF with Tungstensteel Coils. A vacuum freezer is also required to cool it down. Make some EV Superconductor base Wires and use an assembler to combine these wires with Nitrogen, Helium, Tungstensteel pipes and IV pumps to get your 2048 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2098,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2989,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11989,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2240,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5160,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32613,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1409,"preRequisites":[475,1522,1005],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2380,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSuperconductors 8192 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 8192 EU IV wires? Vanadiumtriindinide is a superconductor wire and will transfer your energy without any loss. Every voltage now has superconductor wires and a base wire with only a very small EU/t loss.\n\nMix vanadium and indium in a HV mixer. Now you have the base dust, which needs an EBF with HSS-G coils, and a vacuum freezer to cool it down.\n\nMake some IV superconductor base wires and use an assembler to combine these wires with nitrogen, helium and niobiumtitanium pipes and an IV pump to get your 8192 EU/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2029,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2056,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2990,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11990,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2260,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2260,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5180,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32614,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2380,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1410,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":585,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Mixer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An IV mixer is required to mixe niobiumtitanium and vanadiumgallium dust. Other recipes are twice faster than with an EV mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":585,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11047,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11037,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1411,"preRequisites":[854,851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2241,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSome rare high tier metals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Small piles of Platinum, Palladium, Iridium and Osmium can be extracted with a chemical reaction with using nitric acid. You don't have the technology to process it right now but later on you need large amounts of them. You can start now to collect some dust and process it later.\n\n§4A chemical bath also extracts Platinum from Nickel ore. Time to head back to the Twilight Forest!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30653,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6855,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6909,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2241,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":85,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":84,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":83,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30659,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6855,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1412,"preRequisites":[1890,1707],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAssembling Line","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The assembling line (short form 'Ass Line') is a multiblock and important for high tier Components in LuV tier and above for Motors, Pistons, Robot Arms, Pumps and many more.\n\nThe machine can be 5-16 blocks long. The minimum length required depends on the number of components and fluids required by the recipe it's crafting. A length of 11 blocks will fit 80 percent of all recipes in GTNH.\nThe bottom layer must have on one outer side all the Input Hatches for fluids (4), in the bottom middle layer Input Busses for items(10), and on the end 1 Output Bus. Also on the bottom outer layer must be one Maintainance Hatch. The rest is Solid Steel Machine Casings.\n\nThe second layer on the outer sides left and right are Reinforced Glass and in the middle center Assembling Line Casing.\n\nThe third layer has on the left and right Grate Machine Casings and in the middle Assembler Machine Casings (Note the name change!). The Assembling Line control block and Data Access Hatch are on the opposite edge from the Input Hatches - not at the end with the Output Bus.\n\nThe fourth layer is a single line of Solid Steel Machine Casings in the middle(11), with two Energy Hatches for power. Once you have it built, you can replace the two IV energy hatches with 1 LuV energy hatch.\n\nAutomating the assline is God tier GTNH endgame. While it can be done with Enderio, it's easier to use SFM or OpenComputers.\n\nFor more details on using the Assembly Line, check out the wiki page https://tinyurl.com/GTNH-Assline"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":39,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":55,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":10,"Damage":75,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":85,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockAlloyGlass","Count":22,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":11,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":45,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":145,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":20,"Damage":10,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":15,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:paper","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"squidink","Amount":1000}},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1413,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYou gonna hate this 1-4 in IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in IV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32614,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32644,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32634,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1414,"preRequisites":[1539,1538],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYou gonna hate this 5 and 6 in IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32684,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1415,"preRequisites":[188,187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lPure Uranium Ores","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want pure uranium ores, you'll need to visit Deimos or Phobos to fetch it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":922,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":98,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1416,"preRequisites":[1243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMallard Rust Smelly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or is it Alloy Blast Smelter? Well, that makes more sense. This multiblock creates the higher tier alloys needed for the more advanced GT++ multiblocks. It directly smelts into liquids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":16,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":13,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"miscutils:itemDustIncoloy020","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:itemDustIncoloyMA956","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:itemDustInconel625","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1417,"preRequisites":[1494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":758,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCough cough - Something needs to be done about the smell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Birds falling out of the sky, fish dead and floating belly up in the rivers, acid rain melting the ground...Time to start picking up the trash and cleaning up the air. Small steel turbines should be fine for now. You'll need two amps of steady power to keep the scrubber working."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":756,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:itemAirFilter","Count":11,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":170,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":759,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"miscutils:itemAirFilter","Count":2,"tag":{"AirFilter":{"Damage":0}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1418,"preRequisites":[1416,861],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":812,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§9§a§lEU packets flowing everywhere...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...in my dreams. What if instead of having battery packs on every generator, we could centralize all the generation in one location? Put it away from the well travelled parts of the the base? Out in the country somewhere? Let the animals deal with the pollution. Anyways, let's start working on a Power Sub-Station to store EU and deliver it to our base. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":19,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":80,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":812,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1419,"preRequisites":[779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":892,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who cares about a little cancer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when it means you don't have to strip naked to recharge your nanosuit? \nThe Wireless Charger will keep your armor and tools charged up without having to put them into a battery buffer. \n\nIt will charge armor and tools at the tier and below.\n\nYou didn't want kids anyways..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":892,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":1600000},"Damage":32538,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1420,"preRequisites":[1164,1521],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":840,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lShake that booty...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...out of the purified ores. Anyways, a Large Sifter will increase your sifting rate significantly. What will you do with all these gems??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":18,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":47,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":840,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:diamond_ore","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":502,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":501,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":503,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":514,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":542,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":543,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":541,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":540,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":545,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":544,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1421,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":797,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hulk Smash!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mass destruction! Or at least, lots and lots of crushed ores. Build a maceration statck to keep up with all the ores you are getting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":26,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":797,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4873,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1422,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":850,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The rocks in the washer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...go round and round, all the live long day. A large orewashing plant gets your rocks nice and clean."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":70,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":850,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":944,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":526,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1423,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":849,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dancing in circles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spinning around, getting hot - sounds like a dance. Or a thermal centrifuge. Build a large thermal refinery to get the most out of your ores.\n\nYou can use Noise Hazard Signs instead of Thermal Processing Casings, as long as you have at least 8 Thermal Processing Casings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":4,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":849,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1424,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Ilmenite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ilmenite will give a better amount of Titanium per Ore than Bauxite.\nThis Vein can be found on moon at Y Level 10-70."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":918,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":825,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":842,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":925,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1425,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Calculation processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some printed calculation circuits? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":23,"OreDict":""}]}]},{"questID":1426,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find some Meteoric Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach tier two planets like Mars or its moons Phobos and Deimos you need a better rocket. Your next goal is Tier two rocket plates which need meteoric Iron. \n\nYou will find small meteoric iron ore under the surface. Use a high tier miner or multiblock miner to get extra fortune on small ores. Small meteoric iron is only from Y=50-70, so try to find tall hills.\n\nMine the fallen meteors on the surface. Use your ears to listen to their impacts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":3340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":5340,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronRaw","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1427,"preRequisites":[80,1430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 10 tier 2 heavy duty plates out of tier 1 plates and meteoric iron plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":10,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":17340,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":32463,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":10,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17340,"OreDict":""},{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1428,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The tier 2 rocket uses an elite circuit, a heavy duty plate tier 2, and the data stick in a ev circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":2},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1429,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of hard work and tons of stacks of iTNT your second rocket is finally ready. But before you can go to Mars you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":10,"Damage":3,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1430,"preRequisites":[80,1428],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Recycle your rocket and save the Environment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why not recycle your old Tier 1 rocket to get componets for your new tier 2 rocket? Put your old rocket in an arc furnace or plasma arc furnace to get back lots of materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":32462,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"IC2:blockITNT","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1431,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.engine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Booster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The distance between Mars and Earth is much larger than to the Moon and so the rocket needsboosters to reach it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.meteoricIronIngot","Count":6,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1432,"preRequisites":[1427,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mars Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Mars lander is required for a soft landing.\nPut the Moon lander on a Parachute and surround it with airbags - that will do the trick. You hope.\n\nHint: Some times you can't loot or break the lander. Try to retrieve the contents with a hopper underneath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.canvas","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1433,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.moonBlock","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While looking for the meteoric iron you will find a moon dungeon. Look for a deep hole that is not a crater with a bottom that is not moon rock - it will show you the way to the dungeon. Go and fight a few mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 2 rockets.\n\nKill the Boss Monster again in a different dungeon if you want an extra tier 2 schematic to exchange for a moon buggy schematic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":16,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1434,"preRequisites":[1435],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.buggy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Patrol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Moving faster on the Moon or other planets surface will be fun. I'm sure it will be totally safe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":11,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":5,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.buggy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1435,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Buggy Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The moon buggy needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The moon buggy circuit uses a EV-tiercircuit, a heavy duty plate tier 1, and the data stick in a ev circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":100},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1436,"preRequisites":[1434],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.landingPad","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fueling your Buggy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The moon buggy needs gasoline to work. Build a 3x3 fueling pad, connect it with a fuel loader, and place the buggy on top."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":9,"Damage":9,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":9,"Damage":0,"OreDict":""},{"id":"Railcraft:cube","Count":9,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.landingPad","Count":9,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1437,"preRequisites":[1426],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankMedFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bigger Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Medium oxygen tank is an oxygen storage tank that can hold up to 1800 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank. I recommend making the medium tanks and using the light tanks as spares to return to base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":14,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankMedFull","Count":2,"Damage":1800,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1438,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Me glass cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ME glass cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":24,"Damage":16,"OreDict":""}]}]},{"questID":1439,"preRequisites":[1371,1440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumcraftneiplugin:Aspect","Count":1,"tag":{"Aspects":[{"amount":2,"key":"aer"}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Permanent Oxygen Systems","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You decided to have a longer stay on the moon and look for a permanent oxygen setup to refill your outdoor gear and building a small Base.\n\nDon't forget to bring repair stuff for your tools and armor! Dream 2018!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":128,"Damage":0,"OreDict":""},{"id":"minecraft:glass","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":10,"Damage":0,"OreDict":""},{"id":"minecraft:leaves","Count":64,"Damage":0,"OreDict":"treeLeaves"},{"id":"minecraft:log","Count":16,"Damage":0,"OreDict":"logWood"},{"id":"gregtech:gt.metaitem.01","Count":2,"tag":{"GT.ItemCharge":1600000},"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1440,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Bubble Distributer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Oxygen Bubble Distributor takes oxygen from the Oxygen Collector, and makes an oxygen bubble providing an area to safely breathe in without needing Oxygen Gear. The bubble is a sphere surrounding the distributor and will go through walls (or any block). Alternatively, you can use an Oxygen Sealer (need compressed Desh Plates) to contain oxygen inside a room."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:leaves","Count":512,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1441,"preRequisites":[1445],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.glowstoneTorch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Space torches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Normal torches won't work in space, only in the area within the oxygen bubble.\nOne solution is glowstone torches. You can also use other mods' lights and lamps. You'll probably want 3-5 stacks for mining veins.\nAnother is to use nightvision and a magnum torch or GregTech monster repellator to keep mobs away. These do not work on the official servers, instead claim and unclaim chunks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.glowstoneTorch","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"FloodLights:electricIncandescentLightBulb","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":23010,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1442,"preRequisites":[692,80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Steel Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed steel armor has more durability than the steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":24,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftCore:item.steel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:tnt","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1443,"preRequisites":[1442,186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.deshChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Desh Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed desh armor has more durability than the compressed steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":24,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftMars:item.deshHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1444,"preRequisites":[1442,162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.titanium_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Titan Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed titan armor has more durability than the compressed steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftMars:item.titanium_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1445,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:clock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Day and Night time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon's day-night cycle is 2h 40min long, equaling 8 Overworld days and it is linked to the Moon phases seen on the Overworld. The daytime on the moon lasts from a full moon to the next new moon (4 Overworld days, equaling 1h 20min) and, logically, the nighttime lasts from the new moon to the next full moon.\n\nSince the 1st Overworld night is full moon, you can safely land within the 1st 4 Overworld days, and then the next 4 Overworld days are more dangerous since hostile mobs will be able to spawn in the dark, and so on. If you miscount, the moon phases can tell you when it is daytime or nighttime on the moon. Full moon is the start of the moon day, new (or dark) moon is the start of the moon night.\n\nDuring the nighttime, the environment light levels go very low, allowing hostile mobs to spawn on the surface."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1446,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.mars","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mars Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours you will find a Mars dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 3 rockets.\nIf you need the schematics for the astro miner or the cargo rocket, kill another Boss Monster and exchange the schematics.\nBefore you journey home make sure you fulfill the quest requirements in the EV tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.mars","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":16,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1447,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The astro miner needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The astro miner circuit uses a EV-tier circuit and a heavy duty plate tier 3 and the data stick."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":102},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1448,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The third tier schematic circuit uses an elite circuit and a heavy duty plate tier 3 and the data stick in a iv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":3},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1449,"preRequisites":[1446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cargo Rocket Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cargo Rocket has the capability to transport solid items between dimensions, and is a perfect way to transport items between dimensions without relying on Enderchests.\n\nThis rocket can be loaded with 2000 fuel points or 2 buckets of Rocket Fuel. The safe fuel level is 80 percent. \n\nYou can fill up the right slots with chests to increase the storage space to 36 and 54 slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":101},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1450,"preRequisites":[1447],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemAstroMiner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Astro Miner is an automatic mining vehicle which moves around, making tunnels and mining up everything it finds, and brings it all back to a base station where it docks. It is not player-rideable* so do not try and climb inside it!\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.orionDrive","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32603,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.beamReceiver","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemAstroMiner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11884,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1451,"preRequisites":[1450],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.minerBase","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner Base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To construct the dock, place 8 Astro Miner Base blocks in a cube, 2 blocks high, 2 blocks wide and 2 blocks deep. When the last of the base blocks is placed, it should automatically convert into an Astro Miner Base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4177,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":8,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":2,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.machineTiered","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.minerBase","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11081,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1452,"preRequisites":[205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Launch Controler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To use the Cargo Rocket at full capacity it is necessary to equip a Rocket Launch Pad, to send items, with:\n\nFuel Loader\nLaunch Controller\nCargo Loader\nAnd the receiving side with:\n\nFuel Loader\nLaunch Controller\nCargo Unloader\n\nIt is also possible to use Buildcraft pipes to transfer items into the Cargo loaders. Next step is to set up the Frequencies in both Launch Controllers (i.e. Set: A to target B, B to target A). Have a look at Launch Controller to setup the automated launch. The first time you have to right-click the Cargo rocket and press launch at the top right corner."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.fuelLoader","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:tile.marsMachine","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1453,"preRequisites":[80,1446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 42 tier 3 heavy duty plates out of tier 2 plates and desh plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":42,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":168,"Damage":17884,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":32464,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":42,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17884,"OreDict":""},{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1454,"preRequisites":[1453,1457,1448,1456,1458,1459,1460,1473],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After days of hard work and a hundred tons of stacks of iTNT your third rocket is finally ready. But before you can go to the Asteroids, Ceres or Jupiter Moons you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":3,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":12,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":2,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":96,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1455,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Fluix crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some fluix crystals? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":24,"Damage":7,"OreDict":""}]}]},{"questID":1456,"preRequisites":[176,1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Tier 3 or Deep Space lander is required for a soft landing.\nPut the Mars lander in a desh cage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":6,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1457,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Nose Cone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone. Tier 3 rocket needs a heavy nose cone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1458,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. A heavy one is needed in the tier 3 rocket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":5,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1459,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Fins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins. Tier 3 rockets need heavy ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1460,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.MediumFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Medium Fuel Canister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 3 rocket you need to craft two small and two medium canisters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DeshDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.TitaniumDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":4,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1461,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4884,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Desh is a very important material for high tier rockets and used by many recipes in Galacticraft and Galaxy space. Go and find a desh vein on Mars at Y 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4841,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1462,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thermal Cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thermal Padding is a suite of garments made out of an advanced insulating material. The garments are able to keep a player from freezing to death in the cold environments of Outer Space. They are also able to keep the player from suffering heat exhaustion in an overly hot environment.\n\nThe temperature indicator on the Life Support HUD will show if the player is becoming too hot or too cold - as the temperature approaches dangerous levels, an \"Invalid Thermal Protection\" warning will be shown. On Mars and the Asteroids, simply wearing a full set of Thermal Padding should be enough to fix this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":24,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":96,"Damage":29019,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":96,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":2,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11340,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1463,"preRequisites":[1454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sleeping in Space","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cryogenic Chamber is used to sleep on other planets and skip long nighttimes. It can be used at any time, even during the daytime, and in any dimension, including the Overworld.\n\nUsing the chamber during the daytime will skip the time to the next sunrise, except on the Asteroids dimension where the Sun is always locked on West.\n\nOnce the player has used the Cryogenic Chamber, there is a 300 seconds cool-down time before he can use the chamber again. Breaking and placing back the chamber or trying to use different chamber will not reset the cool-down time, unless by dying.\n\nThe chamber does not require energy to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":2,"OreDict":""},{"id":"CarpentersBlocks:itemCarpentersBed","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":3,"OreDict":""},{"id":"minecraft:clock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1464,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.arclamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arc Lamp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Arc Lamp is a very bright lamp. It is directional - meaning the light it casts is brighter in the direction it is facing. Its facing can be rotated using a Standard Wrench.\n\nIncluding the Arc Lamp the brightness of blocks which are close to light sources is:\n\nRedstone Torch: 3-6\nTorch: 9-12\nBlock of Glowstone: 10-13\nArc Lamp: 13-14\n\nThe Arc Lamp can light up a fairly large area - for example a whole room - at light level 14: it is almost as bright as full sunlight.\n\nThe Arc Lamp also has the interesting property of actively repelling mobs. Not only does its light prevent mobs from spawning nearby, but it is so bright that if a mob comes close to the Arc Lamp the mob will turn around and walk away again. This mob repellant effect is confirmed to work on : Zombies, Skeletons, Creepers, Evolved Zombies, Evolved Skeletons, Evolved Creepers. It may also work on other types of mobs (confirmation required). But it has no effect on Spiders (they are not afraid of sunlight either) or boss mobs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":112,"Damage":5,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":16,"Damage":16,"OreDict":""},{"id":"GalacticraftCore:item.battery","Count":16,"tag":{"electricity":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.arclamp","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1465,"preRequisites":[1467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.airLockFrame","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Air Lock","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Air Lock is an airtight door used to provide a passage between enclosed rooms and between an enclosed room and outer space. It is made from Air Lock Frames and one Air Lock Controller.\n\nThe air lock will keep air inside the room while it is closed. But when the air lock is open, the room is no longer sealed and oxygen gear must be worn until the air lock is closed. In environments with extreme temperatures, Thermal Padding must also be worn."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.airLockFrame","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:tile.airLockFrame","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1466,"preRequisites":[1467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":20,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Temperature Control","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ambient Thermal Controller is an item for use in the Oxygen Sealer to provide thermal protection in sealed spaces.\n\nAmbient Thermal Controller is useful in the dimensions too cold or too hot for players to survive without Thermal Padding.\n\nIt can be placed in the 3rd slot next to the energy and oxygen slots in a working Oxygen Sealer. Once the Ambient Thermal Controller is in the sealer, it will heat or cool the output oxygen according to the local environment, and then the player can safely take the thermal padding off in the sealed room."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":10,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1467,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.sealer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Sealer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Oxygen Sealer is a machine that fills a room with oxygen (although the oxygen is generally not visible) up to around 800-1000 blocks (amount stacks with multiple sealers within close proximity) allowing the user to breathe without Oxygen Gear. Unlike the Oxygen Bubble Distributor, the Oxygen Sealer confines the oxygen to the room it is in. The sealer must be supplied with power and sufficient oxygen. See Oxygen Collector for supplying oxygen.\n\nThe sealer will only work in a room that is completely sealed off from outer space. This can be achieved with either a completely closed off room, or with an Air Lock. The sealer must have nothing above it to block its vents. It is designed to check for a proper seal about every 5 seconds, so be sure to give it time to seal.\n\nEach sealer requires at least 320 air points per second to work continuously or it will fail."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.sealer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":{},"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":6,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1468,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankHeavyFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Large oxygen tank is an oxygen storage tank that can hold up to 2700 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":14,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32406,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankHeavyFull","Count":2,"Damage":2700,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1469,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.sludge","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bacterial Sludge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bacterial Sludge is a fluid block that generates naturally on Mars.\n\nIt generates in the giant underground caves in Mars and floods over almost the whole cavern floor.\n\nCollect it to produce mutagen for bees mutation in gendustry."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":256,"tag":{"Fluid":{"FluidName":"bacterialsludge","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:shears","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1470,"preRequisites":[1469],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.cavernVines","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cavernous Vine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cavernous Vine is a poisonous plant that grows naturally in the Mars underground. It grows from the ceiling down to the floor in the huge caves flooded with Bacterial Sludge, emits light and can trap mobs in it.\n\nAny mob that touches this plant will be poisoned, dragged up and lose health down to 1 health point (half a heart) while trapped in this plant. Mobs that are immune to poison, like Zombies and Skeletons, will not lose health.\n\nThey grow from the bottom face of a solid block down to 1 block away from the floor.\n\nCavernous vines can be broken by hand without taking damage or being poisoned but they will drop nothing. They can be obtained as an item using shears. Even picks with Silk Touch enchant will not obtain anything.\n\nOnce obtained, they can be replanted elsewhere and regrow, like cactus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.cavernVines","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":6,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1471,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Slimeling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slimeling is a utility mob that spawns from Slimeling Eggs found on Mars surface. It shares some features from vanilla wolves and mules: it can be tamable and attacks mobs that threaten its owners, and can be equipped with a special chest to transport items.\n\nAs an allied mob, Slimelings will actively help and follow the player-owner and will attempt to protect them. They can also have a neutral behavior, that is, they can attack if provoked or hurt by non-owners.\n\nItems that you can feed Slimelings with:\n\nBoat\nCooked fish\nGunpowder\nGold ingot\nRedstone repeater\nWooden door\n\nSlimelings can be equipped by their owners with a Slimeling Inventory Bag to transport items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:boat","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_fished","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:repeater","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1472,"preRequisites":[1462],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.grapple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Grapple","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Grapple is a grappling hook and rope which can be thrown by a player, and then used to swing the player in the direction it was thrown. Useful for reaching places that are otherwise too high to jump to, or traveling around the Asteroids.\n\nRight-click to aim the Grapple at a block you want to reach, similar to aiming a Bow. Release the right-click - similar to firing an arrow from a bow - to grapple yourself in that direction.\n\nFor best results, aim the Grapple at a point 1 or 2 blocks higher than the point you want to reach.\nIf there is no safe platform to land at that point, you can fall back down and you will take fall damage, so it takes some skill to use the Grapple safely.\nTake care using the Grapple near a Nether Portal, End Portal or at a low height (less than y = 30) on a Space Station. There can be strange consequences if it crosses into another dimension."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":14341,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.grapple","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.battery","Count":16,"tag":{"electricity":0},"Damage":100,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11341,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1473,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nice and comfortable - in space!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These thermal clothes will keep you nice and warm even in the coldest depths of outer space."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.TungstenString","Count":96,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":96,"Damage":29028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ThermalClothT2","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":1,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":2,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":16,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1474,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:drum","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWant to join a band?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or at least play with drums? If you have extra Meteoric Iron after building your rocket and thermal padding, turn it into Meteoric Steel and use it to make some drums. These drums can hold 256 buckets even after breaking."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17305,"OreDict":"plateSteel"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28341,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5134,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ExtraUtilities:drum","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:drum","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1475,"preRequisites":[10],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":34,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCows are supposed to Moo!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What the? You noticed sometimes when you kill something, even a cow or chicken, that it explodes! What madness! To stop it, use a proper GregTech Knife or Butchery Knife. Craft a flint GregTech knife with a stick and a piece of flint (last NEI page) and I will give you an old iron one to use once it wears out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"Iron","MaxDamage":25600,"SecondaryMaterial":"Iron","Damage":2800}},"Damage":34,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:porkchop","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1476,"preRequisites":[492],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":16},{"lvl":2,"id":21}],"GT.ToolStats":{"PrimaryMaterial":"Iron","MaxDamage":25600,"SecondaryMaterial":"Iron"}},"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAll the finest cuts of meat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This knife is not going to work for slaughtering the hundreds of animals you will need for food and materials. Make yourself a GregTech Butchery Knife. It stops the explosions, and kills the cows much faster. Later when you get Stainless Steel, you can make a new one that will kill cows in one hit.\n\nNote: GT Tool damage is based on mining level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":21}]},"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"minecraft:leather","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:beef","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1477,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #6 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sixth item you'll need a lot of. For the scanner and the seismic prospector."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":29501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1478,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #5 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fifth item you'll need a lot of. For the microwave, the scanner, the precision laser engraver, etc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1479,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Ring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber rings? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":28880,"OreDict":""}]}]},{"questID":1480,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:dustRadium226","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRadon Decay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Radon is used for quantum eyes, quantum stars and emitters and sensors in the EV machines. Try to find a Uranite vein first. \n\nYour washed Uranium 238 ore goes to the sifter and you get a small chance of Radon 226. It needs up to 4500 ticks or 75 mins to decay. So get used to your hazamit suit around base or sit and enjoy a few sunsets. Make sure to send it out for cleaning after you are done. After decaying you can electrolyze radon gas out of it.\n\n§4This Vein can be found on Phobos, Deimos or Ceres."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:itemDustDecayedRadium226","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1481,"preRequisites":[198],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXQuad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§l4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1482,"preRequisites":[1477],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.detrav.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":1000,"SecondaryMaterial":"Steel"}},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lPortable prospecting tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have some tech, you've discovered a way to prospect for ores. This tool only has a chance at finding the ores in a chunk. If you are clever, you can use it to locate ores.\n\nUnfortunately, the tech to make it repairable or rechargeable doesn't work yet, so you'll have to make a new one each time it breaks. It does work better at higher tiers and lasts longer with better materials.\n\nAnd since it doesn't make a convenient book like the seismic prospector, you'll have to keep track on your own where the ores are found.\n\nIt can be hard to choose a good material for the Basic Prospector. Here are some good choices for you, the size searched, and their durability:\n\nArdite 5x5 - 4500\nDamascus 3x3 - 5600\nVanadiumsteel 3x3 - 8400\nVibrant Alloy 5x5 - 17700\nShadow 5x5 - 36000\n\nEach chunk successfully scanned costs 100 durability. Each failed chunk costs 25. The average for MV is ~55 per chunk when scanning a large area.\n\nGood luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1483,"preRequisites":[1410,1584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MalformedSlush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Really op food","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You hear about Dezil's Marshmallow a really OP food which can be found from time to time in chests. What about I show you a way to cook this stuff yourself?\n\nAfter you mastered the flowing spirit in the dream dimension put a bit of flour, sugar, salis mundus and draconium dust in your IV Mixer. \nThe recipe starts when you give flowing spirit to it and gives you malformed slush, a very stinky and disgusting piece of...something. \n\nBe careful you'll get blindness II when holding it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2881,"OreDict":"foodFlour"},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":14,"OreDict":""},{"id":"minecraft:sugar","Count":2,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":2,"Damage":0,"OreDict":"dustDraconium"},{"id":"witchery:bucketspirit","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MalformedSlush","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:bucketspirit","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1484,"preRequisites":[1483],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Uncooked Slush","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to form this slush a bit. Use a Mashmallows form and press it with your iv forming press. Remember to sterilize it after using.\n\nBe careful you'll get bindness and hunger II."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MalformedSlush","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MarshmallowFormMold","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MarshmallowForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1485,"preRequisites":[1150,539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Carbon"},"Damage":1503,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBrittle but hits like a sledgehammer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Carbon crossbow limb is 1/3 the durability of the magnalium limb, but hits a lot harder and shoots a little faster. But you'll want to carry around a tinker table and extra ingots to repair it constantly, and watch that you don't break it in the middle of combat!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Carbon"},"Damage":1503,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1486,"preRequisites":[1484],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowing Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is heating up your Marshmallow in a Electrc Blast Furnace at 4500k whit some radon gas and make it glow.\n\nNow you get a Paralysis II effect in addition to the others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""},{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6098,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1487,"preRequisites":[1486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cooling your Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In the next step you cool your glowing Mashmallows in an HV Vacuum Freezer to make it more stable.\n\nYou still get Weakness II and Nausea II."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:epicbaconItem","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1488,"preRequisites":[1487],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dezil's Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In the last step you need to infuse your Marshmallow with some epic food in the thaumcraft infusion altar. Before you can do it you need to unlock the research.\nWarp will be added."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:epicbaconItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:deluxechickencurryItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1489,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32655,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lNow you realy gonna hate this 1-4 in LuV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in LuV. Go and craft one of each with your new Assembly Line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32655,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1490,"preRequisites":[1489],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32695,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lNow you realy gonna hate this 5 and 6 in LuV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32695,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1491,"preRequisites":[86,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lHSSG","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make Tungsten Steel upgrade your Electric Blast Furnace with new Coils you are able to make HSS-G Ingots. This ingot becomes very important in LuV tier.\n\n§4HSS-G is made out of tungstensteel, chrome, molydenum and vanadium dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1492,"preRequisites":[942,97,1549],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:MU-metatool.01","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plunger 2.0 The Hand Pump Replacement","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What? Lost your hand pump already? Well here is a replacement. Well sure it costs a few coins too, don't be such a fumble fingers next time! What do you think I am, a hardware store?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1493,"preRequisites":[213,1412,215,1491,1413,1414],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lTier 7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"LuV-Level. You will need chrome for machines. Suggested planets and moons to visit: Jupiter's Moon Io, Venus and Mercury. Machine parts will now require an Assembling Line - Check Multiblock Goals for details."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:venusblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1494,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lStainless taking too long?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time for a second blast furnace! \n\nYou can make ingots faster 3 ways - better coils, higher tier energy hatches, or adding more furnaces. It's probably time to add a second EBF to your base. EBFs can share walls and input/output hatches, but not mufflers or energy hatches.\n\nRemember pollution will be very high with two EBFs active at once!\nWatch out for high pollution effects. Use the best mufflers available and don't place the EBFs in the same chunk as farmland or other high pollution machines like pyrolyze ovens and large boilers.\n\nYou can use whatever coils you have lying around, but you might want to start searching for Mica if you haven't found any yet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":92,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32529,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":172,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1495,"preRequisites":[1204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:command_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lAll alone in the night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are playing single player survival, updates mean having to reload default quests. Use this block to do it for you without having to enter creative mode - you don't lose progress, but you'll have new quests to complete!\n\nSorry, no rewards, other than the satisfaction of knowing it's you versus the world. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1496,"preRequisites":[28],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lHow the heck do I find ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"TL;RD - Go install InGameInfoXML from https://tinyurl.com/GTNH-IGIX\n\nGregTech ore generation is based on veins. Veins are centered on orecenters, based on the chunk number. To find the chunk number, hit F3. In the X and Z lines you will see numbers like\nc: 3 (14)\nc: -2 (1)\n\nThe 3,-2 is the chunk's address. Ignore the negative sign. Now, the orecenters are located at 3N+1 chunks. So, 4,7 is an orecenter. 10,16. -22,19. Etc. \n\nProtip: to find out if a number is divisible by 3, add the digits and see if the sum is divisible by 3. So 86 = 8+6 = 14. So you need to go down 1 chunk or up 2 chunks so that you are on a 3N+1 chunk.\n\nFor reading all the way, I'll give you an ingot of iron."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1497,"preRequisites":[1496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:gold_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lDigging deeper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you know where to dig, dig all the way down to bedrock to find if there is a vein located there.\n\nNow, what if you know what you want but not where to find it? Our fancy bartimausnek developer has added a nifty feature to NEI that shows you where to find ores! Simply look for the oreblock in NEI, and click on it for info on where to find that ore.\n\nMake sure you look for the Gregtech variety of the ore."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"amount":1,"rewardID":"bq_standard:xp","isLevels":1,"index":0}]},{"questID":1498,"preRequisites":[1497],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:coal_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA dimension by any other name...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use this table to decode dimension names\n\nOW - Overworld\nNe - Nether\nTF - Twilight Forest\nEN - End\nVA - Vanilla End Asteroids\nEA - End Asteroids\nMo - Moon\nMa - Mars\nAs - Mars Asteroids\nBC - Barnard C\nBE - Barnard E\nBF - Barnard F\nCa - Callisto\nCA - Centauri A\nCe - Ceres\nDe - Deimos\nEn - Enceladus\nEu - Europa\nGa - Ganymeade\nHa - Haumea\nIo - Io\nKB - Kuiper Belt\nMM - Makemake\nMe - Mercury\nMi - Miranda\nOb - Oberon\nPh - Phobos\nPl - Pluto\nPr - Proteus\nTE - Tau Ceti E\nTi - Titan\nTr - Triton\nVB - Vega B\nVe - Venus\nDD - Deep Dark/Underdark\n"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1499,"preRequisites":[91,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":541,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChemical bath","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wait, what? You want more byproducts from your ores? A cheaper way to make paper? Well, the chemical bath is perfect for you! \n\nYou'll have to provide liquids like mercury to extract different products like nickel, silver, copper, and platinum from ores. \n\nFor paper you'll only need some water and wood pulp. Maybe you'll find more uses for it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":541,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1500,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"questbook:ItemQuestBook","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBetter Questing?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For quests to save properly, you must be online and logged into your Mojang account. Sorry, it's a limitation of Better Questing."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1501,"preRequisites":[1500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:blockCampFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBackup your stuff...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Single player? Please install your preferred backup mod, or use the command line to backup your game. Not sure which to use? §6AromaBackup for 1.7.10 §rworks pretty well.\n\nRemember though Journeymap and Thaumcraft Node Tracker information isn't included with AromaBackup, so you should backup your journeymap and tcnodetracker directories after exploration."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1502,"preRequisites":[166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockWirelessCharger","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTesla would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of sticking your EnderIO items in the capacitor bank to charge it? Time to make a wireless charger."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockWirelessCharger","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1503,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lNobody wants an explosion...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...right? So when building multiblocks, make sure you\n\n1. Don't cross chunk boundaries with the multiblock.\n\n2. Don't rely on resources coming from outside the chunk to prevent explosions. In other words, make sure you source your water locally.\n\nGood luck."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1504,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ifu:ifu_buildingKit","Count":1,"tag":{},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§e§k§l§r§3§2§lDivine rod of the gods?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ore finder rod takes some of the tedium out of finding an ore. You'll need to find some first to make it, but once you have it you can use ore blocks to find more ore. It only tells you if that specific ore is nearby. Later you will want to return with better digging tools and check every spot.\n\n§4Be sure to use your NEI skills to figure out which ore block is the best choice for your needs.\n\n§4Other basic ore blocks can be purchased from the Coins tab.\n\nTo use, shift click when looking at the ground to open inventory and put the ore block into the slot.\n\n§rAs you get close, you will see and hear a response from the ore finder tool. You will see the durability bar change when it discovers a match. Watch out - it will respond to small ores as well as normal ores so Lapis and Redstone you will want to wait for large signal before digging. If it detects a large quantity of the ore you're looking for the wand will flip upside down completely and fill the durability bar. If you play with your sound on you will hear an obvious sound to notify you as well. The wand works in both your inventory and hotbar and you don't need to be actively holding it, though you get style points if you are holding it.\n\n§4Also, because of the magical nature of the wand, the ore is stored with the player, not the wand. If you want to give the wand to someone else, please remove the ore first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"woodStick"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},{"id":"minecraft:redstone","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"ifu:ifu_buildingKit","Count":1,"tag":{},"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":1,"Damage":35,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":937,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":870,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":834,"OreDict":""},{"id":"minecraft:clay","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1505,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNot enough items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More like too many items!\n\nHere are some tips for using NEI.\n\nWhen you have your inventory open, you can type the search terms in the text bar. Make sure your GUI size is set correctly, or you won't be able to see it. Double-click the bar to highlight any matching items in your inventory. Handy for searching that obsidian chest!\n\nEven better, you can use T to search nearby inventories, which will emit some particles. We have also provided the special Y command to look for a machine in the world, in case you've forgotten where you placed that Advanced Circuit Assembler.\n\nO will make the NEI information hide."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1506,"preRequisites":[1505],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNEI is more powerful than you imagine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"NEI has some really nice advanced features too.\n\nClick on an item to see the recipe to create it, and press Backspace to go back to the previous recipe. \n\nHold Shift to stop the oredict toggling items, and to show the oredict entries for the current item under your cursor.\n\nSearch using #oredict to find items that match that oredict; for example, #dyewhite will list all white dyes.\n\nSearch using @mod. to find all items from that mod; for example, @mod.gt++ will list all GT++ blocks.\n\nUse * (asterisk) as a wild card. For example large * fluid pipe will show you all the large fluid pipes.\n\nIt has more advanced features, you should check the web for details."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1507,"preRequisites":[36,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:item.BiblioClipboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lMaking a list, checking it twice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As your base grows, you're going to have a dozen different long term goals each with many steps. Build a clipboard to keep track of what you need to do."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.BiblioClipboard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1508,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:CraftingStation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA better crafting table","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of your stuff falling out of your crafting table every time you walk away? This fancy table from Tinker's Construct has slots to hold the items in your recipe. \n\nYou can use it to upgrade tools with 8 modifiers at a time. Very handy for additional speed or looting!\n\nWhen it is placed next to a vanilla chest, it will even show the chest's inventory in the crafting window. Single or double vanilla chests only please.\n\nCut it again for a sleek, low profile version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:CraftingStation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"harvestcraft:plumjellysandwichItem","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1509,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemTravelStaff","Count":1,"tag":{"Energy":250000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTravelocity!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A staff of traveling can get you really moving around your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemTravelStaff","Count":1,"tag":{"Energy":0},"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1510,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"naturescompass:NaturesCompass","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBiomes everywhere, but not the one you want?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of searching all over the map for that Bamboo Forest or Tropical rainforest? Desperate for clay dust and need to find a Canyon biome?\n\n§4Nature's compass will lead you to the biome you are looking for, if it is within range."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"naturescompass:NaturesCompass","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1511,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:habitatLocator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Humid and warm?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stop guessing what the humidity and temperature are for your biome. Use the habitat locator to get a reading on your current climate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:habitatLocator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1512,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Put the drones in a jar and shake it up","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you get good effects from your bees, instead of just trashing the excessive drones, you can put them in collector's jars to get the effects anywhere in your base.\n\nHealing? XP? Poison?\n\nThe collector's jars can even be piped or connected to a conveyor so that drones last a long time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1513,"preRequisites":[1114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameMagic","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alternatively, you can try going through the Apimancy tree of your Thauminomicon to make Magic Frames. They're the core of magically endowed frames. They also have a special ability - no maximum production chance. Normal frames are ineffective once you reach 10x production but with magic frames you can keep going - just watch out, above 16x you'll be working your bees so hard they have a chance to degenerate into ignoble, or die outright. Frames to lower genetic decay will lower chances of this happening."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameMagic","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:frameMagic","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":1514,"preRequisites":[1114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.cocoa","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chocolate frame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The chocolate frame can be used to increase production, but reduces lifetime. A shrewd beekeeper can use this to speed up mutation by using 3 in an apiary to kill off queens quickly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:hiveFrame.cocoa","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.cocoa","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":26,"OreDict":""}]}]},{"questID":1515,"preRequisites":[1514],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.soul","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are the bees buzzing, or screaming?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Soul frames don't shorten the life of the bee as much as chocolate frames, but they greatly increase the chances of a mutation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:hiveFrame.soul","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.soul","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":1516,"preRequisites":[1513],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameOblivion","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bees buzzing beyond the dark","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If even the soul frame takes too long for your taste, the oblivion frame will destroy a bee in a single bee tick (27s). Be careful using more than one, there are rumors it might harm your princesses..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameOblivion","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":1517,"preRequisites":[932],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"avaritiaddons:CompressedChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNeed a place for all those ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about a compressed chest from Avaritia? This 243 slot chest will hold contents when broken, so no need for slow-inducing dolly!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"avaritiaddons:CompressedChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1518,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:sprinkler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll the crops you could want","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of applying bonemeal or fertilizer by hand? A sprinkler can take water and boost your crop growth rate. Bonemeal or fertilizer will make it work even faster.\n\n§4Note that this sprinkler does not work with IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:fertilizerCompound","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"OpenBlocks:sprinkler","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11364,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1519,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32405,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lPortable tanks too small?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about large steel fluid cells instead? Each holds 8, and they can stack to 64. Unfortunately, you have to load and unload them using GT machines, but hey, 512 buckets in a single slot is pretty good!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32405,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1520,"preRequisites":[1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLarge Aluminium Fluid Cells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"512 buckets in a stack not cutting it? Aluminium cells can hold 32 buckets per cell, and stack to 64. 2,048 buckets in a single stack? That's half a supertank!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1521,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":643,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSeparating gems from the dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sifter runs so slow, you should make an HV sifter to get gems faster. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":643,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1522,"preRequisites":[86,1410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNiobium-Titanium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Niobium-Titanium becomes more important in LuV Tier. It needs a EV Mixer to mix and an Electric Blast Furnace with Tungsten Steel heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2047,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11360,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1523,"preRequisites":[1504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ifu:ifu_buildingKit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Can't find those ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having trouble locating some of the basic ores? Trade in some coins for oreblocks to use in the Ore Finder Wand.\n\nIf you are clever, you can use one oreblock to find a vein containing another oreblock to use to find another vein. For example, if you choose Redstone, you can use that to find Cinnabar, which can be used to find Thaumcraft Aspect Shard ores in the Twilight Forest. Experiment and find some combos!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":60,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":1,"Damage":937,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":35,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":870,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":834,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":500,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":526,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":530,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":523,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":535,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":57,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":936,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":935,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":838,"OreDict":""}]}]},{"questID":1524,"preRequisites":[951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1650}},"Damage":1602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are in MV and have an EBF, you can make new bolts with vanadiumsteel-tipped magnalium. Your enemies will tremble at your might.\n\nCheck \"fletching\" under NEI for fletching options.\n\nGood hunting!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11371,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1650}},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1525,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1573}},"Damage":1635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBest bolts?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That meteoric iron you found on the moon, when sent through the EBF, turns into this amazing meteoric steel, able to keep a fine edge. Put some on an Energetic Alloy tool rod to make an awesome bolt. Your next bolt you'll have to figure out yourself.\n\nFletching left as an exercise for the reader."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1573}},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1526,"preRequisites":[990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§k§r§9§m§l§r§m§n§o§r§9§lBest crossbow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic alloy has proven to be an amazing material. It's light weight and high stiffness makes it perfect for a crossbow limb. It is slightly slower to draw but still has amazing stopping power with its very high bolt speed. Durability is much improved over a carbon limb. \n\nThe material would also make an excellent bolt body. Perhaps you will find a suitable tip to match?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":52,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1527,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockReinforcedObsidian","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCaging a demon - Wither killing chamber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever wanted to trap a wither but the only option was non moveable bedrock? Now that you made dark steel you can get reinforced obsidian which is wither-proof. Useful for hand killing and even automation once you get a powered spawner supplying you with wither skeleton skulls.\n\n§4Hint: Unlike vanilla obsidian reinforced obsidian CAN be moved by pistons which might come in handy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockReinforcedObsidian","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1528,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPersonal Chunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's craft some personal chunkloaders. 3x3 chunks are loaded. You need coins or ender pearls to power the chunkloader. \nEnder pearls power personal anchors for 4 hours per pearl, and 1 hour in passive anchors . Personal anchors can also be powered with ender fragments for 1h. \n\nPersonal anchors are loaded once the owner visits, and stays loaded while the player is logged in. \nPassive anchors are loaded once the owner visits, and stays loaded until the server resets.\n\nIf you are playing single player or on a private server, you can cheat in admin anchors or use FTB Utilities to control chunkloading."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1529,"preRequisites":[770],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your hv assembler you can craft a world anchor.\n3x3 chunks are loaded. You need coins to power the chunkloader. \nPersonal anchors can be powered with ender pearls for 4 hours per pearl, passive anchors 1 hour per pearl. \n\n§4World anchors are always loaded, even after a server reset."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChunkloaderTierII","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1530,"preRequisites":[1454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:ceresblocks","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ceres Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours and hours you will find a Ceres dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 4 rockets.\n\nThis will open the Planets Venus and Mercury and the Jupiter Moon Io."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ceresblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier4Key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1531,"preRequisites":[1532],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The fourth tier schematic circuit uses an elite circuit and a heavy duty plate tier 4 and the data stick in a iv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier4","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":4},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1532,"preRequisites":[80,1530,1533,1534],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 12 tier 4 heavy duty plates out of tier 3 plates and compressed ice plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":12,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceCompressedPlate","Count":66,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyAlloyIngotT4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceCompressedPlate","Count":12,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1533,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":389,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCallisto Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Callisto Ice is the material you need for Tier 4 Rockets. Look at Y 40-60."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Callisto","range":-1,"index":0,"dimension":45,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":389,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1534,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":390,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§b§lEuropa Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ledox is the material you need for Tier 4 Rockets which can be find on Europa. Look at Y 55-65."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Europa","range":-1,"index":0,"dimension":35,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":390,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1535,"preRequisites":[1532,1531,1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After weeks of hard work and a thousand stacks of iTNT your fourth rocket is finally ready. But before you can go to Io, Venus or Mercury you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":6,"Damage":2,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":128,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1536,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:ingredient","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lI ain't afraid of no ghost!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've found a use for the Ectoplasm you can collect from spirits of the dead.\nIt makes a very useful glass that you can walk on, but mobs cannot. However, they think they can! So you can use this to create a moat around your base that drops mobs to the death in various ways, or just to shuttle them off somewhere else. Separate babies from mothers? Use it in a mob farm? Capture pigmen walking into the Overworld from you Nether portal? So many possibilities!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:ingredient","Count":1,"Damage":3,"OreDict":""},{"id":"minecraft:glass","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"RandomThings:spectreGlass","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"harvestcraft:stuffedeggplantItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1537,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":65536000,"SecondaryMaterial":"Neutronium"}},"Damage":120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBlack and Decker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of having to replace tools all the time? Now that stainless steel is available, it's time to make some electric versions of the screwdriver and wrench! Charge them up like a battery, and they will last much longer than normal versions of the tools.\n\n§4You can use lithium batteries, or if you are on a budget cadmium batteries instead. \n\nLater Vibrant Alloy will make excellent tools with great durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":120,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":150,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32518,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1538,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":828,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCeres Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sheldonite, Platinum and Palladium you can found on Ceres. Look at Y 5-30.\nYou can get also Iridium out of a high tier material you need later."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Ceres","range":-1,"index":0,"dimension":42,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":828,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":85,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":52,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1539,"preRequisites":[1413],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32725,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Star","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The emitter and the sensor in iv need a quantum star to craft. Put your netherstar in a hv chemical bath and infuse it with radon gas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:nether_star","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32725,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":9,"Damage":1,"OreDict":""},{"id":"miscutils:dustRadium226","Count":8,"tag":{"TickableItem":{"maxTick":90000,"CreationDate":422439,"Tick":0,"isActive":1}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1540,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":908,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnesite the source of Magnesium can be found in Twilight Forest at Y 10-40. Fullers Earth can be found on the Overworld at Y 50-70. Marble dust can be used for magnesium dust also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":908,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":928,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1541,"preRequisites":[721,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCropnalyzer","Count":1,"tag":{"uid":-73442049,"charge":100000,"Items":{}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyze your crops","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The cropnalyzer is a powered tool used to analyze IC2 crop seedbags. Charge it by placing it in an MV machine; recommended to put an MV battery in it as well to keep it full. To fully analyze a seed bag, you will need to put it through the cropnalyzer four times. If the crop is already planted, it is better to analyze it with the portable scanner instead of breaking it just to scan it - you have a chance of losing the seed every time you break it.\n\nThe cropnalyzer also has a feature called the IC2 Crop Calculator, where you can find the mix of outputs of breeding together any crops. To access the calculator, hit the IC2 side inventory key while holding the cropnalyzer. You can select any crop available and discover which crossbreeds have high chances.\n\nYou can choose up to four crops to breed together. Then click \"process\" and the bottom row will show the possible crossbreeding outputs, and their weights. You can use the + and - gui buttons to scroll through the row(s) of crops. You can also use a button in the GUI to sort the rows by tier or weight. You can invert the sorting by hitting the sorting button while holding shift.\n\nWhen trying to get a specific crop, you generally want to maximize its weight. But more specifically, you want to maximize the proportion of its weight out of all the weights. To determine the best crops to breed, look at their attributes. Parent crops that share more attributes with a crossbreed increase its chances. This means there are no benefits to breeding 3 or 4 identical crops together instead of 2, since all weights are increased evenly. \n\nUse the crops guide at https://tinyurl.com/GTNH-Crops for more details.\n\nTry a variety of combinations to get the crops you want. Often, breeding together two of the same crop is a surprisingly good option or even the best one. A large field of stickreeds has a good chance at making lots of valuable crosses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropnalyzer","Count":1,"tag":{},"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":4,"tag":{"owner":"berriespp","name":"Glowflower","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":200000},"Damage":32529,"OreDict":""}]}]},{"questID":1542,"preRequisites":[721,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crop automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crop-Matron is a LV machine that will monitor crops in a 9x9x3 area and automatically apply fertilizer, Weed-EX, and Water as needed. Water can be pumped in directly or use IC2 Universal water cells, normal cells aren't returned when they are used.\n\nThe Crop-Matron is rainproof, but make sure you cover up your power supply (you might find a fancy way to do this), or use an LV battery. A Lithium Ion will last about 2 hours.\n\nUse Weed-EX sparingly, since overuse will affect crops negatively. \n\nTilled dirt still requires a nearby water block to be hydrated as the Matron will only water the crop, not the soil. Try putting a lily pad on top so it isn't annoying to walk on, or using Garden Soil instead.\n\nYou'll need Stainless Steel to make the Crop Harvester.\n\nAs an alternative to the Crop Matron and Crop Harvester, you can make the Forestry Multifarm. It can also pick crops from cropsticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":2,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMachine2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemWeedEx","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemFertilizer","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1543,"preRequisites":[1273,1542],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeedEx","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed Ex","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weed-EX is used to prevent the growth of Weeds on empty Crop blocks at the cost of crop quality. Damage to the crop's quality is permanent and cannot be reversed, aside from complete removal.\n\nUsage:\nWhile holding Weed-Ex, right-click on a Crop to apply it. It can also be placed in a Crop-Matron to automatically apply it to your crops. Overuse will reduce crop quality, capping their stats at 10."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemWeedEx","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spider_eye","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32402,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1544,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fish","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFish Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make some bio diesel you need seed oil or fish oil and mix that with ethanol or methanol. Seeds give seed oil and fish produce fish oil when placed in a fluid extractor. \n\n§4There are rumors of a weird crop in the shape of a fish...\n\nOtherwise look under Fishing Farming Cooking tab for fish catching options. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30711,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1545,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1158,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to ore drill!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Auto Miners are nice but you're going to reach a point where you will want MOOOOOOOOOOOOORE ores. This multiblock will help with that. It will also pre-macerate your ores and give you a little bonus crushed ores as well.\n\nHigher tiers of power will drill faster. You need to upgrade the energy hatch corresponding to the power tier. \n\nLater you can upgrade the ore drilling plant so it extracts from more than a 48 block radius. Each tier of the controller also gives 5 bonus fortune for small ores. At tier 3 you'll want to spread the wealth to multiple compressed chests!\n\nYou need mining pipes in the machine block and drilling fluid in the fluid hatch.\n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1158,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":15,"Damage":4401,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":72,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":82,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_drillingfluid","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1546,"preRequisites":[1504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRare ores","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you look for days to find Diamonds, Redstone, Tantalite, Certus Quartz or Mica?\n \nWell for a few mixes you can use different ores like Coal for Diamond Vein or Quarzite Ore for Certus Quartz Vein. Mica ore mix can be found if you have Cassiterite Ore (not the sand).\n\n§4Tetrahedrite in the nether can be found with copper ore."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1547,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPress all the things in MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the mv forming press you can make aluminiun iron plates for solar panels and a few rotors blades for turbines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1548,"preRequisites":[739],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Input chest for Ghetto ME System","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To be able to put items into the Ghetto ME system you need just a few additional pipes.\nThe Extraction pipe should be connected to the chest you want to take items from.\nInside the Extraction pipe you need to put the Item Extraction chip, and configure it to blacklist if you want it to take all items from the chest.\n\nThe Routed Junction pipe is needed so the items inside the pipes know which direction to take, without this they will just fly around inside the pipes without knowing where to go.\nYou might also need some additional item transport pipes depending on your setup."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1549,"preRequisites":[942,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"miscutils:MU-metatool.01","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPlunger 2.0 The Hand Pump","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The new hand pump can remove fluids out of your machine input slots. The old plunger removes the fluid - only the hand pump can store it and drain it to a tank.\n\nUse your items in an LV assembler to craft your pump token, and then again to make the hand pump.\n\nWhen you tier up your assembler, you can make better hand pumps, up to EV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32700,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1550,"preRequisites":[109],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More seed types","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This fancy addon allows your cart to plant/harvest more seed types. If you got an MV+ centrifuge you might want to look at glow flowers for some free redstone and gold."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1551,"preRequisites":[112,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockRubSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More tree types","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The standard wood cutter can only chop down (and replant) vanilla trees. If you want to use saplings from other mods however this addon will come in handy. Who knows - maybe you are tired of clicking rubber trees with a treetap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":88,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1552,"preRequisites":[108],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockDistributor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Further automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to load and unload a lot of different items from your cargo manager the pipes can get quite messy. The external distributor is a block you can place next to your cargo manager and it will help you to access different slots which you can specify in its GUI. Quite handy for pumping items in and out!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockDistributor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1553,"preRequisites":[108],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockAdvDetector","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced detector rail","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a cargo manager you need a specific rail so that your cart can interact with it. Just place it next to the cargo manager, depending on the color of the side it is on you will have to adjust settings in the cargo manager GUI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockAdvDetector","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1554,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Exhale of the horned one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Exhale of the Horned One is an ingredient used in many recipes. It is acquired with a random chance when burning Oak saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1555,"preRequisites":[334],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutate your saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mutandis is a mutagen that is used by witches and warlocks to mutate plants into other species. Simply use Mutandis on small plants, grass, flowers, saplings, etc. and it will be randomly converted to another plant. Mutandis cannot mutate multi-stage plants like wheat and cactus.\n\nMutating plants is the only way to acquire Rowan, Hawthorn and Alder saplings.\n\nMutandis has another interesting property when crafted with raw meat. It seems to mutate it into another type of raw meat. It even seems to have an effect on Rotten Flesh.\n\nSome recipes require Mutandis as an ingredient.\n\nMutandis can be upgraded to Mutandis Extremis to have an effect on a wider variety of plants.\n\nMutandis is made in a Witches' Cauldron using Mandrake Root, Exhale of the Horned One and an Egg."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:egg","Count":8,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":22,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":48,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1556,"preRequisites":[1554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":32,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Use some Mouthwash of Olympus!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Breath of the Goddess is an ingredient used in many recipes. It is acquired with a random chance when burning Birch saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":32,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1557,"preRequisites":[1555],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchsapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutated saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rowan saplings grow into Rowan trees when planted. Rowan trees can be harvested for Rowan logs and Rowan leaves (which yield more Rowan saplings). Rowan saplings cooked in an oven yield Wood Ash, and have a chance of producing a Whiff of Magic.\n\nRowan saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random it may take a few goes before Rowan saplings appear.\n\nHawthorn saplings grow into Hawthorn trees when planted. Hawthorn trees can be harvested for Hawthorn logs and Hawthorn leaves (which yield more Hawthorn saplings). Hawthorn saplings cooked in an oven yield Wood Ash, and have a chance of producing Odour of Purity.\n\nHawthorn saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random it may take a few goes before Hawthorn saplings appear.\n\nAlder saplings grow into Alder trees when planted. Alder trees can be harvested for Alder logs and Alder leaves (which yield more Alder saplings). Alder saplings cooked in an oven yield Wood Ash, and have a chance of producing Reek of Misfortune.\n\nAlder saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random, it may take a few goes before Alder saplings appear."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:witchsapling","Count":1,"Damage":2,"OreDict":""},{"id":"witchery:witchsapling","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":16,"Damage":14,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1558,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Whiff of Magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Whiff of Magic is an ingredient used in many recipes. It is acquired with a random chance when burning Rowan saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1559,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Odour of Purity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Odour of Purity is an ingredient used in many recipes. It is acquired with a random chance when burning Hawthorn saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1560,"preRequisites":[483],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:seedsbelladonna","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Witchery Seeds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Witchery seeds, use a hoe on grass blocks away from water. To open the rest of the questline, you will need to do Thaumcraft quests and research the Witchery tab in the Thaumonomicon.\n\nAccording to the legend, when the root of the Mandrake plant is dug up it screams and kills all who hear it. This is only partially true. A fully grown Mandrake may scream causing immense discomfort to those around. This is why it is best to harvest the Mandrake root at night when the plant is more likely to be dormant. Mandrake is grown from Mandrake Seeds which may be obtained by breaking tall grass, or by breaking a partially (or fully) grown Mandrake plant.\n\nBreaking a fully grown Mandrake plant will either yield Mandrake Root or the Mandrake may awaken and cause all sorts of mischief (and pain to the ears!).\n\nBelladonna seeds can be planted and eventually grow into the multistage belladonna plant. The fully grown belladonna plant can be harvested to obtain more Belladonna seeds and a Belladonna flower.\n\nSnowbell seeds can be planted and eventually grow into the multistage snowbell plant. The fully grown snowbell plant can be harvested to obtain more Snowbell seeds, snowballs and occasionally a Icy Needle.\n\nWater Artichoke seeds can be planted and eventually grow into the multistage Water Artichoke plant. The fully grown Water Artichoke plant can be harvested to obtain more Water Artichoke seeds and a Water Artichoke Globe.\n\nWater Artichoke seeds can only be planted on still water blocks.\n\nGarlic is a plantable crop that can be used to make tasty food, and to deal with vampires. Garlic can be obtained by breaking tall grass, although it has a very low drop chance. It may be planted on tilled farm land, and will grow in five stages. When full grown the plant may be harvested for up to three dropped garlic bulbs. Which may either be replanted, or used in a crafting recipe.\n\nGarlic bulbs can be used to make meaty stew, a particularly nourishing meal. It is also the main ingredient in making a Garlic Garland, a useful tool in warding off vampires. Finally, garlic can be used by witches in a Witches' Cauldron to make a vampire Weakening brew, and by Witch Hunters, to make vampire resistant armor.\n\nWolfsbane seeds can be planted and eventually grow into the multistage Wolfsbane plant. The fully grown Wolfsbane plant can be harvested to obtain more Wolfsbane seeds and the Wolfsbane flower.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:seedsmandrake","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedsbelladonna","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedssnowbell","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedsartichoke","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:garlic","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedswolfsbane","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:wheat_seeds","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1561,"preRequisites":[1559],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purified Milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Purified Milk is an antidote in a similar way to normal milk, although it only has a chance of working and will only remove a single status effect. It is advantageous because it can stack to 64 items.\n\nPurified Milk is an ingredient in the Brew of Sleeping."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},{"id":"witchery:ingredient","Count":3,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":31,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":34,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":36,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1562,"preRequisites":[336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":3,"Damage":75,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Brew of love","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Love is a throwable potion that causes farm animals and villagers to get their luvin' on. When used on animals the effect is the same as if all hit animals were fed and their breeding cooldown is reset.\n\nIn the case of villagers, two (or more) must be hit by the same brew.\n\nThe Brew of Love may be thrown at a group of two or more enthralled zombies (created with a Brew of Raising or enthralled with the Infernal Infusion power), which will cause pairs of them to produce a baby zombie. It will also cause them to become a zombie villagers. Zombie villagers can be turned back to villagers either using the normal method, or by casting a Rite of Fertility.\n\nThe Brew of Love is created in a kettle using the recipe found in the book Witchcraft: Brews & Infusions. Into the pot, throw a Rose, a Golden Carrot, Whiff of Magic, a Lily Pad, a Water Artichoke Globe and Cocoa Beans.\n\nWear a Witches Hat (and/or robes) while brewing to get more brews than just three."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":3,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":75,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1563,"preRequisites":[1562],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sleep well!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Sleeping is the normal way for a Witch to enter the Spirit World. \n\nNeedless to say an unprepared witch will almost always experience a nightmare when they head to the spirit world this way. \nThe witch must drink the brew and then will fall into a deep sleep, leaving their body and items behind and entering the world of spirits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":75,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":105,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""},{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1564,"preRequisites":[1563],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Spirit world nightmare","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The spirit world is an alternate reality that mirrors the Overworld in topography. When people dream they often end up in the spirit world without realizing it (often appearing as one of its many denizens). Powerful witches can create Brews of Sleeping that allow them to pass their awake consciousness into the Spirit World, leaving their bodies and gear behind.\n\nThe Spirit World is the only source of Wispy Cotton, Disturbed Cotton, and Mellifluous Hunger - the materials needed to make Dream Weavers. Also Brews of Flowing Spirit can only be made in the Spirit World.\n\nVery few things can pass into, or return from the Spirit World - keep this in mind when heading there (Icy Needle always stay in the inventory). Wispy Cotton, Disturbed Cotton, Mellifluous Hunger and Brews of Flowing Spirit can pass from the Spirit World to the Real World but not the other way.\n\nTwo important things to note: Circle magic does not function in the Spirit World; and Endermen cannot enter the Spirit World."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""}]}]},{"questID":1565,"preRequisites":[1106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nights not dark anymore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hardcore darkness is a pain but now the night will be bright. Be careful the mobs are the same."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":16,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:nether_wart","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1566,"preRequisites":[1564],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:grave","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Early bird gets the...nightmare?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You wake up very early because of the nightmares following you in this dimension.\n\nYou weren't prepared for it. Let get some stuff first and enter a second time to get some wispy/disturbed cotton.\n\nIf you haven't unlocked your Brewing stand yet, you have to do it first. Look in the Novice Thaumaturge tab for the quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":78,"OreDict":""},{"id":"minecraft:potion","Count":4,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:alchemyFlask","Count":1,"tag":{"CustomFlaskEffects":[{"durationFactor":2,"concentration":0,"potionID":104,"tickDuration":1200}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1567,"preRequisites":[1566],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":99,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wake up early","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your second visit was much more relaxing I guess. With night vision and flight potion you found a few wispy/disturbed cotton already. \n\nDisturbed Cotton can be spun into Tormented Twine. It cannot be replanted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8262,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1568,"preRequisites":[1558],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Attuned stone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An attuned stone, is a diamond that has been infused with natural magic in a fiery medium. Attuned stones can be used to link non-magical devices to the magical currents present in the world, and are one of the main ingredients in crafting distilleries, kettles, altar foci and poppet shelves.\n\nThe other main use of attuned stones is to act as a portable power source for circle magic rites, when a nearby altar is not available. To act in such a way, the attuned stone must first be charged with a Rite of Charging."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1569,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":35,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reek of Misfortune","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reek of Misfortune is an ingredient used in many recipes. It is acquired with a random chance when burning Alder saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":1,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1570,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tormented Twine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tormented Twine is spun from Disturbed Cotton using a Spinning Wheel. It is an ingredient used to make Dream Catchers.\n\nIt is made in a Spinning Wheel using Disturbed Cotton, String and Reek of Misfortune.\n\nAn Altar must be nearby to power the spinning wheel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":3,"Damage":35,"OreDict":""},{"id":"witchery:ingredient","Count":12,"Damage":99,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1571,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:distilleryidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Distillery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A distillery used by a witch is a construct used for distilling magical ingredients. It is unlike a normal distillery, because it heats itself using energy obtained from a nearby altar. The distillery must be within about 14 - 16 blocks of an altar to draw power from it - a small icon is shown in the interface if no power is available.\n\nOne or two ingredients are distilled together and will result in up to four resulting materials. A supply of clay jars is also needed to capture the some or all of the distillates.\n\nA distillery is crafted using Iron Ingots, Gold Ingots, an Attuned Stone and Clay jars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:distilleryidle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1572,"preRequisites":[1570,1574],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nightmare protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Nightmares has two effects, firstly it will add a short weakness effect to a player when they wake up from a good nights sleep. Secondly, it will corrupt all other nearby dream weavers so that they have the opposite effect. If the dream weaver is itself corrupted by another nearby Dream Weaver of Nightmares, it will add a short blindness effect instead of nausea.\n\nThe Dream Weaver of Nightmares can also be used to fend off nightmares when a Brew of Sleeping is drunk. Having the Dream Weaver nearby will reduce the chance of a nightmare to 50 percent (this can be decreased further by other means!)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":101,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16454,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16452,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1573,"preRequisites":[1571],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":30,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oil of vitriol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oil of Vitriol is an ingredient produced in a distillery by using Foul Fume and Quicklime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":28,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":16,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":24,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1574,"preRequisites":[1573],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diamond Vapor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond vapor is an ingredient made by distilling diamond in a distillery according to the recipe in the book, Witchcraft: Distilling, using a Diamond and Oil of Vitriol."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":30,"OreDict":""},{"id":"witchery:ingredient","Count":6,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1575,"preRequisites":[1556],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Foul Fume","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A foul fume (commonly known as sulfur dioxide) is an ingredient used in many recipes. It is acquired with a random chance when cooking vanilla food items (such as bread or raw meats) or jungle saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1576,"preRequisites":[1572],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Spirit world daytime","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing your Dream Weaver of Nightmares close to where you sleep and entering the Dream World again, you have a 50% chance now that it be will be Daylight. Try a few times if necessary."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Dream World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""}]}]},{"questID":1577,"preRequisites":[1576],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:somniancotton","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wake up later","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your third visit was much more relaxing I guess. In the daytime you can find a few wispy cotton, which are needed for futher progression. \n\nIt can be collected and replanted, but will only spread if planted in the Spirit World, on Dirt or Grass that is next to a pool of Flowing Spirit.\n\nPlanting Wispy Cotton nearby when using a Brew of Sleeping near to a Dream Weaver of Nightmares will further reduce the chance of a nightmare by 10 percent for each cotton plant (up to 2).\n\nWispy Cotton will remain in a players inventory when they return from the Spirit World.\n\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8229,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1578,"preRequisites":[1577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fanciful Thread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fanciful Thread is spun from Wispy Cotton using a Spinning Wheel. It is an ingredient used to make Dream Catchers.\n\nIt is made in a Spinning Wheel using Wispy Cotton, String and Odour of Purity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":36,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1579,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better Nightmare Protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Charm of Fanciful Thinking is the only way to protect oneself from some of the worst effects a nightmare can throw at you. It just needs to be in a player's inventory for it to function.\n\nA Charm of Fanciful Thinking is crafted using Sticks and Fanciful Thread."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},{"id":"minecraft:stick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1580,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Digging faster!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Iron Arm will add a mining speed boost to a player when they wake up from a good nights sleep. If the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a mining speed slowdown effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16456,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16457,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1581,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moving faster!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Fleet Foot will add a speed boost to a player when they wake up from a good night's sleep. \n\nIf the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a slowdown effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16458,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16450,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1582,"preRequisites":[1583],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hunger no more!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Fasting will add a boost to the saturation of a player when they wake up from a good nights sleep, essentially meaning they will not get hungry for the duration of the effect. If the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a hunger effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16421,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1583,"preRequisites":[1579],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mellifluous Hunger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mellifluous Hunger is an ingredient used in other recipes. It is dropped when a Nightmare is killed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8258,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1584,"preRequisites":[1593,1595],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":96,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion of flowing spirit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Flowing Spirit captures the essence of the Spirit World in liquid form. It can only be brewed in the Spirit World!\n\nThe Brew can be thrown at the ground and the liquid will burst out (the source block can later be picked up in a bucket). Standing in the liquid will have a minor healing effect for most creatures. Demonic or undead creatures will be weakened. Nightmares standing in the liquid will lose their invulnerability effect!\n\nHaving a pool of flowing spirit near a Dream Weaver of Nightmares will decrease the chance of a nightmare by 10 percent for each source block (up to 3)."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},{"id":"witchery:spanishmoss","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":22,"OreDict":""},{"id":"witchery:glintweed","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":96,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1585,"preRequisites":[338],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We need another oven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First of all you can't visit any other dim to get materials. Not the Twilight Forest, not the Nether or the End. Lets start with crafting a new oven and a stack of jars to start with some basic ingredients. For 500 Coins you can tranfer it to the Spirit Dim."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1586,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"More coins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second goal is to have a cauldron to make some mutandis but you need more coins anyways. \nYou have two options here - killing a few nightmares to get coins or selling some wispy cotton.\nYou need to switch a few times between dimensions to compress the coins first."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1587,"preRequisites":[1586],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Another Cauldron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After we have enough coins we can craft the cauldron and transfer it with 1000 coins to the spirit world."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1588,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSwordElemental","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Nightmares","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need more coins? Killing a few nightmares to get coins. "}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":100,"Name":"generic.maxHealth"},{"Base":1,"Name":"generic.knockbackResistance"},{"Base":0.35,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":100,"id":"witchery.nightmare","Victim":"","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":3847374037349003000,"Health":100,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":36378736087929,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"witchery.nightmare","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1589,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:somniancotton","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Wispy Cotton","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need more coins? Selling wispy cotton for coins."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"witchery:somniancotton","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1590,"preRequisites":[1587],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Dreaming mutandis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Go and find some chicken and eggs, brew some Exhale of the Horned One in your oven and plant some mandrake. Make a stack of mutadis to get some witchery tree saplings. Gravel hoes are good enough for planting stuff."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":55,"index":0,"dimension":0,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:egg","Count":10,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":10,"Damage":22,"OreDict":""},{"id":"witchery:ingredient","Count":10,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":60,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1591,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Exhale of the dreaming horned one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For later use do a few Exhale of the Horned One."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1592,"preRequisites":[1593],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Offerings in your dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For all your offerings you'll need an altar too. The spinning wheel needs it also.\n2000 coins are needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:arthana","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1593,"preRequisites":[1587],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kettle for the Spirit World","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A kettle is needed in the spirit world too. For a fee of 1500 coins you can transfer it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1594,"preRequisites":[1592],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"spinning your dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need the spinning wheel for the fanciful thread to finally make the Potion of Flowing Spirit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1595,"preRequisites":[1594],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fanciful Thread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fanciful Thread is spun from Wispy Cotton using a Spinning Wheel. It is an ingredient used to make the Potion of Flowing Spirit. This can be brewed only in the spirit world."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":36,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:ingredient","Count":32,"Damage":14,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:shears","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1596,"preRequisites":[1590],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Odour of Purity in dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For later use do a few Odour of Purity."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":64,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1597,"preRequisites":[1584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More Power now!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Intensity has two effects, firstly it will add a very short night vision effect (or blindness if corrupted by a nightmare) to a player when they wake up from a good nights sleep. Secondly, it will intensify all other nearby dream weavers so that they have either a stronger (but shorter lasting) effect or their duration is increased."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":96,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":104,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":8,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1598,"preRequisites":[897,895],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAvengers, assemble! 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to make the MV variant of the assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":212,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1599,"preRequisites":[114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:nodeUpgrade","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNode upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nodes can take many upgrades. For now, try building a World Interaction Upgrade. With it, you can setup simple autocrafting. \n\nPut a WIU in a transfer node attached to a crafting table. On the other side of the table, the 3x3 area is now treated as a crafting grid. Place items in inventories on the other side and if they make a valid recipe, the WIU will craft it. To speed it up, you will need to wait until HV for stainless steel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:nodeUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:BabyChest","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1600,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:reeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reed and resin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the first useful crops you'll get is Stickreed. It's fast growing, and can produce sticky resin and sugarcane (harvest before it reaches full maturity). It's also great for crossing with other crops to raise their stats.\n\nI'll trade you some fertilizer for 2 stacks of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:reeds","Count":128,"Damage":0,"OreDict":""},{"id":"IC2:itemHarz","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"stickreed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1601,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32530,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Metals from the Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With higher tier crops you can even increase your ore production. Mixing these fibers and leaves with crushed ores can quadruple your output, or you can convert them directly to tiny dusts. Later you can mix these materials to make purified ore with some UU matter.\n\nShow me your ability to get these metal crops and I'll give you some more fertilizer and some decent stat seedbags of rarer crops. Good source crops are essence berries or any of the oreberries.\n\nYou will need the proper oreblock beneath the crop to reach 100 percent maturity. For best growing conditions use dirt in between the oreblock and the crop.\n\nFor Ferru and Aurelia you will have to use a block of metal instead of a GT oreblock - a vanilla oreblock automined from the Twilight Forest will work. WAILA will tell you if the crop will accept the block you are using."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32530,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32527,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32540,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32528,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32503,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"aurelia","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Argentia","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Pyrolusium","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1602,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellHydrant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Water water everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Even though you have to plant crops near the water, they don't actually get any hydration unless you apply water manually. Make a hydration cell and use it on your crops to increase their growth speed. \n\nYou can recycle empty cells in a centrifuge."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellHydrant","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellHydrant","Count":2,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1603,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Feeling a little like a noob...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So could you grow me some essence berries so I can level up? You can plant the ones you get from the bushes, or breed up some.\n\nAs a reward, I'll give you a silly seed a friend of mine came up with. It will definitely keep you on your toes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TConstruct:oreBerries","Count":64,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Essence Berry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Goldfish Plant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1604,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32557,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I prefer to call it Canola","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This crop is a great source of seed oil for your biodiesel needs.\n\nYou can try getting it from dandelions, cocoa, potatoes or lemons."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Rape","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":35,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1605,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTerraWart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better than milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I haven't been feeling well lately. Would you grow me some Terrawarts? They are better than milk, since they only remove negative effects, and stack to 64. Really nice when fighting that Alchemist infernal!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"terraWart","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemTerraWart","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1606,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:foodBerries","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sweet tooth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcane or Reed not keeping up with your sugary needs? Sugar beets give 8 sugar per beet. Potatoes or carrots should easily give you sugar beets.\n\nHmm, now I want some candy. Give me some sugar from your beets. I'll share some with you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Sugar Beet","scan":4},"Damage":0,"OreDict":""},{"id":"berriespp:foodBerries","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:sugar","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:jellyBabies","Count":64,"Damage":0,"OreDict":""},{"id":"harvestcraft:honeycombchocolatebarItem","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1607,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":40,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Swipe swipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you get some large fields, collecting the crops can be a real hassle. Make yourself the GT scythe, Sense, to make it 5x5 = 25 times easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":40,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1608,"preRequisites":[103,1172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1386,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Annealead Copper Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some annealead copper cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1386,"OreDict":""}]}]},{"questID":1609,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1426,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Gold Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some gold cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1426,"OreDict":""}]}]},{"questID":1610,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1341,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Cupronickel 2x Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some cupronickel wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1341,"OreDict":""}]}]},{"questID":1611,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1442,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Electrum 4x Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some electrum wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1442,"OreDict":""}]}]},{"questID":1612,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":67,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Bastnasite, Monazita and Neodymium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A lot of EV machine parts need Neodymium. Rare Earth is a good source but on the Moon you can find a vein with pure Neodymium ore.\n\n§4The Bastnasite is a great source of fluorine as well.\n\nThe vein can be found on moon at Y Level 20-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":905,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":520,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":67,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1613,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":906,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSource of Nickel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Garnierite, Nickel, Cobaltite, and Pentlandite, sources of Nickel, can be found in the Twilight Forest at Y 10-40. In MV you'll need tons of Nickel for Cupronickel.\n\nFind a Greatwood and Silverwood to unlock the Tier 0 quest What is That...? to open the Novice Thaumaturge tab and start your Twilight Forest adventure.\n\n§4Note: You can find small quantities of Pentlandite ore in the Overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":906,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":827,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":909,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:epicbaconItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1614,"preRequisites":[897],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":911,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lChemical Dehydrator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dehydrate your grapes to raisins. Or make some Styrene, Benzene or Ethylene at MV. Either way, this device is a nice to have."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":911,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1615,"preRequisites":[766,943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"lightlysteamcracked.naphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSynthetic Rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some synthetic rubber like styrene-butadine rubber?\nI'll show you a way you can get it. All you need is an Oil Cracker and a Distillation Tower. There are different ways to do it and this quest is only an example of how you can make it.\n\nFist step is to cracking your Naphtha with steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":30739,"OreDict":""},{"id":"IC2:itemFluidCell","Count":40,"tag":{"Fluid":{"FluidName":"steam","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":40,"tag":{"Fluid":{"FluidName":"lightlysteamcracked.naphtha","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1616,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1467,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Silver 2x Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some silver cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1467,"OreDict":""}]}]},{"questID":1617,"preRequisites":[1615,768],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30646,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Distillation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next steps you need a few fluids/gases like Benzene, Ethylene and Butadiene. Run your distillation tower a few cycles to get it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30739,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1618,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1386,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Copper Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some copper cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1366,"OreDict":""}]}]},{"questID":1619,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber sheets? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""}]}]},{"questID":1620,"preRequisites":[1621],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30637,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lStyrene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Styrene you can use the chemical dehydrator or your large chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:Ethylbenzene","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30637,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30686,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1621,"preRequisites":[1617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:Ethylbenzene","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEthylbenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Putting Benzene and Ethylene in the Chemical Reactor gives you Ethylbenzene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:Ethylbenzene","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1622,"preRequisites":[1620],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2634,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRaw Styrene-Butadiene-Ruber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is Raw Styrene-Butadiene Rubber. Mix your Butadiene, Styrene and Air (you can use oxygen as well) to make the dust. \n\n§4An HV chemical reactor is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30637,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30646,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":30,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":2634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30637,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1623,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Let's get some pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First we're gonna need some pipes to connect everything. Do not use these pipes in junctions or the items will choose which path to go at random and you don't want that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass_pane","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1624,"preRequisites":[1623],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Junctions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So how do we deal with junctions then? We use these pipes. They are smart and they will send everything where it needs to go, so if you make a junction make sure you put this pipe there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30645,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1625,"preRequisites":[1624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interacting with stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That's all nice and all, but none of these pipes connect to chests and machines. What am I supposed to do with them?\n\nI'm glad you asked. You are going to need a special pipe for that. This is a pipe you need to use to connect to machines and chests. You'll have to set it up with chips that we'll make soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17086,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":308,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1626,"preRequisites":[1625],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you need to make some chips to use in those interface pipes. These ones do not do anything but are needed as a material for crafting the others.\n\nNow would be a good time to look into IC2 crops to get all the dyes you will need for your advanced chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1627,"preRequisites":[1626],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item responder chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip also stores items in connected invetory. It designates a storage for items that are set in the filter of this chip. They do not actively request for items they only serve as a destination for items to go. You can open up the menu by rightclicking the chip. There you can set which items should it accept and the priority. Items will go to item responders with higher priority first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1628,"preRequisites":[1626],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item overflow chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip stores the items in connecting inventory. It designates a storage for items that have no other place to go. It is strongly recomended to have a default storage for items in every pipe system, otherwise bad stuff can happen. Best used with some large chest (diamond one for example).\n\nIt seems to have some bugs though, so don't craft more than one without testing it first.\n\nYou might have to just use a normal item responder and add the items you want routed back to you overflow spot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1629,"preRequisites":[1627],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dynamic item responder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dynamic item responder chip behaves exatly like an item responder chip, but instead of you setting up which items it should accept, it looks in the chest what items are there and those items it will accept."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1630,"preRequisites":[1627,1628],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item extractor chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip will extract items from the connecting inventory. The extracted items then look for pipes with item responder chips where there's a free space they could go. If they don't find any they will go to the overflow default storage chest.\n\nIf you want it to extract everything leave the filter empty and set it to blacklist."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1631,"preRequisites":[1630],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item broadcaster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Item broadcaster is a chip that tells everyone in the pipe system what items it has in the connecting inventory and if anyone needs anything it will send it to them. Right click it to set the items it will transmit. If you leave it empty and set to blacklist it will transmit everything.\n\nDefinitely use one in combination with an item overflow chip on your default storage chest. That way overflow will end up in the chest, but will be useable by the rest of your system."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1632,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item stock keeper chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Item stock keeper looks at the connecting inventory and keeps item stocked in there. If the item is missing it will keep bothering item broadcasters every few seconds if they have the item and if they can send it. It's basically like an annoying child. \n\nIt is really useful though. Want a chest that will always have 64 cobble and dirt in it and if you take them they will get replaced? This guy is perfect for that job. It's great for keeping machines stocked. When stocking GT machines, the top left slot of the 3x3 is equal to the left slot of the machine. Want a chemical reactor that keeps 3 hydrogen cells ready to go to make ammonia, just add nitrogen? This is the chip for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1633,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crafting chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting chip does exactly what it says. It's not just for default crafting. You can use it with GT machines. Just put in the matrix that it should insert and the output is what it should extract. Great use for them is in combination with fluid canners or super tanks for filling cells. I would strongly recommend not overusing them. Wait untill you have access to AE2 for autocrafting stuff."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1634,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Request pipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This pipe let's you request stuff from the system. It shows all items that are avaible thanks to broadcast chips and even stuff that can be crafted thanks to crafting chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":32,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1635,"preRequisites":[1634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple storage system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to build a simple system to store your stuff. Place down the drawer controller and place the drawers around it. Connect the interface pipe to the drawer controller and put the dynamic item responder and broadcaster chips inside. Don't forget to set the broadcaster to transmit everything by leaving the filter empty and setting it to blacklist. Now you can request stuff from your storage and if you have a chest with a pipe and extractor chip everything you put inside will be sorted into the storage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1636,"preRequisites":[1632,1633],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:bucketOil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Desulfuring oil automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This quest line will show you how to automate desulfuring of oil products. Return here once you have unlocked the LV distillery quest and have some polyethylene plates."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1637,"preRequisites":[1636,547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Storing the fluids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First we should make some place to store all the fluids we'll use. 2 super tanks are required for this quest but you'll need one more later so it's better to build 3 right now.\n\nIf you're interested what they'll be used for:\n1 for oxygen\n1 for hydrogen\n1 for sulfuric acid"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":130,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1638,"preRequisites":[1637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:flowing_water","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electrolyzing water","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now let's automate electrolyzing water into oxygen and hydrogen. You'll need hydrogen for tons of stuff including desulfurization, obtaining tungsten, and nitric acid production. Oxygen is also useful as I'm sure you noticed when making steel.\n\nHow to set it up:\n\nPlace the electrolyzer down and connect it to water and electricity. Place the 2 super tanks nearby. Set the electrolyzer to produce hydrogen gas and oxygen cells. Use normal GT fluid pipes to output the hydrogen gas into one super tank. That is now your hydrogen storage. Now connect interface pipes to all 3 machines.\n\nFor the electrolyzer put in item stock keeper set to keep 2 empty cells stored. Also put in extractor set to extract oxygen cells.\n\nNow for the oxygen storage put it item responder chip set to accept oxygen cells and extractor set to extract empty cells.\n\nNow put some empty cells inside your default storage chest and don't forget to have a broadcaster there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":2,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1639,"preRequisites":[1638],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30737,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Desulfuring the oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it's time to start the actual desulfurization. Use a chemical reactor of your choice, fill it with sulfuric light fuel and hook it to power. Now connect an interface pipe to it. Put an item stock keeper inside set to store 4 hydrogen cells. Then put in item extractor set to extract Hydrogen sulfide and empty cell.\n\nGo to your hydrogen storage super tank and put in a crafting chip set to make one hydrogen cell from one empty cell.\n\nAnd that's all."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1640,"preRequisites":[1639],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30460,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dealing with H2S","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now let's convert all that H2S into sulfuric acid. Hook up a chemical reactor to electricity, water and interface pipe. Put inside an item responder chip set to accept H2S cells and extract empty cells. Distill that diluted sulfuric acid in distillery and store it in super tank.\n\nCongratulations. You now have a completely automatic desulfuring of oil, automatic production of hydrogen and oxygen and you also store all that sulfuric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1641,"preRequisites":[1632],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Small reward","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Here's a small reward for making all those chips."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":28,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":24,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":20,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":32,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":33,"OreDict":""}]}]},{"questID":1642,"preRequisites":[1640],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reward for desulfuring automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The greatest reward is having your stuff automated if you've done everything correctly, but here's a reward for making it this far.\n\nSome other setups to look at automating are making polyethylene and nitric acid. \n\nWith stock keeper chips you can always keep a set amount on-hand and when you pull out the cells to use elsewhere, your setup will automatically make more."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":28,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":24,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":20,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":32,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":33,"OreDict":""}]}]},{"questID":1643,"preRequisites":[1527],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThere can be only one...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...so make them lose their heads. \n\nMake yourself a Cleaver with your tool forge and collect some wither skeleton skulls.\n\n§4If you have problems finding wither skeletons, once you get to HV you can put a powered skeleton spawner in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartLargeSwordBlade","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":3,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1644,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Salt for your salty mouth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Modpack too easy? Tired of all the quests making the game trivial? Hateposting in github about the noobs making steam too powerful? Well here's a quest for you to turn all those OP coins into salt."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":500,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2817,"OreDict":""}]}]},{"questID":1645,"preRequisites":[333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Now I feel bad...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...that I know creepers have hearts. Extract a few with your Arthana. You might want to add a few levels of Looting to get more drops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":21}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1646,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rumplestiltskin!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spinning hay into gold sounds like a fairy tale, but with your new magical spinning wheel you too can try tricking a queen into giving you their first born child.\n\nYou will need three for your witchwear, and can turn extra into gold nuggets in a furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":2,"Damage":102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":102,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1647,"preRequisites":[1574],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":72,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Leather goddess of Robe-us","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make appropriate witchwear, you'll need to make some impregnated leather with your diamond vapor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":12,"Damage":72,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":4,"Damage":72,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1648,"preRequisites":[1646,1645,1647],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The witch is back...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...and you're going to be in trouble. \n\nDress for success in your new Witches Hat and Robes. A girl has to look her best, so I'll give you a nice bag as reward.\n\nCheck NEI uses for impregnated leather for other accessories to your outfit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":102,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":11,"Damage":72,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:witchrobe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:brewbag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1649,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Books are for nerds...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...And sexy male librarians. And also smart witches who want to learn their way around. Craft the first group of Witchery books."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":81,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":106,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":127,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":46,"OreDict":""},{"id":"witchery:cauldronbook","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1650,"preRequisites":[1649],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":107,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Going to need a big hat...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...to fit all this knowledge. Get some more books!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":107,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":47,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":48,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":49,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1651,"preRequisites":[1650],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BloodArsenal:vampire_cape","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A dark path to travel down...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...but a path laden with power beyond imagination. Behold mortal, and be terrified!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:vampirebook","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BloodArsenal:vampire_cape","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1652,"preRequisites":[768],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of a jet engine...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Large Gas Turbine lets you burn gaseous fuels like hydrogen, methane, or benzene. You'll have plenty to turn into EV EU with your new distillation tower.\nJust like the Large Steam Turbine, the LGT uses turbine rotors. Use a fluid regulator to optimize the flow of gases into the turbine - not enough or too much will cause its output to drop.\n\nMake sure your dynamo hatch is rated for the amount of EU your rotor will make!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]}]},{"questID":1653,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trading_post","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAkihabra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of talking one by one with every villager to determine their trades? A trading post will show you all available trades from villagers in the area. You'll need an Assembler to finish it up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17501,"OreDict":""},{"id":"minecraft:glass_pane","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trading_post","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:emerald","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1654,"preRequisites":[784,1740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32730,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomating power on/off","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you have a GT boiler or Large Combusion Engine with a faster startup time, you can automate it to produce power on-demand. Use a machine controller cover on the controller (protip: You can put it on the bottom, or on the side next to a casing, casings will transmit redstone signal). \nWith a machine controller cover, you can use redstone to turn the machine on and off. This is handy if you don't want to use a soft hammer to disable a machine.\n \nThe best way to do that is with an RS latch. One input will turn the machine on, and one input will turn the machine off.\nUse a comparator attached to a valve to measure the steam level in your multiblock Iron or Steel Tank. Invert the signal to turn on your boiler when the steam level is low. When the steam level signal is high, turn your boiler off. Use a trail of redstone to lower the signal strength. Because of boiler/turbine warmup, try to set the ON strength to 30 percent of capacity and OFF strength to about 90 percent.\n\nRed alloy wire will hold a redstone signal for a longer distance.\n\nYou can use a Energy Detector Cover in Normal Electrical Storage (including batteries) mode to monitor the power in a battery buffer and use it to enable/disable generators in a similar way. Change mode using a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32730,"OreDict":""},{"id":"ProjRed|Integration:projectred.integration.gate","Count":1,"Damage":12,"OreDict":""},{"id":"ProjRed|Integration:projectred.integration.gate","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"ProjRed|Transmission:projectred.transmission.wire","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32734,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":4,"OreDict":""}]}]},{"questID":1655,"preRequisites":[1233,940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lOne Dragon Egg is not enough Mr Bond","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dragon eggs are very rare and only drop after a dragon's death. How about I show you a way to recreate this powerful item out of a monster spawn egg?\n\nLets start with step one. Using a mob spawn egg, growth medium, and bacteria to create a bigger egg. This process needs one hour. \n\nBe sure your cleanroom is 100 percent clean or you will risk loosing the item.\n\nIf you have not been on Mars yet you have to wait until you can make mutagen for the next step. It is on the EV tab after visiting Mars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:spawn_egg","Count":1,"Damage":32767,"OreDict":""},{"id":"Genetics:misc","Count":64,"Damage":4,"OreDict":""},{"id":"gregtech:gt.Volumetric_Flask","Count":1,"tag":{"Capacity":1000,"Fluid":{"FluidName":"binnie.bacteria","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1656,"preRequisites":[940,186,1655],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEgg mutation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you found a way to make bacterial sludge stronger and research mutagen try soaking your bigger egg in it. You need to wait a bit (up to one hour).\n\nNext use your bigger egg, a stack of uranium 238 (be sure you wear your hazamuit suit), and mutagen. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemUran238","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"mutagen","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1657,"preRequisites":[1656],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEnder Egg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step you must infuse your egg with endium dust and molten ender to get a ender egg. This process needs 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2770,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"ender","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"HardcoreEnderExpansion:spawn_eggs","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1658,"preRequisites":[1657],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDraconium Egg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to add draconium and ender goo to the ender egg to get a draconium egg. This process takes 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":"dustDraconium"},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"endergoo","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":301,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":25,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1659,"preRequisites":[1658],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDragon Egg Omlet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last step to create you dragon egg is to add enderium and a dragon heart to the draconium egg. This process takes 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"enderium.molten","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":64,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1660,"preRequisites":[1622],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lStyrene-Butadine Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we add a bit sulfur to the raw dust and get molten styrene-butadiene rubber. Use a Plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":2634,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2022,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":17635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30646,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1661,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30664,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSilicone Rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some synthetic rubber like Silicone Rubber?\nThere are different ways to do it and this quest is only an example of how you can make it.\n\nFirst step you need Chloromethane. \n\nYou can use 2 Chlorine and 1 Methane per Chloromethane in your chemical reactor.\n\nAlternatively you can use Methanol and Hydrochloric Acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30664,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30683,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1662,"preRequisites":[1661],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30663,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimethyldichlorosilane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next steps you need Chloromethane and Silicon Dust. Finally you get Dimethyldichlorosilane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30664,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":2020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":30663,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30673,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1663,"preRequisites":[1662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2633,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPolydimethylsiloxane Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put Dimethyldichlorosilane and Water into the chemical reactor and get Polydimethylsiloxane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":30663,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":21,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2633,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2633,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1664,"preRequisites":[1663],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17471,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSilicone Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we add a bit of sulfur to the polydimethylsiloxane dust and get molten silicone rubber. Use a Plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2633,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":2022,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":17471,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30664,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1665,"preRequisites":[1491],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11374,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lHSS-S","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have HSS-G, it's time to make HSS-S. This new alloy is an important part of a lot of IV, LuV and ZPM recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11374,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1666,"preRequisites":[1491],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30024,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§b§lArgon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process some of the new ingots you will find, you need argon. Your first source will come from air, in small amounts.\n\n§4Hint: Use compresed air in a vacuum freezer and get liquid air. This will be a source of argon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30024,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1667,"preRequisites":[1666,1538],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11324,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On Ceres you can find small naquadah ores. Now that you have the dust and argon, you can make some naquadah ingots.\nYour EBF needs HSS-G heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11324,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1668,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"HSSG","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make Tungsten Steel and may upgrade your Electric Blastfurnace with new Coils you are able to make HSS-G Ingots. This ingot becomes very important in LuV tier.\nHss-g is made out of tungstensteel, chrome, molydenum and vanadium dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1669,"preRequisites":[1414],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1184,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The IV circuit assembler will let you make easier MV circuits, as well as single step EV circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1184,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1670,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Doped Monocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make the most advanced wafers, you need to make naquadah dopped monocrystalline silicon first. The process takes 750 seconds and requires silicon blocks and a naquadah ingot in the Electric Blast Furnace. You can make 64 wafers out of every boule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30024,"OreDict":""},{"id":"gregtech:gt.blockmetal6","Count":64,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11324,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32032,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmetal6","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2324,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1671,"preRequisites":[1670],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32035,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Doped Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some naquadah doped silicon wafers, place the monocrystalline naquadah doped silicon boule in a cutting machine. An HV cutting machine is needed for future advanced wafers and chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32035,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1672,"preRequisites":[1671,1006,1697],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun at EV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the EV one. It generates 2048 EU/t max. Most GregTech machines can use them as covers. First you need to produce quadruple sunnarium plate. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":20318,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17362,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17100,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32051,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":19020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32706,"OreDict":"circuitMaster"},{"id":"dreamcraft:item.IrradiantReinforcedTungstenSteelPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":6,"Damage":2380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":11318,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1673,"preRequisites":[1669,1671,1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32047,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSoC - System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make Lv and MV circuits much cheaper you need soc's. System on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32046,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32047,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24507,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1674,"preRequisites":[1407,1673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCheaper MV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the IV circuit assembler and SoC's you can now make integrated processors for a reduced price."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":26345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32080,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1675,"preRequisites":[1669],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32021,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lGlass Fiber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Glass Fiber is used in Fiber Reinforced Boards for circuits.\nBorax can be extracted out of Salt ores. Electrolyze it to get Boron and mix it with Glass dust.\nThe ingots can be turned into glass fiber in the wiremill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":46,"Damage":2941,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2009,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":56,"Damage":2890,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2611,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11611,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32021,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1676,"preRequisites":[1224,1675,1669],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17610,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§b§lFiber Reinforced Epoxid Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fiber Reinforced Epoxid Sheets are needed for the more advanced circuits. Mix glass fiber with epoxid to get your sheets. Alternatively you can use raw carbon fiber. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32021,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":64,"Damage":470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17610,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1677,"preRequisites":[1676],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lEmpty Fiber Reinforced Glass Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fiber Reinforced circuit boards require fiber reinforced epoxid resin sheets, copper foil and sulfuric acid to make an empty board. By adding annealed copper foil and Iron(III) Chloride or Sodium Persulfate you can craft a More Advanced Circuit Board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":29035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":29345,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":5,"Damage":32103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29345,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17610,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1678,"preRequisites":[1679,1249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32085,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSingle step EV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantumprocessors are your first chance to make EV circuits in a single craft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32057,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32085,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1679,"preRequisites":[1677,1249,1247],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32056,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQbit Wafer and Chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Qbit Wafer is made out ofa Nano CPU Wafer and quantum eyes. Cut it for Qbit processor chips.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32056,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32057,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30093,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2980,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1680,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32675,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lThought emitters were bad enough?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field generators are a big part of lategame crafts, and yes they always suck to make."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32675,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1681,"preRequisites":[202],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the ender quarry on its own with speed upgrade is good, why not speed it up a little bit more?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1682,"preRequisites":[1681],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things III","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If Speed upgrade II is to slow craft a speed upgrade III."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1683,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1185,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lLuV Circuits Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV circuit assembler is a nice one, giving you both cheaper HV circuits, as well as IV-UV circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1185,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1684,"preRequisites":[1685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCheaper HV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can make nanocircuits in a single simple step. They cost a new wafer, the ASoC wafer. They get more useful in zpm to make cheaper EV circuits as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":256,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":26085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32082,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1685,"preRequisites":[1671,1407,1683],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32049,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lASoc Advanced System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make HV and EV circuits much cheaper you need ASoCs. Advanced system on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32048,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32049,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24507,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1686,"preRequisites":[1683,1249,1522,1687,1688],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32089,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you're this far into LuV, you can make easier IV circuits, as well as your first UV circuit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32070,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32089,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1687,"preRequisites":[1689],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32070,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystal Chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make these chips you need Europium, as well as an HV Autoclave in the Asteroid Field dimension to achieve \"low gravity\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":30501,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":70,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32069,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17501,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32069,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32713,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32070,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32074,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":2,"Damage":70,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1688,"preRequisites":[1677,1683],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32104,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lElite Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elite circuit boards require a fiber reinforced board, platinum foil and sulfuric acid to make an multilayer reinforced board. By adding again platinum foil and Iron(III) Chloride or Sodium Persulfate you can craft an elite circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32712,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32720,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1689,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10930,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§c§lLuV Laser Engraver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV laser engraver is an important part of lategame circuit production. You need to make crystal CPU's for both wetwares, and crystalprocessors, the cheaper IV circuit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10930,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1690,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 6 > Tier 7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 6 lootbags give a better one = Tier 7."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":1691,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30605,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPolybenzimidazole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polybenzimidazole is a synthetic fiber used in ZPM Hulls and in high tier solar panels. It has many steps to produce it. Let's start with the bas eingredients.\n\nFirst we make some chlorobenzene out of benzene and chlorine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":384,"Damage":30023,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":192,"Damage":30686,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":192,"Damage":30605,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1692,"preRequisites":[1691],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30628,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNitration mixture","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We also need nitration mixture. We can do it out of nitric acid and sulfuric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30628,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1693,"preRequisites":[1691,1692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30592,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l2-Nitrochlorobenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to mixing the nitration mixture with your chlorbenzene in the hv chemical reactor to get 2-nitrochlorobenzene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30628,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30605,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30592,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1694,"preRequisites":[1693],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30596,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§b§l3,3 Dichlorobenzidine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing 2-nitrochlorbenzene with tiny copper dust gives you 3,3 Dichlorobenzidine in an EV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30592,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30596,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1695,"preRequisites":[1694],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30597,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l3,3 Diaminobenzidine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing 3,3 Dichlorobenzidine with Ammonia and Zinc in an IV Chemical Reactor gives you 3,3 Diaminobenzidine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30596,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2036,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30597,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1696,"preRequisites":[176,186,861,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":425,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lChemical reactions at IV level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High tier chemical recipes need a high tier IV chemical reactor.\n\nAlternativly you can use your Large Chemical Rector with two EV or one IV energy hatch."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1697,"preRequisites":[1695,1698],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17599,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPolybenzimidazole finally","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"3,3 Diaminobenzidine and Diphenyl Isophtalate will finally give you molten Polybenzimidazole. Use a plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30597,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30598,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17599,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1698,"preRequisites":[1699,1700],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30598,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lDiphenyl Isophtalate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mix Sulfuric Acid, Phtalic acid and Phenol to get Diphenyl Isophtalate. An IV Chemical Reactor is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30595,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30598,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1699,"preRequisites":[1691],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30687,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Phenol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can get Phenol in different ways, but why not try using your chlorobenzene and some water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30605,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":128,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1700,"preRequisites":[1701,1702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30595,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPhtalic acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Phtalic acid you need mix Dimethylbenzene, tiny piles of Potassium Dichromate and Oxygen in an EV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30593,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":594,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30595,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1701,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30593,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lDimethylbenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dimethylbenzene can be distilled from Wood Tar or using Benzene and Methane gas in a Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30593,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1702,"preRequisites":[1704,1703],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2594,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPotassium Dichromate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potassium Dichromate is made out of Potassium Nitrade and Chromium Dioxide in an HV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2591,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2590,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2594,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1703,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2590,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPotassium Nitrate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potassium Nitrade is made out of potassium and nitric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2025,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2590,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1704,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lChromium Trioxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chromiumtroxide is be made out of chrome and oxygen in two steps. First you make chromiumoxide and then chromiumtrioxide."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2361,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2591,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1705,"preRequisites":[1678],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Processor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantumprocessor Assembly is a IV Circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32085,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":96,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32086,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":24,"Damage":32014,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1706,"preRequisites":[1705],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32087,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lMaster Quantum Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Master Quantumcomputer is an LuV Circuit and needs a cleanroom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32086,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":192,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32087,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32043,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1707,"preRequisites":[1706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32088,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Processor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Quantumprocessor Mainframe is the first ZPM circuit you can make."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32087,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":192,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":192,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32088,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1708,"preRequisites":[1686],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32096,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crystal Processor Assembly is a LuV Circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32089,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32096,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19360,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1709,"preRequisites":[1708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32090,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lUltimate Crystal Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Ultimate Crystalcomputer is a ZPM circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32096,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32090,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32041,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1710,"preRequisites":[1709,1711],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32091,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crystalprocessor Mainframe is the first UV circuit you can make. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32090,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":64,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32091,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1711,"preRequisites":[1489,476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2400,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lSuperconductors 32768 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 32768 EU IV wires? Tetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxide is a superconductor wire and will transfer your energy without any loss. Every voltage now has superconductor wires and a base wire with only a very small EU/t loss.\n\nMix indium, tin, barium, tianium, copper and oxygen in an EV mixer. Now you have the base dust, which needs an EBF with Naquadah coils, and a vacuum freezer to cool it down.\n\nMake some LuV superconductor base wires and use an assembler to combine these wires with helium and tiny enderium pipes and an LuV pump to get your 32768 EU/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2056,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2057,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":28,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2991,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11991,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2280,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2280,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":40,"Damage":5190,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1712,"preRequisites":[1673,1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCheaper LV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the IV circuit assembler and SoC's you can now make a microprocessor for a reduced price."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32078,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1713,"preRequisites":[1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32061,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSimple SoC - System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For a replacement for vacuum tubes in simple circuits you'll need simple SoC's. System on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32060,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32061,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24514,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24540,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1714,"preRequisites":[1713],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32075,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§8§9§lCheaper Simple Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The NAND chip is an industrial replacement for the vacuum tubes that is much cheaper. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32061,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32075,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24514,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24540,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1715,"preRequisites":[1538],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOn your way to Tier 4 DIMs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tier 4 Planets are Jupiter's Moon Io where you will find the next dungeon, Venus (needs a SpaceSuit) and Mercury."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Reach asteroid belt","range":-1,"index":0,"dimension":30,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":16,"Damage":1,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:venusblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:venusblocks","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":1,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1716,"preRequisites":[1715],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":84,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIridium Mix","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nickel, Iridium Palladium and Mithril you can find on Io or Venus. Look at Y 15-40.\nYou can get also Osmium out of Iridium Ore for high tier materials you need later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":84,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":331,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1717,"preRequisites":[1715],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":391,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lVenus Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Venus has two ore mixes you really want to find. One mix is the Quantium Mix and the other is Naquadah.\n\nMake sure you are wearing proper protective equipment!\n\n§4Quantium is found at Y 5-25 and Naquadah Y 10-90."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Venus","range":-1,"index":0,"dimension":39,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":391,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":509,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":375,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":128,"Damage":324,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":326,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1718,"preRequisites":[213,86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11358,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYttrium-Barium-Cuprate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yttrium-Barium-Cuperate becomes more important in LuV Tier. It needs an EV Mixer to mix and a Electric Blast furnace with Tungsten Steel heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":11,"Damage":2045,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":22,"Damage":2063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":33,"Damage":2035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2358,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11358,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1719,"preRequisites":[1672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun 1x1 EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 2048 EU panels on a block to make them placeable in the world. Use an IV assembler to combine the panel with an EV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32540,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1720,"preRequisites":[1671,1007,1722],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPower of the Sun at IV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the IV one. It generates 8192 EU/t max. Most GregTech machines can use them as covers. First you need to produce sunnarium alloy out of reinforced iridium and sunnarium. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17358,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17346,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32053,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":18599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":20020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32088,"OreDict":"circuitUltimate"},{"id":"dreamcraft:item.IrradiantReinforcedChromePlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":6,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11318,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1721,"preRequisites":[1720],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"supersolarpanel:SpectralSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPower of the Sun 1x1 IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 8192 EU panels on a block to make them placeable in the world. Use an LuV assembler to combine the panel with an IV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32545,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"supersolarpanel:SpectralSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1722,"preRequisites":[1489],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10780,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lLuV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV assembler is needed for IV Solar Panels and other high tier stuff. Lets build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10780,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1723,"preRequisites":[1535],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:ioblocks","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"IO Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours and hours and endless swimming in lava you will find a Io dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 5 rockets.\n\nThis will open the Moons from Saturn and Uranus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier5Key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1724,"preRequisites":[80,1717,1723],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 60 tier 5 heavy duty plates out of tier 4 plates and compressed quantium plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":60,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":480,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyAlloyIngotT5","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":256,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1725,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in an HV Scanner and put the construction data on a Data Stick. The fourth tier schematic circuit uses an elite circuit and a heavy duty plate tier 5 and the data stick in a LuV circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier5","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":5},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1726,"preRequisites":[1724,1725,1730,1727,1728,1729],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier5Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a month of hard work and ten thousand stacks of iTNT your fifth rocket is finally ready. But before you can go to Saturn and Uranus Moons you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":12,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LargeFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.Tier2Booster","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier5Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":256,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1727,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Nose Cone Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone. Tier 5 rocket needs a heavy nose cone tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.LedoxCompressedPlate","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1728,"preRequisites":[1731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Rocket Engine Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. A heavy one tier 3 is needed in the tier 5 rocket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.Tier2Booster","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LedoxCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":32,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1729,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Rocket Fins Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins. Tier 5 rockets need heavy ones Tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.CompressedSDHD120","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":24,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1730,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LargeFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Fuel Canisters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 5 rocket you need to craft two medium and two large canisters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MediumFuelCanister","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LargeFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LedoxCompressedPlate","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1731,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.Tier2Booster","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Booster Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The distance between Planets and Moons is much larger now so the rocket needs bigger boosters to reach it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LedoxCompressedPlate","Count":12,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.CompressedSDHD120","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Tier2Booster","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11374,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1732,"preRequisites":[1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_jetplate","Count":1,"tag":{"electricity":100000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"EVA equipment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who wants to trudge around on the surface when you can fly? Upgrade your chestplate with a jetpack and fly around Venus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{"charge":30000},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_jetplate","Count":1,"tag":{"electricity":100000},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1733,"preRequisites":[1531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Journey to the bottom of a molten ocean","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Venus is hot, so hot it can melt lead. On top of that the atmosphere is so thick, 90x the Overworld, that it will crush you. Not to mention the Sulfuric Acid! You will need to construct a special suit to survive on Venus without dying instantly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_leg","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1734,"preRequisites":[1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_gravityboots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gravity boots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These boots will help you fall faster in low gravity environments. Or not. Maybe. Give them a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_gravityboots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1735,"preRequisites":[1205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBowl full of spaghetti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or at least factories full of item pipes. With these simple item pipes and conveyors you can take items out of one machine and feed them immediately into a second machine.\n\n§4Later you can make better item pipes. Look for \"item pipe\" in NEI for options."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5590,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spagettiItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1736,"preRequisites":[895],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPipes, pipes everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are in MV, you will want to start automating processes. Polyethylene, O2, N2, H2, rubber, charcoal, etc. Faster item pipes will help with transporting items quickly around your base. For now, use your spiffy new extruder to craft some brass item pipes. \n\nThe reward - restrictive item pipes - allow you to prioritize destinations. Locations on the other side of a restrictive pipe are treated as much further away than locations on the same side of a pipe. Very handy when you want overflow (or non-matching) items to go somewhere else!\n\nFor higher tiers, look up \"* item pipe\" in NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5641,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1737,"preRequisites":[1288],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More Red, less Wheat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When breeding together crops for an output crop, try to get crops that are close in tier to the output crop, and have similar attributes to the output crop. \n\nFor example, Redwheat has \"Red\", \"Wheat\" and \"Redstone\" attributes and is tier 6. Netherwart has \"Red\" and is tier 5. Use the cropnalyzer crop prediction mode to see how many points Redwheat has using two Netherwart. \n\nYou'll also want to make sure the light level is between 5-10 for the cross breeding to occur. \n\nReally though, once you get to MV it's better to make a Glowstone crop and centrifuge it for redstone. Red wheat == Dead wheat"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":2,"tag":{"owner":"IC2","name":"netherWart","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"redwheat","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinFarmerII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1738,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"openglasses:openglasses","Count":1,"Damage":7734,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lWhen all you have is a hammer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...the whole world looks like a nail. When looking for good tool materials, look for the generic tool in NEI and use R to find the recipe. Then use U on the source materials you have to find out their durability options. Tool parts are normally not in NEI, like the drill bit. So use NEI U on plates etc to figure out their recipes. \n\nThe GT tools each have special uses.\n\nScrewdriver - Used on covers to change their behavior.\n\nWrench - Used to change the output direction on a GT machine, or to break it. Can also disconnect/connect pipes or enable their built in shutter.\n\nCrowbar - Remove covers from machines or pipes.\n\nWire cutters - Connecting/disconnecting wires/cables.\n\nSoft mallet - Turning machines on/off.\n\nHammer - Prospecting for ores in a limited way in front of you, and smashing ore blocks into crushed ores."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1739,"preRequisites":[1231,146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockFarmStation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFarming a little easier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of the forestry farms requirements? The Ender IO Farming Station is available to ease your suffering. It just requires EU and can be easily upgraded with capacitors. Most normal crops and trees work with it, but unfortunately IC2 crops do not."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":22378,"OreDict":""},{"id":"EnderIO:itemMaterial","Count":2,"Damage":5,"OreDict":""},{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31365,"OreDict":""},{"id":"EnderIO:itemFrankenSkull","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockFarmStation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:diamond_hoe","Count":1,"tag":{"ench":[{"lvl":3,"id":34},{"lvl":3,"id":35}]},"Damage":0,"OreDict":""},{"id":"minecraft:diamond_axe","Count":1,"tag":{"ench":[{"lvl":3,"id":35},{"lvl":3,"id":34}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1740,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1171,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDo you hear that engine revving?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your old and trusty combustion engines don't quite cut it anymore, not to mention they are polluting the place. If you want to keep burning liquids, you need to build a better engine. This multiblock can produce 1A of EV voltage by default and 3A if you supply it with oxygen. However, this power doesn't come for free - you need to supply the machine with small amounts of lubricant constantly (and oxygen if you want to boost both its efficiency and output).\n\nYou will also require 3 Input Hatches, a Muffler, and a Dynamo Hatch. Their tiers are up to you.\n\nCetane Boosted Diesel and High Octane Gasoline are excellent fuel sources for this engine.\n\nYou will need to keep the area in front of the engine clear so it can pull enough air - not even torches."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1171,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":2,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":8,"Damage":13,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":19,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30998,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":7,"Damage":0,"OreDict":""}]}]},{"questID":1741,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:Natura.netherfood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lNice Nether Trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a few very useful Nether trees out there which gives resources like Redstone, Gunpowder, Bonemeal or Fertilizer.\n\nGo and get a few trees like Bloodwood, Fusewood, Darkwood or Ghostwood out of the Nether.\n\nThese trees can be planted like normal trees, except for Bloodwood. That has to planted on a ceiling and will grow down instead of up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:floraleavesnocolor","Count":16,"Damage":1,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":4,"OreDict":""},{"id":"Natura:tree","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Natura:floraleavesnocolor","Count":16,"Damage":2,"OreDict":""},{"id":"Natura:bloodwood","Count":8,"Damage":0,"OreDict":""},{"id":"Natura:bloodwood","Count":8,"Damage":15,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Natura:Dark Tree","Count":8,"Damage":0,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":6,"OreDict":""},{"id":"Natura:Dark Leaves","Count":16,"Damage":0,"OreDict":""},{"id":"Natura:Natura.netherfood","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"Natura:Dark Tree","Count":8,"Damage":1,"OreDict":""},{"id":"Natura:Dark Leaves","Count":16,"Damage":3,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemAlloy","Count":4,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1742,"preRequisites":[765,810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30005,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lHelium 3 and Saltwater on Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon is rich in Helium 3 because the Sun has been embedding it in the upper layer of moon by the solar wind over billions of years. \nSalt water is also available in smaller quantities. You will want plenty of chlorine for processing Rutile to get Titanium. \n\nThere are more planets and moons with gas and fluids underneath the surface. Bring along a multiblock fluid drill to recover these fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30005,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30692,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:blockTank","Count":4,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1743,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30692,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Saltwater and Chlorobenzene on Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mars is rich on saltwater and chlorobenzene. If yu run low on chlorine you can centrifuge the fluids.\n\nMore Fluids and Gases can be found on (This list is subject to change due to balancing at any time!):\n\nSalt water\n\n Moon - v low\n Mars - Low\n Europa - High\n\nHelium3\n\n Moon - V.Low\n Mercury - Low/High\n\nChlorobenzene\n\n Mars - V.Low\n\nNitrogen\n\n Triton - high\n Pluto - high\n\nMethane\n\n Titan - High\n\nEthane\n\n Titan - Low\n\nEthylene\n\n Triton - Low\n\nCallisto\n\n Oxygen - Low\n\nSuper Heavy Oil\n\n Europa - low\n BarnardC - high\n TCetiE - low\n\nMolten Naquadria\n\n BarnardC - Low\n VegaB - high\n\nMolten Naquadha\n\n Venus - V.Low\n Titan - low\n Haumea - high\n\nLiquid air \n\n Callisto- Low\n Charon - Medium\n BarnardE - High"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30692,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"chlorobenzene","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"EnderIO:blockTank","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32708,"OreDict":""},{"id":"minecraft:tnt","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17028,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1744,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lChemical lesson part two","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More advanced recipes need an mv chemical reactor like polyethylen.\n\nHint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1745,"preRequisites":[1598,1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":48,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Welcome to OpenComputers!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hello there, my name is Teirdalin and today we shall embark on one of the most exciting and fun mods; OpenComputers! First things first though, you will need some patience to get through this mod, but it will certainly pay off in the end!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":98,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32007,"OreDict":""}]}]},{"questID":1746,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your First Microchip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Microchips will be used in most things you make, so if possible; I suggest bulk crafting quite a few of these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":4,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1747,"preRequisites":[1754,1751,1750,1753,1756,1755,1760,1762],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"universalsingularities:universal.bigReactors.singularity","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your First Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Place the power converter you gotten earlier near an electircal cable and connect it with your wire cutters. Now place your computer case by the converter and by the magic of technology it shall fuel the computer case! Now take your hard drive, memory and graphics cards and place them inside, place the disk drive next to the computer and insertin the operating system disk. Insert the bios we made into the case and turn it on."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":48,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1748,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":27,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arithmetic Logic Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Arithmetic Logic Circuits are used in numerous parts; mostly in groups of 8-16 upto 64. \nSo make sure to make plenty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1749,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"All Your Card Are Belong To Us","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Card bases are just as you might think they are; they're the base part that each card you make will use to connect onto the motherboard.\n\nI suggest making a handful of these for future cards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1750,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Short Term Memory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gotta get more ram.\n\nMemory, or ramis essentially a temporary storage of data on your computer that can be rapidly accessed via your programs..\nHence the name Rapid Access Memory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":29303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":33,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1751,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Woah Rad Graphics!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"See the digital world.\n\nYour graphics card allows the computer to draw text and other things to the screen. \nThe better graphics card you use the higher resolution, and better features can be drawn.\n\nYou also need a higher tier monitor to display colors or to get touchscreen compatability-\nbut that's something to worry about for another day."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""},{"id":"OpenComputers:item","Count":8,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":2,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32717,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"OpenComputers:screen1","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"OpenComputers:screen2","Count":2,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1752,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Control Units","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So controlling! Strangely enough, this part takes an HV circuit to craft; so here's some to make your first computer parts in exchange for MV circuits in their place. Don't spend them all in one place!"}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32702,"OreDict":"circuitGood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":16,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1753,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What did the data say to the CPU?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cache me outside.\n\nYour CPU will essentially be how fast your computer processes data. \nA stronger CPU == A faster computer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":8,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1754,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:case1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Computer Case","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"100 Percent Waterproof.\n\n\nThe computer base is the HUB of all your computer parts essentially.\nIt takes two memory sticks, a BIOs rom, a CPU, and a hard drive at the very least to run your computer.\n\nThe power converter allows you to power it from your GregTech power grid, and the floppy drive will allow you to install your operating system onto the hard drive. Both parts are essential but both for some strange reason requires the T2 microchips to craft; so here's a starting pair using T1 Microchips instead- Don't lose them!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21019,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:case1","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24890,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":23035,"OreDict":""},{"id":"OpenComputers:item","Count":3,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"OpenComputers:cable","Count":2,"Damage":32767,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":"plateAluminium"},{"id":"OpenComputers:item","Count":2,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:powerConverter","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:diskDrive","Count":1,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1755,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:wrench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"My Little Scrench","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A screwdriver and wrench in one. Not really a necessary tool, but has some purposes; I suggest referring to your computer manual."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"OpenComputers:wrench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":98,"OreDict":""}]}]},{"questID":1756,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"HDD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your hard drive is where all your programs and data is stored..\n\nYou're playing minecraft, you should already know this though."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18019,"OreDict":""},{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""},{"id":"OpenComputers:item","Count":2,"Damage":24,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":"oc:hdd1"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"tag":{"oc":"OpenComputers:openos","display":{"Name":"OpenOS (Operating System)"}},"Damage":4,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1757,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":19,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not Your Average Platter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We'll need these for our hard drives."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24890,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29019,"OreDict":"foilAluminium"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1758,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:eeprom","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BIOS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The rom disks are necessary to get your computer to start, they're also what you use to run a drone off from.\nYour BIOs go onto these little disks, get me a blank and I'll write the basic BIOs onto it for you.\n\nYou can do this later when you make more computers by flashing your existing bios onto new cards or combining a blank with the manual."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"OpenComputers:eeprom","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:eeprom","Count":1,"tag":{"oc":{"oc":"EEPROM (Lua BIOS)"}},"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1759,"preRequisites":[1748,1752,1746,1757,1749,1758],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":54,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Congratulations we have the parts to start making a computer!\n\nLet's start with the basics here."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1760,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Intelligence is the ability to adapt to change.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This block allows our computer to interact with GT machines and everything else. A must have!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"OpenComputers:cable","Count":2,"Damage":32767,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""},{"id":"OpenComputers:adapter","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1761,"preRequisites":[1747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hello World!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First things first, let's install OpenOS to the computer so you don't always need disk in the drive. Type in 'install' and then type 'Y' when asked if you wish to install OpenOS. \nWhen finished, remove the disk and toss it on your wall and reboot the computer. \nType 'df' to display all present file systems and mount points, you'll notice one named OpenOS; this is your hard drives default name after installing the OS. \nLet's change it with 'label set -a OpenOS HDD' -a checks for names starting with what you type after it with that command.\n\nNow for fun, let's make your first program! How about something functional, make a with 'edit startup' this will bring you to an edit page for a new program called startup. Let's just have it do something simple, 'print(\"Hello World!\")' Like that'll never get old.\n\nNow press Ctrl+S to save, and Ctrl+W to get out of that screen. Back in your home root let's now type startup and you'll see it display \"Hello World!\" neat huh?\n\nLet's now make startup actually work on startup. Type 'edit .shrc' .shrc is a mystic file that runs shell commands when booting your PC. So in .shrc type 'startup' save and reboot the computer. Now it should say \"Hello World!\" upon starting. Double neat right?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32002,"OreDict":""}]}]},{"questID":1762,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I love pressing the F5 key.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's so refreshing.\n\nPlace a keyboard facing a screen- or stuck to the back of a screen to make it able to interact with a computer.\nAbsolutely necessary to doing anything on your computer, but can safely be removed once you have an endlessly running program."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone_button","Count":104,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"harvestcraft:colasodaItem","Count":1,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1763,"preRequisites":[1761],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mounting your HDD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alright, you have your computer, it says \"Hello World!\" When you start it, and you feel awesome and capable of world domination. \n\nNow lets setup your HDD. Open .shrc again in the editor, and press ENTER to go down a line after the print, and type in 'cd ../' this will move your viewed directory that's being viewed to- well, the absolute base directory. \n\nNow go down another line and type in 'mount HDD C:' because why not, it's Classic; this mounts the file drive into the folder you're in. Go down another line and type cd 'C:/' save and reboot the computer.\n\nYou'll now start in C:/ nifty! Try typing 'mkdir programs' and now you have a dedicated directory to put your programs in for the sake of organization.\n'cd programs' will then take you to programs, and 'cd ../' will take you back a directory; you can also do things like- lets say you have a folder called apples in C as well but you're in apples, type 'cd ../apples' and it'll take you to apples, .. essentially just means previous directory and this can be stacked; works with copying files and moving them as well, very useful to know. \n\nut right now we're going to do something functional, come over to the next quest and bring your adapter and cables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1764,"preRequisites":[1763],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Power Display","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For this part we will learn how to use our adapter, place it next to- let's say your EBFs battery buffer and connect it to the computer with cables.\nNow lets type in lua while on the computer to open the LUA environment where we can test things without worrying about saving and trying our program.\n\nType in 'component.list()' this will display a table of all of .list from component. What we're looking for is gt_batterybuffer.\nIf you have too many nearby things it may not display and the way to search the entire list of components is too advanced for starters.\n\nSo now assign a variable to it; for example 'a = component.gt_batterybuffer'; now we can call 'a' to see what methods the batteryBuffer has.\nWhat we'll be using in this example is the 'getBatteryCharge' method. So type\n 'a.getBatteryCharge(1)' this will call the method getBatteryCharge from the first inventory slot on the gt_batterybuffer in component.\n\n So if we're using a 2x2 battery buffer; we can type something like- 'for i=1, 4 do print(a.getBatteryCharge(i)) end\nPoof you now see what all the batteries EU values. Now what can we do with this?\n\nTry making a variable called 'batteryCharge = 0', now do 'for i=1, 4 do batteryCharge = batteryCharge + a.getBatteryCharge(i) end'\n\nNow print(batteryCharge) will display the total charge. Here's a program example of this being used.\n\nPlace in your tape drive and type 'install', and follow the promps to install it into C. Then edit it, test it, figure how it works.\n\nI suppose that's enough for now; congrats! Experiment and learn, and don't forget to check google as much as possible! \nThis questline will be updated again in the future; but I figure this is a good ending point for now."}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"tag":{"oc":{"node":{"address":"9147f798-ee2f-44da-b736-b6a30beed8da","visibility":2,"buffer":0},"owners":[{"handles":{},"address":"9fbc465f-657a-437e-9f90-f18aaf9eb423"}],"oc":"PowerDisplay","fs":{"output":{},"input":{},"capacity.used":2045}}},"Damage":4,"OreDict":""}]}]},{"questID":1765,"preRequisites":[1747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:itemGenericToken","Count":16,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Online Shopping - Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey, a use for bitcoins!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1766,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Network Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Network Card for six Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":1767,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":113,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Wireless Network Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Wireless Network Card for 12 Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":113,"OreDict":""}]}]},{"questID":1768,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Memory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a pair of Tier 1 Memory Chips for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""}]}]},{"questID":1769,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Graphics Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Graphics Card for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1770,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":3600,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Graphics Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Graphics Card for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1771,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:cable","Count":8,"Damage":32767,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you 16 cables for two bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""}]}]},{"questID":1772,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:screen1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Screen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Screen for three Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:screen1","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1773,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Hard Drive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Hard Drive for eight Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1774,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Floppy Disk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Floppy Disk for a Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1775,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Keyboard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Keyboard for two Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1776,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Microchip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Microchip for two Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]}]},{"questID":1777,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32009,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Coin Conversion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sell 32 of those Dogecoins for a Bitcoin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32009,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1778,"preRequisites":[231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Warp Warnings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumcraft offers considerable power from its devices and tools. \nBut power comes with a price.... As of version 4.2, that price is represented by Warp: \nA corruption of the characters mind and soul, inflicting progressively more dire effects upon them. \nWhile the effects of warp can range from annoying to deadly, accumulating enough of it can also grant you access to greater power... at the cost of increasing madness, and attention from dark powers.\nAt least, others may call it madness... but is it truly insanity, when the voices in your head grant useful knowledge, and the monsters that appear before you leave remains behind?\n\nWarp Theory add a bunch of new Warp Effects to the Player. Be very carful because you don't want autospawning an Wither in or bside you Base.\nWarp Effects are Trickert by Warp Level.\n\nFake explosion warp effect can happen with 10 Warp\nFake creeper warp effect can happen with 10 Warp\nSpawn bats can happen with 15 Warp\nPoison warp effect can happen with 16 Warp\nJump boost warp effect can happen with 18 Warp\nRain warp effect can happen with 25 Warp\nBlood warp effect can happen with 25 Warp\nNausea warp effect can happen with 25 Warp\nFriendly creeper warp effect can happen with 26 Warp\nLightning warp effect can happen with 30 Warp\nLivestock rain warp effect can happen with 32 Warp\nWind warp effect can happen with 38 Warp\nBlindness warp effect can happen with 43 Warp\nRandom teleport can happen with 45 Warp\nAcceleration warp effect can happen with 50 Warp\nDecay warp effect can happen with 50 Warp\nRandom trees effect can happen with 50 Warp\nChest scramble warp effect can happen with 80 Warp\nSpawn wither warp effect can happen with 80 Warp"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"WarpTheory:item.warptheory.paper","Count":16,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemBathSalts","Count":4,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1779,"preRequisites":[486,49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:pistonBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Step Assistant.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Piston Boots are a bouncy pair of shoes for adventurers.\n\nIt functions as a piece of armor for the foot slot that gives a fun jump boost! They let the wearer jump up to THREE blocks in height and increase run speed. They also grant a Step Up enchantment to allow the wearer to step up a single block without jumping while sprinting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17880,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"adventurebackpack:pistonBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1780,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:pamoliveSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Olives Saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Olive trees can't be find in the overworld so the best way would be to buy some with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:pamoliveSapling","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1781,"preRequisites":[692,102,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Gear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The goggles, wings, shoes, vest, belt and boots it self are not realy special. You can zoom with the googles, have a extra inventory slot with the belt, stepup assistent with the shoe, jump boost with the wings and faster swimming ability with the vest. You get protction like with normal armor too.\nLater on you can upgrade your items to becomes more powerful ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":26303,"OreDict":""},{"id":"harvestcraft:hardenedleatherItem","Count":17,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17804,"OreDict":"plateObsidian"},{"id":"minecraft:diamond_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_boots","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:fletching","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32642,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":6,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Built":1,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelBelt","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:hardenedleatherItem","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17500,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1782,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Night Vision":1,"Built":1,"Moss":3,"Tooltip1":"Night Vision","Tooltip2":"Auto-Repair","Effect2":4,"ModifierTip2":"Moss","Effect1":0,"ModifierTip1":"Night Vision","ModDurability":0,"DamageReduction":0,"Broken":0,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":1,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Goggles upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nightvision is very usefull. If you combining your Goggles with a night vision potion, a golden carrot and a lighter inside the Tinkers Table you get Night Vison Goggles.\n\nHint:\nAutorepair can be added to the goggles aswell.\nEvery Armor have 3 slots for modofication."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Built":1,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Night Vision":1,"Built":1,"Tooltip1":"Night Vision","Effect1":0,"ModifierTip1":"Night Vision","ModDurability":0,"DamageReduction":0,"Broken":0,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""},{"id":"minecraft:potion","Count":2,"Damage":8198,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1783,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"Moss":3,"Tooltip1":"Perfect Dodge","Tooltip2":"Stealth","ModifierTip3":"Moss","Effect2":1,"ModifierTip2":"Stealth","Effect1":0,"ModifierTip1":"Perfect Dodge","Effect3":4,"ModDurability":0,"DamageReduction":0,"Broken":0,"Perfect Dodge":1,"Stealth":1,"Tooltip3":"Auto-Repair","MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Vest upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You vest can be equiped with a few modification like perfect doge and stealth.\nPerfect doge mean you're harder to hit and can be stacked up to 3 times.\nStealth turn you invisible while sneaking.\n\nHint:\nAutorepair can be added to the vest aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"Tooltip1":"Perfect Dodge","Effect1":0,"ModifierTip1":"Perfect Dodge","ModDurability":0,"DamageReduction":0,"Broken":0,"Perfect Dodge":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:potion","Count":2,"Damage":8206,"OreDict":""},{"id":"minecraft:ender_eye","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1784,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Double-Jump":1,"Built":1,"Moss":3,"Tooltip1":"Feather Fall","Tooltip2":"Double-Jump","ModifierTip3":"Moss","Effect2":0,"ModifierTip2":"Double-Jump","Effect1":1,"ModifierTip1":"Feather Fall","Effect3":4,"ModDurability":0,"DamageReduction":0,"Broken":0,"Feather Fall":1,"Tooltip3":"Auto-Repair","MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Wings upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wings can be equiped with a few modification feather falling and double jump.\nFeather fall means allow you to glide down slowly in air.\nDouble Jump means you jump while in the air to jump again.\n\nHint:\nAutorepair can be added to the wings aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Tooltip1":"Feather Fall","Effect1":1,"ModifierTip1":"Feather Fall","ModDurability":0,"DamageReduction":0,"Broken":0,"Feather Fall":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1785,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Tooltip1":"Haste","Effect1":1,"ModifierTip1":"Redstone (500/500)","ModDurability":0,"Broken":0,"Redstone":[500,500,1],"MiningSpeed":500,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":500}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Gloves upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Putting redstone on my weapon makes it faster. So why don't I put it on my hands directly!\nIt will be increases the mining speed.\n\nHint:\nEvery Armor part have 3 Slots for modification.\nGloves have 4."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_block","Count":55,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Tooltip1":"Haste","Effect1":1,"ModifierTip1":"Redstone (500/500)","ModDurability":0,"Broken":0,"Redstone":[500,500,1],"MiningSpeed":500,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":500}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:slime.pad","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1786,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Moss":3,"Tooltip1":"Slimy Soles","Tooltip2":"Water-Walking","ModifierTip3":"Moss","Effect2":1,"ModifierTip2":"WaterWalk","Effect1":3,"ModifierTip1":"Slimy Soles","Effect3":4,"ModDurability":0,"DamageReduction":0,"WaterWalk":1,"Broken":0,"Tooltip3":"Auto-Repair","MaxDefense":6,"Damage":0,"Slimy Soles":1,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Shoes upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You shoes can be equiped with a few modification like water walk, double jump, lead boots or slimy shoes.\nWater walk mean to allows you to walk over water.\nDouble jump means to jump while in the air to jump again.\nLead Boots mean to allows you to walk under water, prevents you from swimming and Blub.\nSlimy Shoes means to dampens the fall impact and reduces fall damage that you taken.\n\nHint:\nAutorepair can be added to the shoes aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Tooltip1":"Water-Walking","Effect1":1,"ModifierTip1":"WaterWalk","ModDurability":0,"DamageReduction":0,"WaterWalk":1,"Broken":0,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:iron_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1787,"preRequisites":[213,1412],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15481,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lData Reader","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Assembly Line recipes are a pain in the A*****.\nScanning the item, printing it and make a book from it is a long process and the book recipe contains only text.\nWhy not using the Data reader from Tec Tech?\nIt shows up the recipe in Nei."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32740,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15481,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1788,"preRequisites":[1116],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unlocking bee breeding lines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No Description"}},"tasks":{},"rewards":{}},{"questID":1789,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_door","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lFactory Iron Door","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new Factory you need iron doors. Well the recipe is realy hard and need steel. \nYou can choose two more doors as reward if you like."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:iron_door","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:iron_door","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stone_button","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1790,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lWooden Door","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new House you need more wooden doors. Well the recipe is realy hard and need iron/copper and a lot of wood. \nYou can choose two more doors as reward if you like."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:planks","Count":4,"Damage":0,"OreDict":"plankWood"},{"id":"minecraft:trapdoor","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:wooden_door","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_pressure_plate","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1791,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":878,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lOilsand or how you get heavy Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oilsand is an other way to get oil, heavy oil. Maybe you lucky and found in a dessert biome a oilsand vein. With your centrifuge ou are able to get heavy oil and sand blocks out of the ore.\nThe veins can be found between Y level 50-80."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":878,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:berryMedley","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberrypieItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:carrotsoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1792,"preRequisites":[531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":321,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lI guess it is an inkjet?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you use the seismic prospector, you'll need a scanner and a printer to create the books full of tasty ores and delicious fluids.\n\nUse ink sacs in a fluid extractor to get squid ink. Move using a tank or universal cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":321,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:dye","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1793,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Ztones:cleanDirt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better dirt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With an Assembler and some seedoil, you can turn dirt and sand into Garden Soil. This optimal soil does not require water nearby and crops do not break when you fall on it. It can turn into dirt if you run on it, so be careful. You might want to investigate the Slow Building Ring in Building Better Bases."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Ztones:cleanDirt","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Ztones:cleanDirt","Count":48,"Damage":0,"OreDict":""}]}]},{"questID":1794,"preRequisites":[1541],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32762,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Even more stats","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the portable scanner, you can get the crop's stats and environmental info while it is still in the ground. Look for the portable scanner quest after the EBF in Multiblock Goals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32762,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Nickelback","scan":4,"growth":5,"resistance":5,"gain":5},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1795,"preRequisites":[1601],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32531,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Metals from the Sky","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can even create metals not found on Earth using crops! You'll need the proper metal block beneath the crop in order for them to fully mature."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32521,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32522,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32531,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32532,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Stargatium","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Quantaria","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"gregtech:gt.blockores","Count":4,"Damage":2317,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1796,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Gallium and Arsenic sources","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of ways to increase your Gallium.\n\n1. Use IC2 crops under the Farming tab to get Galvania leaves, to 4x your zinc and sphalerite crushed ores to purified ores.\n\n2. Use the HV macerator on the centrifuged ores to get a 10 percent chance of a whole Gallium dust.\n\n3. Use plentiful Bauxite ores from the Moon.\n\nFor Arsenic, Cobaltite ore in the Twilight Forest is a great source. It can be multiplied 4x by the IC2 crop Nickelback."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1797,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"New threads","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of killing spiders for string? Grow some flax for an easy non-biting source of string.\n\nYou can also directly place Cotton seeds on cropsticks to grow cotton that way. With some Corium in the next quest, you can get easy tanned leather."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Flax","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1798,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The ground is crying","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need an alternate source of Chlorine? Breed some Tearstalks to get Ghast Tears for making salt water.\n\n;-;\n\nNether warts should yield tearstalks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Tearstalks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ghast_tear","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1799,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blazes too hard to kill?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Then grow some blazereed to save yourself the trouble.\n\nTearstalks should easily yield blazereed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Blazereed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:blaze_rod","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1800,"preRequisites":[1809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A girl's best friend","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need to impress a lady? How about growing diamonds on reeds?!?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Diareed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1801,"preRequisites":[1933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why does my plant bawk like a chicken?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Because it can lay eggs!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Eggplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:feather","Count":512,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1802,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vegan, but still want to eat meat?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Instead of killing animals, just mutate some crazy GMOs into making animal products for you. Science!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corium","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Meatrose","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corpseplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beef","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:fish","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:porkchop","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1803,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemNugget","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magical Metal Berry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"..is obviously the name of my cover band. But also a great crop for Thaumium or Void metals. Requires a block of iron or thaumium to get thaumium, and void metal block to get void metal. Like other ore berries, it only grows in dim light. Any oreberry should have a decent chance of yielding this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Magic Metal Berry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1804,"preRequisites":[1803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Other magic flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Other magical flowers are possible such as shimmerleaf, mandragora, wolf's bane, and more."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1805,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockgranites","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Stonelillies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stone lillies allow you to get dusts without having to look for granites, basalt, or marble. Great renewable way to get calcite, fluorine, or bulk aluminium (and a tiny bit of uranium).\n\nThese require the original block directly beneath them to grow properly.\n\nThere is also a Grey stonelilly for stone dust (who needs more of that??) and a Yellow stonelilly for sand or Endstone dust. Handy for the clever chemist!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Red Stonelilly","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"White Stonelilly","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Black Stonelilly","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Yellow Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1806,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of different glowstone crops - glowflower, glowing earth coral, and glowshrooms. Nether wart is a great source of these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowshroom","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowing Earth Coral","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowflower","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glowstone","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1807,"preRequisites":[1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Leaves of steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, steel leaves anyways. Instead of grinding Twilight Forest for steel leaves, grow a crop in peace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Steeleafranks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2339,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1808,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:fertilizerBio","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plants that make their own fertilizer?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sign me up! This plant will create fertilzer ingredients for you. \n\nDecent plants to cross to get Fertilia are spidernip, venomilia, or zomplant. Watch out for venomilia though, not only is it poisonous, it also promotes weed growth!\n\nYou can make Forestry fertilizer with the drops from this plant in a mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Fertilia","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""}]}]},{"questID":1809,"preRequisites":[1927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:HoneyDrop","Count":1,"Damage":2000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Renewable oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oil from crops? Makes as much sense as oil from bees!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Oilberries","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1810,"preRequisites":[1187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boost your speed v 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High speed transition and booster tracks get your carts moving at really ridiculous speeds. Do not use normal track without several transition tracks or else your cart will explode. Do not try turning at high speed or, you guessed it, your cart will explode."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":8,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.transition"},"Damage":26865,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1811,"preRequisites":[1874,989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":131,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEven LARGER tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"4000 buckets not enough storage? Stockpiling diesel for a lifetime? Try a Super Tank 2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":131,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1812,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30667,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTeflon Don","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make PTFE, aka Teflon, you only need a few steps. \n\nThe first one is hydrofluoric acid. If you have not reached the moon yet, the best sources for fluorine are hammering sandstone for a chance at fluorite and centrifuging stone dust or black granite dust for biotite. You can also get small amounts from Lepidolite in salt veins and Mica. Mix it with some hydrogen to get hydrofluoric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30014,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30667,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":110,"Damage":2848,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1813,"preRequisites":[1812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30668,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChloroform","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next step is to mix methane and chlorine to make chloroform. Make sure you have your circuit set correctly.\n\nNow is probably a good time to look at stockpiling chlorine. Look for salt ores, or lapis veins. You can also make salt water with ghast tears. Better get started with IC2 crops, you will need a lot of chlorine later!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30668,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":944,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1814,"preRequisites":[1813],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11473,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTetrafluoroethylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Liquid hot plastics smell great, don't they? Mix your hydrofluoric acid and chloroform to make tetrafluoroethylene. React the TFE with oxygen to make molten PTFE. Finally a fluid solidifer will make bars for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30667,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30668,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30666,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":11473,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32408,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1815,"preRequisites":[1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":132,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHow much is too much fluid?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There is no limit to how much fluid you might want to store. Make yourself some super tank III's for all your bulk storage needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":132,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":32670,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1816,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":823,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Calcite getting you down?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having a hard time finding that Lapis vein for some calcite? I'll trade you some for your hard earned coins and some stone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":823,"OreDict":""}]}]},{"questID":1817,"preRequisites":[477],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #7: Upgrade tier 8 - Electrum Flux Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the more advanced materials like Cosmic Neutronium, Tritanium and Awakened Draconium you need more than 9000K. Upgrade your EBF to 9900k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1818,"preRequisites":[1333,216],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Essentia Generator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having one Essentia Generator per Essentoia type seeems unpracticable.... Better make a Large Essentia Generator and burn all this Essentia in parallel! As another Bonus, this Generator produces 20x the Energy a Single Block Machine will produce. You might need more Magic Containment Casings than this Quest asks for."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13000,"OreDict":""},{"id":"EMT:EMTMachines","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12988,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":25,"Damage":95,"OreDict":""},{"id":"EMT:EMT_GTBLOCK_CASEING","Count":50,"Damage":1,"OreDict":""},{"id":"EMT:EMT_GTBLOCK_CASEING","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIV","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Avaritia:big_pearl","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32088,"OreDict":""},{"id":"Thaumcraft:blockEssentiaReservoir","Count":32,"Damage":0,"OreDict":""},{"id":"thaumicenergistics:storage.essentia","Count":2,"tag":{},"Damage":3,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":16,"Damage":2,"OreDict":"ingotIchorium"}]}]},{"questID":1819,"preRequisites":[1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCircuit Programmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Circuit Programmer is a useful tool that will enable you to program integrated circuits without having to deal with 24 different crafting recipes. Just charge it, put the Integrated Circuit in it and click on the Number you want it to be programmed to."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.BWCircuitProgrammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1820,"preRequisites":[1241,1480],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":64,"Damage":12600,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lLapotronic Energy Storage Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The L.E.S.U. is one of the oldest Machines that are aviable in Gregtech, its origins are in Minecraft 1.3.X, now its redone to fit into this Modpack. You can add a nearly infinite number of LESU casings to it and you'll have a hughe Energy Storage. You might also live inside your Battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12600,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.blockores","Count":128,"Damage":526,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1821,"preRequisites":[747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12634,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCable Diodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you just need a Diode, either to prevent reflow in your complex Energy System or on Thermos Server's Chunk borders. Make one 4A Diode and get a 2A one for free!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12618,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1822,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_Machinery_Casings","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lManual Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Annoyed by building Chains of transformers? Dont want an Explosion Risk at your base? Want to use these fancy 64A Hatches and Dynamos from TecTech to convert your power? Make a Manual Dynamo and convert it all!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12697,"OreDict":""},{"id":"bartworks:BW_Machinery_Casings","Count":1,"Damage":0,"OreDict":""},{"id":"bartworks:BW_Machinery_Casings","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":44,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":7,"OreDict":""}]}]},{"questID":1823,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:gt.GT2Destructopack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMobile Trash Can","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GT2's Destructorpack is a mobile Trashcan. Might be handy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.GT2Destructopack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1824,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:item.GT_Rockcutter_Item_LV","Count":1,"Damage":37,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRock Cutter LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Rock Cutter is an unbreakable and Silk-touched Mining Device. It will enable you to mine blocks without damaging them, like glass or stone, while it is charged."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:item.GT_Rockcutter_Item_LV","Count":1,"Damage":37,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1825,"preRequisites":[1820],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemDustSmall","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - LV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Adding this much Cells anywhere to your LESU will upgrade it from ULV to LV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemDustSmall","Count":1,"Damage":9,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":4,"OreDict":""},{"id":"IC2:itemToolPainterBlue","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1826,"preRequisites":[1825],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - MV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Adding an additional ammount of Cells will not only cause your storage capacity to rise, but also will enable MV Voltage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":12}},"Damage":12,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1827,"preRequisites":[1826,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPlates","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - HV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV Tier upgrade first needs over a Stack of Casings. More Casings, more Energy, more Capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":96,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32438,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1828,"preRequisites":[1827,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:genericSlab","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - EV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Close to 8 Stacks of LESU Casings, this upgrade enables EV Voltage on your LESU. It's easy until now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":477,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""},{"id":"ThaumicHorizons:focusIllumination","Count":1,"Damage":12,"OreDict":""},{"id":"thaumicbases:genericSlab","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1829,"preRequisites":[1828,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - IV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"24 Stacks of LESU Casings. These do fit in your Inventory, but crafting them is another problem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":1536,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":30,"Mate":{"Chromosomes":[{"UID1":"extrabees.species.lapis","UID0":"extrabees.species.lapis","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.lapis","UID0":"extrabees.species.lapis","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1830,"preRequisites":[1829,1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Avaritia:Singularity","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lL.E.S.U. Upgrade - LuV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach the highest Voltage Tier the LESU can offer, you need to add an additional amount of LESU Casings. 8193 Casings in total (all upgrades below and these additional) enable the LuV Input Voltage. To submit these you'll need to use the Submit Station from the Steam Tab, since your inventory isnt big enough to hold 96 Stacks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":6144,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""},{"id":"supersolarpanel:SingularSolarPanel","Count":1,"Damage":0,"OreDict":""},{"id":"Avaritia:Singularity","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1831,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCircle Shapes give me comfort","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To build a Windmill you will need a Dispenser, but that item is locked behind the next Tier. Go and find one in a Witchery Circle. They look like small versions of Stonehenge.\n\nLook for the main quest in Multiblock Goals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31032,"OreDict":""}]}]},{"questID":1832,"preRequisites":[48,1831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_PaperRotor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lGrinding with Wind","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Windmill is a grinder that uses the force of wind to macerate Items and Blocks. It is pretty slow and won't macerate ores well. You will only get one crushed Ore from it. However it does give you a bonus when you try to macerate other things. That bonus depends on the Item inserted, for example Netherrack has a chance to give two instead of one dust and Wheat will always give one and a quarter flour.\n\nThe dispensers replace a clay block in the walls. Put anything you like in the interior - a bed, stairs, torches, etc.\n\nNormal multiblock rules apply - do not cross chunk boundaries with this multiblock.\n\nIf this is your first Gregtech multiblock, as with all the rest you will need to whack the controller with a softhammer to activate it.\n\nIf you have troubles forming the multiblock, try breaking and replacing the controller block.\n\nThe controller can be fed items via hoppers etc to allow for larger batches. Just don't allow the dispenser to fill up or it will void outputs.\n\nThe rotor blades will run if the controller is disabled or has no recipe. Remove the blades when not in use or else they'll be used up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:brick_block","Count":44,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:hardened_clay","Count":45,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31032,"OreDict":""},{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28032,"OreDict":""},{"id":"bartworks:craftingParts","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"bartworks:BWRotorBlock","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12698,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31032,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:leather","Count":12,"Damage":0,"OreDict":""},{"id":"minecraft:carpet","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:paper","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1833,"preRequisites":[1817],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #8: Upgrade tier 9 - Awakened Draconium Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the most advanced materials like Infinity Catalys or Infinity need more than 9900K. Upgrade your EBF to 10800k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIV","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1834,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mushrooms","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMushroom Biomes ? why there so many?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GNTH pack is made for the rwg worldgen. If you run the vanilla biomes worlgen you get huge Mushroom biomes over the map. Go and generate a new world before you continue this one. If you run a server put this inside your server.properties file.\n\n§5 §5§4§3§2§3§b§4§3§2§3§4§5§l\"level-type=rwg\"."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WitchingGadgets:item.WG_MagicFood","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1835,"preRequisites":[128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":921,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTantalum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tantalum is used in the GT and Ender IO Capacitors and also a source for niobium. It is a cheap essentia source for Thaumcraft later on.\nYou will find Tantalite Mix at Y 20-30 on the Overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":921,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":838,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":943,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":831,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:celerysoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":26080,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1836,"preRequisites":[665,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:mortarandpestleItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kitchenware 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gregtech tools like the knives get used up when crafting foods. Pams Tool like the Cutting Board, Juicer or the Bakeware can last forever.\n \nAfter you reach stainless steel in HV you can make these forever tools."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:juicerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:bakewareItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:mortarandpestleItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:cuttingboardItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:presser","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:churn","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:oven","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:quern","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1837,"preRequisites":[1158],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodPick","Count":1,"tag":{"ench":[{"lvl":1,"id":32}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ardite and Cobalt Mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood is much harder and durable material than you imagined at first. Making Tools and Armor give them very unique features. With a Pick you can mine at cobalt Level which means you can harvest ardite and cobalt without a EBF."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodIngot","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodPick","Count":1,"tag":{"ench":[{"lvl":1,"id":32}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1838,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:tile.TFSapling","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Low on Sticks?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stay in the Twilight Forest you will find the Canopy Tree. This big tree generates a lot of logs for your Coke ovens and some roots when planted which give sticks. Be careful that no building or chest right beside or above the Tree otherwise the Tree replaces it. You might find a use for this, to sinfully get above a ceiling you really shouldn't."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFSapling","Count":16,"Damage":1,"OreDict":""},{"id":"TwilightForest:tile.TFFirefly","Count":4,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFLog","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1839,"preRequisites":[1158,1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodPlate","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood Armor is a magic armor with some special enchants. The Helm gives aqua afinity, the shoes feather falling, the plate and the legs extra protection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodHelm","Count":1,"tag":{"ench":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodPlate","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodLegs","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodBoots","Count":1,"tag":{"ench":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.ironwoodSword","Count":1,"tag":{"ench":[{"lvl":1,"id":19}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodAxe","Count":1,"tag":{"ench":[{"lvl":1,"id":35}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodShovel","Count":1,"tag":{"ench":[{"lvl":1,"id":34}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1840,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:saltItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spice up with some salt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will need massive quantities of chlorine for future plastics. There are underground salt water deposits on the Moon, Mars, and Europa. Use a seismic prospector to locate one and build the Underground Fluid Drill from multiblock goals to extract."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1841,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMoron's Manual for Massacring Monsters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have not noticed, this world is a true hellscape full of Special Mobs and Infernals around every corner. Unlike vanilla, a player has to actually stay aware and pay attention to what they are fighting. Here are some tips.\n\nIf an infernal has Vengeance, don't shoot it with your 56 damage crossbow!\n\nA high health infernal with regeneration is hard to kill. Even worse if it is a witch that can also heal itself. In those cases, run like hell, or bring a soul vial to capture it and throw it into Mount Doom. \n\nWatch out for zombies with fishing poles - they can pull you into them. And zombies with a bow and arrow - they can shoot you back!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1842,"preRequisites":[1841],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gunpowder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCreeping dread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creepers can cause the worst problems. \n\nDrowning Creeper - when it explodes, it surrounds you in a ball of cobble filled with water. Not only do you have to escape, but the cobble is infested with silverfish! And those silverfish are all infernal as well. The best way to deal with it is to first escape up or down. If you have to clear the cobble ball, first clear the water. Surrounding the cobble with a dirt moat will keep the silverfish inside and unable to hide. Put down punjis, quicksand, or lava, and/or spectral glass. Make a wall with a 1x1 window and use that to break the cobbles - fishing silverfish are especially dangerous.\n\nEnder Creeper - Randomly teleports you a short distance - possibly deep underground. "}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1843,"preRequisites":[1842],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCaught in the web","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spiders to watch for...\n\nWitch spiders reflect missile damage back at you. Look for the red X on their back, and draw your melee weapon and prepare for close combat.\n\nMother spiders will spawn a lot of baby spiders, some of which may be infernal.\n\nA flying spider can grab the oblivious flyer.\n\nGhost spiders are partially invisible and can pass through thin walls."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1844,"preRequisites":[1843],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lPorkchops with attitude","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The only zombie pigman to watch out for is the Vampire Pigman. He hardly takes any damage unless you use a wooden sword as a stake or have a magical sword."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:porkchop","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1845,"preRequisites":[1843],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFlaming idiots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Blazes are all infernals, and all nasty. Avoid like the plague. Get awesome weapons, awesome armor, and prepare for a fight. \n\nAlternatively, figure out a way to destroy them with technology.\n\nAlternative to the alternative, figure out another way to get blazepowder and blaze rods."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:blaze_powder","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1846,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:floodGateBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFilling the world with fluids...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need to make a lake? Look no further than the Flood Gate. It will fill the world with any fluid you provide it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BuildCraft|Factory:floodGateBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1847,"preRequisites":[861],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:spectreKey","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPortable hole? How about portable chunk!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With further research, I've discovered a key made of spectral iron can open a portal into a pocket dimension. It's only one chunk wide and quite short, but you can increase the height by adding more ectoplasm to the spectre core in the room. Perfect for retrieving ores from far planets, or as a quiet refuge."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:spectreKey","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1848,"preRequisites":[692,78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:spectreHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor of the Dead","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've found another use for Ectoplasm - making Spectral Iron. An armor made from it is better than diamond and highly enchantable.\n\nIt also will drop healing orbs that will heal the nearest player when picked up. \n\nUnfortunately, a side effect is that you'll become partially transparent. Side effect, I mean bonus feature!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:spectreHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1849,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:oak_stairs","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lTell me when we reach 20","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jumping up and down everywhere is exhausting, and makes you really hungry. To reduce your food depletion, make stairs instead of jumping."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:oak_stairs","Count":8,"Damage":0,"OreDict":"stairWood"},{"id":"minecraft:stone_stairs","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ladder","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""},{"id":"harvestcraft:suaderoItem","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1850,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:fan","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll we are is dust in the wind","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Looking for an alternative to flowing water for your mobfarm? Tired of getting poked walking through your fields of oreberries? Use a fan to blow mobs or items where you want. Apply a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:fan","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1851,"preRequisites":[1831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_SimpleWindMeter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lStick a finger in the air","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But you really do care. Trying to find a good place to locate a windmill? You could just build one and see, or try this fancy windsock.\n\nPaper rotors are great in low winds.\nWool rotors are cheap.\nLeather rotors are durable.\n\nDon't leave the rotors in the windmill when you aren't using it, it will use up durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:BW_SimpleWindMeter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":5,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":4,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1852,"preRequisites":[1851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_LeatherRotor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAround and around she goes...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...But she'll never stop because you'll always have something to grind. You can use a hopper to keep the windmill full of items to process. Just remember to retrieve them from the dispensers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:BW_CombinedRotor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":1,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"minecraft:hopper","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1853,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMoron's Manual for Effective EBFing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to the latest Moron's Manual, Effective EBFing!\nThis manual covers common problems encountered when using the GregTech 1000 Electric Blast Furnace.\n\nSetup\nWhen setting up your EBF, make sure to place it a few chunks away from where you will spend most of your time. Pollution is nobody's friend!\n\nDuring setup, make sure the center of the EBF is hollow. Sometimes things can sneak in there without you noticing, like a Thaumcraft light orb!\n\nMake sure your muffler faces *out*, not *in*. The EBF can't work if it is not spreading those delightful odors!\n\nWhen placing your power hatches, make sure to minimize the distance between any generators and the EBF. Especially at LV, those few meters make a big difference! Every amp of energy travelling over a cable loses a little bit - and you'll need as much as you can get!\n\nOutput hatches and buses will automatically push into tanks and inventories placed next to them. They will also void if they are full, so keep an eye on them!\n\nWhen build multiple EBFs, the GregTech 1000 Electric Blast Furnace can share walls. This can save you on input and output hatches too. Not recommended for energy and maintenance hatches!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2305,"OreDict":""}]}]},{"questID":1854,"preRequisites":[636,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:applejellysandwichItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Just like Mom used to make","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jelly sandwiches are a great food source with decent saturation and easy to make. Almost any fruit can be converted to jelly with sugar and a saucepan. There are a few different nut butters available. Peanuts can be found in Ground Gardens in forest, mountain, or taiga style biomes. Cashews are trees located in jungles or swamps. Chestnuts can be found in warmer forests. Pistachios can be found in jungles. Many of these saplings are also available for trade from villagers.\n\nUse a Forestry Worktable to keep all your recipes together in one spot for easy crafting.\n\nSome sandwiches have better saturation than others, so be sure to check before buying that sapling!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:saucepanItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:applejellyItem","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:bread","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"harvestcraft:applejellysandwichItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cherryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:blackberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:watermelonjellysandwichItem","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1855,"preRequisites":[637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I like big sandwiches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have dough, there are several options for large sandwiches. They offer great saturation restoration and are easy to make.\n\nThe veggie and cheese options aren't quite as good and need more work to produce.\n\nThere are also normal sized varieties of these sandwiches if you need more diet choices."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32565,"OreDict":""},{"id":"minecraft:cooked_porkchop","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32244,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32243,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32241,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32242,"OreDict":""},{"id":"dreamcraft:item.CoinCook","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1856,"preRequisites":[469,444],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:blueberrysmoothieItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lStaying cool in the heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you happen to be near a snowy biome, you can harvest the snow to make delicious smoothies. They are better than eating the berries directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":4,"Damage":1,"OreDict":""},{"id":"minecraft:snowball","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1857,"preRequisites":[637,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:chickenpotpieItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"No chicken escapes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you like pies? I sure do! There are many varieties of pies available for you. The chicken pot pie is one of the easiest to make. Just a chicken, potato, carrot, and some dough. The fruit pies are a little simpler, so don't quite restore as much saturation, but are great for filling tummies while you wait for the best foods to wear off."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:chicken","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32559,"OreDict":""},{"id":"minecraft:apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:chickenpotpieItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:applepieItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:cherrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberrypieItem","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1858,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMagnet","Count":1,"tag":{"Energy":100000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMagnetic personality","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you haven't received one in a lootbag already, you can craft a nice magnet with a vibrant crystal. It doesn't work great on servers if you are moving around too fast, but it makes harvesting crops a lot easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMagnet","Count":1,"tag":{"Energy":0},"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1859,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Need some leather?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some leather with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1860,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Need some wool?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some wool with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wool","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1861,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Buy some eggs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some eggs with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:egg","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1862,"preRequisites":[1542,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine3","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Robotic crop pickers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crop Harvester will pick your crops for you, which is great. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockMachine3","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1863,"preRequisites":[579],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:dropFilter","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThrowing out the trash","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Already have barrels full of cobblestone? The voiding drop filter can be setup to automatically void any item on pickup. Cobble, dirt, arrows, saplings,etc. It's handy for when you don't have much room for junk.\n\nTo use, rightclick the RT item filter in-hand. Put the things you want voided in the item filter list. Rightclick the voiding drop filter, and put the item filter inside."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:dropFilter","Count":1,"tag":{"Inventory":{"Items":{}}},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"berriespp:BppPotions","Count":1,"Damage":8,"OreDict":""},{"id":"RandomThings:filter","Count":1,"tag":{"metadata":1,"oreDict":0},"Damage":1,"OreDict":""}]}]},{"questID":1864,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNo self-healing tools here...yet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Experienced players might be confused by finding the Tinker's Construct Ball of Moss in NEI without a recipe. \n\nIt is possible to craft it, but on this world you have to first gain expertise in Thaumcraft. Go and become a dangerous wizard and you'll gain the power needed to craft the Ball of Moss and make your tools indestructible.\n\nThe Ball of Moss is in the GTNH tab of the Thauminomicon.\n\nIn general, if an item does not have a recipe, it might be gated by Thaumcraft. NEI will not show the recipe until you have unlocked it.\n\nHave a beer to prepare for your long journey."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32119,"OreDict":""}]}]},{"questID":1865,"preRequisites":[97,745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEnderman Smelterman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need enderpearls? Getting them by killing endermen can be dangerous. Instead of doing that, put an enderman into a smeltery with hot fluids and use a gem cast to get guaranteed pearls. \n\nHigher the hit points, the more pearls you get. If you can find a regenerating enderman, or an enderman spawner, you'll have all the pearls you would ever want. Later on with EnderIO you can even create your own powered spawner to make endermen on-demand.\n\nUse a nametag on a regenerating enderman to make sure he doesn't despawn. You'll want to keep him from seeing the sky or else he'll teleport away.\n\nIf you haven't found a regen enderman yet, you can buy enderman spawn eggs to put into your smeltery with coins. Maybe you'll get lucky and get a regenerating one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:name_tag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1866,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lOptions for finding aluminium at this age","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It can be hard to find aluminium gravel ores on old servers, or unlucky world seeds. Alternative to aluminium gravel ores are\n\n- Planting the Aluminium ore berries from the Smeltery quest\n- Searching for Aluminium bars in chests\n- XP buckets\n\nOnce you reach LV, you can electrolyze Sapphires and get tiny dusts from processing various ores. \nAt MV you can use clay dust or red granite dust.\nCheck NEI."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2019,"OreDict":""}]}]},{"questID":1867,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Motor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most machines in MV need a motor as well. If you have not built a polarizer already, go back to Tier 2 Quests and craft one. Motors need magnetic steel rods and alu rods, 2x cupronickel wires and copper cables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23355,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":23019,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1341,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1868,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32063,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUltra Low Power IC","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"MV Energy hatches need ultra low power ICs. Go and craft some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32062,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32063,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24542,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1869,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1116,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHydrogen, methane or some farts... (Natural gas) MV ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some centrifugal processes leave gases behind like hydrogen or methane. Centrifuge some brown and yellow limonite to get hydrogen or dump your unused food in a centrifuge to get methane gas. Wood will even give 60 mb per log. Maybe it's time to build a forestry tree farm. You can also setup a Benzene based operation (see quest to the right). Or you can start refining oil into refinery gas or naphtha to burn.\n\n§4Gas turbines produce half the pollution of combusion generators, but their fuels are generally not as efficient. Choice is up to you which power source you use.\n\nMV Gas Turbines have a 90 percent fuel efficiency."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1116,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30742,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1870,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiesel, oil or maybe creosote? MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably collected a ton of creosote and maybe even have built your first Electric Blast Furnace. Creosote will be a good fuel for the moment. So try to build a few of the combustion generators and use them besides steam as a secondary power source. Small generators will only use fuel if there is EU demand.\n\n§4Advanced Combustion Gnerators have a 90 percent fuel efficiency.\n\nThis will also unlock new quests in the Armors and Jetpacks tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30707,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1871,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32670,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lField Generator I","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field Generators are powerful devices. It will be used in high tier Tanks, Chests, in UU Matter Production or in Teleporters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32670,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17532,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1872,"preRequisites":[847],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30650,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lVinyl Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vinyl Chloride is the base product for making PVC for advanced pipes. These Pipes are needed in LuV machines or the Hermetic Casings for Super Tank II's."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30650,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1873,"preRequisites":[1872],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.99","Count":1,"Damage":649,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lPoly Vinyl Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polyvinyl Chloride is PVC which can be used for the PVC Pipes.\nYou need Vinyl Chloride and Oxygen to make it.\nYou'll also want it for SMD capacitors later.\nDo the recipe twice if you want to clean out your reactor.\nCells carrying molten polyvinyl chloride carry 144L, perfect for 1 ingot or plate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30650,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":62,"Damage":649,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1341,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30023,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1874,"preRequisites":[1873],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17649,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lPVC Sheets","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"PVC Sheets make good item pipes, and can also be used for circuit boards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":17649,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5692,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":16,"Damage":649,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1875,"preRequisites":[1099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:soulBrazier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A soul-ution for warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Soul Brazier from Thaumic Exploration will store your permanent warp. \n\nAs long as it has Ignis centi-vis and Mortuus essentia fed from underneath it will stay active, even while you are in other dimensions. Turning it off or running out of power will dump all that warp back into your body, so watch out.\n\nContaining warp does have a bit of a downside - taint. You'll need to figure out a way to stop that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:soulBrazier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":64,"tag":{"Aspects":[{"amount":8,"key":"mortuus"}]},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1876,"preRequisites":[1906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":473,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lAdvanced Amplifabricator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get UU Amplifier out of you scrap you need an Amplifabricator. You can't make UU Matter before HV so its a good time to start with it now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":473,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30721,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemScrapbox","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1426,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1877,"preRequisites":[1876],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":461,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUU Matter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next you will need a Mass Fabricator to make UU matter. This matter can be used make more things.\n\nThe downside is you can't build an HV one right now. Build an LV one and power it with 8 amps of LV to get your first UU matter. Watch your voltage levels and currents!\n\nIf you do not have a field generator, go do the tetrafluoroethylene quest and build some. \n\nFor now, just stockpile the UU matter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":461,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30721,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"EnderIO:blockTank","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1878,"preRequisites":[1248],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32707,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lData Orbs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Data Orbs are high tier data sticks to replicate materials or used as data storages."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32082,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32707,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32033,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1879,"preRequisites":[1880],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":484,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lCreate new material out of pure energy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Replicate material out of pure energy. Scan your elements first, like Hydrogen, Iron, Gold etc, and save them on a Data Orb. Later on you can use your replicator to copy this item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32707,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":482,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1880,"preRequisites":[1878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32671,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lField Generator II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field Generators are powerful devices. It will be used in high tier Tanks, Chests, in the Matter Production or in Teleporters.\nThe replicator needs it also. If you have not unlocked Tungstensteel go and do that now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32671,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1881,"preRequisites":[21],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:clay_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Clay for pennies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hard to find that clay? Have a stack for some coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1882,"preRequisites":[945],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2879,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Tired of grinding reeds?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I can trade you some chads for coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":50,"Damage":2879,"OreDict":""}]}]},{"questID":1883,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":36000,"globalShare":1,"questLogic":"AND","name":"Glassy eyed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...from all the mortars you have to use to make glass dust? Have some for trade."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2890,"OreDict":""}]}]},{"questID":1884,"preRequisites":[1009],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Shhh, don't tell 0lafe...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But here is a nice quest to get cheap fish catchers!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:cooked_fished","Count":40,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:blockFishTrap","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1885,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockCrop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Wood for sheep?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No thanks! But how about some crop sticks for coins and logs?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":1,"Damage":0,"OreDict":"logWood"},{"id":"dreamcraft:item.CoinAdventure","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1886,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFertilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Manure for fertilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I mean, what else are you going to do with this junk?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:spider_eye","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:rotten_flesh","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:dirt","Count":64,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":128,"Damage":0,"OreDict":""}]}]},{"questID":1887,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectric Furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This quest was suggested by Shawnbyday. If you have a lv machine hull, two circuits and a few cables spare just craft it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":261,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1888,"preRequisites":[534],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":64,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lRepairing your Hazmat Suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Be careful to wearing you hazmat suit all the time. The duarbility is not high. Even just falling a few blocks will damage the boots quickly. \nYou can repair your suit before you can craft a new one in late LV Age using some rubber sheets and a glue bucket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:buckets","Count":4,"Damage":25,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1889,"preRequisites":[160,600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12096000,"globalShare":1,"questLogic":"AND","name":"Healing Axe 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After party loot was limited to one loot per party not everyone can have a healing axe for free.\nGo and buy some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:delightedmealItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:rainbowcurryItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:epicbaconItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1890,"preRequisites":[1413,1705],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":215,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An IV asembler is required to make enriched Sunnarium for HV Solar Pannels . Other recipes are twice faster than with an EV assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":215,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1891,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDesh, Scheelite, Tungstate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is the material you need but first go find some desh scheelite and tungstate mix on Mars. Look at Y 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1892,"preRequisites":[1812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Fluorine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some fluorine? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30014,"OreDict":""}]}]},{"questID":1893,"preRequisites":[783,1894,1200],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32662,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFluid Regulator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Turbines require precise amounts of fluids or else they will explode. Use the fluid regulator on the pipe attached to the input bus to control the rate of fluids into the turbine. To raise the fluid limit, look at the right side of the regulator and:\n\n1L - Right click with an empty hand\n16L - Right click with a screwdriver\n256L - Right click with a screwdriver while sneaking\n\nTo lower the fluid limit, do the same while looking at the left side."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32662,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1894,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGas Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Large Gas Turbine is more fuel-efficient than singleblock turbines and can have lower pollution with upgraded mufflers.\n\nYou will also need a muffler, maintenance hatch, input hatch, and dynamo hatch. Don't forget a fluid regulator. It can be a low tier fluid regulator since the fluid/tick necessary is much less than steam.\n\nSelecting a rotor is pretty easy. Take the EU/t of your dynamo hatch, and select a rotor that has (optimal gas flow * efficiency) that is close. Now, setting up the fluid regulator is hard. The easiest way is to let in 1 L/t and use the hand-scanner to tell you the optimal flow rate. Otherwise divide the optimal gas flow by the EU/L of your gas and round down. \n\nFor example, if we are using a normal vibrant alloy turbine with 1800 EU/t optimal gas flow and 115 percent efficiency with benzene. \n1800/288 = 6.25\nRounded down that is 6L/t. 6 * 288 * 1.15 = 1987, perfect for an EV dynamo.\nOther gases may output slightly higher or lower EU depending on how close to optimal they can reach. For example refinery gas\n1800/160 = 11.25\n11 * 160 * 1.15 = 2024, still OK for an EV dynamo\nHowever hydrogen at 20 EU/L is dangerous because\n1800/20 = 90\n90 * 20 * 1.15 = 2070, above 2048, so BOOOOM. You'll have to use a multi-amp dynamo hatch to prevent an explosion.\n\nOther useful turbine options at EV are normal ardite and galgadorian.\n\nFor additional choices, see the Large Turbine Calculator in Discord."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":29,"Damage":10,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1895,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Manganese Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can't find Manganese ore because its not generated early game and you need to grow your Pyrolusium crop? Buy some Ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":80,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":8,"Damage":31,"OreDict":""}]}]},{"questID":1896,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_Naquadahcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Fuel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to upgrade the Nuclear Reactor with Naquadah Fuel Rods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_Naquadahcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1897,"preRequisites":[1896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_MNqCell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadria Fuel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want MOX like behavior from Naquadah? You have to upgrade it to Naquadria!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_MNqCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1898,"preRequisites":[191],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumDual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDouble the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1899,"preRequisites":[193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDouble the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1900,"preRequisites":[1899],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1901,"preRequisites":[1898],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§l4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1902,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockFusedQuartz","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNo Boom Tomorrow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a nuke, you can cause some real catastrophic damage to your base. You can either place it 20 chunks away, or surround it with blast proof materials. Fused quartz is relatively cheap, and can be converted into a variant that glows, or a variant that blocks light. Make some fused quartz and I'll give you some enlightened fused quartz.\n\n§4Alternatives include Warded Glass from Thaumcraft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockFusedQuartz","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockFusedQuartz","Count":64,"Damage":2,"OreDict":""}]}]},{"questID":1903,"preRequisites":[770],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§e§9§lHV Energy Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV energy hatch is crucial to a fast EBF that can do high tier recipes. You will need to make He coolant cells or NaK coolant cells. Follow NEI to figure out how."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1904,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30004,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHelium is not just for balloons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Higher tier superconducting wires and energy hatches will require helium. Compressing air and liquifying it requires 1802 compressed air cells to get 1 He cell. It is better to make it from Endstone dust or Monazite from the Moon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1905,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1154,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLarge Heat Exchanger - Fermat's Last","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have discovered truly remarkable instructions for this machine which this margin is too small to contain.\n\n\n\n\nInstead, goto https://tinyurl.com/GTNH-LHE and read it there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1154,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1906,"preRequisites":[1014],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":333,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRecycle for the Environment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have too much wood, saplings, netherrack or other garbage recycle it and get scrap. You can use it for uu amplifier to make uu matter cheaper.\n\nCertain items such as cobblestone, stone, and tiny/small dusts are too easy to make and don't give any scrap. But otherwise any excess dusts or garbage you can throw in here to get scrap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":333,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemScrapbox","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1907,"preRequisites":[1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":135,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOne in a million","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or 4? Need to store ludicrous amounts of cobble? Stone dust? Saplings? Super chests are the thing to use. A simple Tier 1 Super Chest can store 4 million items, worry free. You will need to take items out manually 64 at a time, or use conveyors etc to extract them. \n\nSticking so many items in such a small space does come with a price - no more portability. You better be really sure this is where you want those millions of logs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":135,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1908,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:NetherFurnace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLucifer's little helper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With an alloy smelter and some netherrack dust you can make Nether furnaces, which are extremely efficient cooking machines. Very handy for someone needing a lot stuff furnaced in a jiffy.\n\nThe only downside is that iron furnaces can be used in the EBF later on. Nether furnaces cannot. Then again, Nether dust is practically free, so what's the loss? You can always use them to bake stacks of bread!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:NetherFurnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1909,"preRequisites":[1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":137,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHow much is too much cobblestone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A super chest III is just ridiculous. Who would possibly need to store 16 million items? You, that's who."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":137,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":32670,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1910,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":1650,"BaseDurability":32400,"BaseAttack":17,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":1650,"ModDurability":0,"MiningSpeedExtra":1800,"Shoddy":0,"RenderHandle":1650,"Accessory":1650,"MiningSpeed":1800,"Unbreaking":0,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":32400,"MiningSpeed2":1800,"HeadEXP":0,"Head":1650,"Attack":17,"Handle":1650,"Broken":0,"Extra":1650,"RenderAccessory":1650,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"�fVanadiumsteel Hammer"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an MV extruder you can make the next level of Tinker Tools - based on Vanadiumsteel parts with Damascus steel rods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartHammerHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":1,"tag":{"material":"DamascusSteel"},"Damage":1634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TGregworks:tGregToolPartLumberHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""},{"id":"TGregworks:tGregToolPartExcavatorHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":1,"tag":{"material":"DamascusSteel"},"Damage":1634,"OreDict":""}]}]},{"questID":1911,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCraftsman used to mean quality","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an EBF you can make vanadiumsteel GT tools. With 192k durability they'll last you a long time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11371,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":16,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"Wood"}},"Damage":22,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1912,"preRequisites":[238,1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Material","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"3 plus 4, carry the 2...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When doing infusions, it's always good to know how close you are in stability. Once you get to HV you can make an Arcane Abacus to track your infusions. This makes infusions 100 percent safe, right??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Material","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":1913,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:Printing Press","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGut-enough for you? Bet you thought Newspapers were dead!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Typesetting Table and Printing Press will allow you to duplicate books, including enchanted books. The process is kinda complicated, so check out the Bibliocraft mod wiki page. You'll need to use XP to duplicate enchanted books, so now would be a good time to figure out how to collect large amounts...\n\n§4You'll need some Thaumium ingots. You can go Thaumcraft, find some in a chest, or try breeding Magical Metal Berries in IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.BiblioChase","Count":1,"Damage":0,"OreDict":""},{"id":"BiblioCraft:Typesetting Machine","Count":1,"Damage":0,"OreDict":""},{"id":"BiblioCraft:Printing Press","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:experience_bottle","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1914,"preRequisites":[1913],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":3,"id":35}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDo you feel unlucky?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well not any more! With some emeralds and a blank book, I'll give you a Fortune 1 you can use in your printing press. Once you have duplicated it a few times, you can combine the Fortune 1 books in an anvil to get a Fortune 2. Duplicate the Fortune 2 books to get a Fortune 3! \n\nWith a Fortune 3 book and a tier-specific item you can remove the trash item rewards from your loot bags. More good stuff!\n\nSoul Bound is another good enchantment, it will keep an enchanted item in your inventory in case of death."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:emerald","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:book","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":35}]},"Damage":0,"OreDict":""}]}]},{"questID":1915,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mudball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMud, can also be used for facials","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You may have found plenty of mud piles around the wetlands and thought of them as mere annoyances when jumping in the water or for that armor. Waste not! With your new extractor, you can pull out the clay hidden in the mud!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mudball","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1916,"preRequisites":[1478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32748,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWhere is that handyman when you need him?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Needs Maintenance cover will send out a redstone signal when the controller it is attached to requires maintenance. This is handy for the cleanroom you will need to build, since maintenance reduces cleanliness level and will cause voided recipes.\n\nFor the cleanroom you can place this on the top or bottom. For other machines you might want to place it on the side so you can have access to the front face. In that case, you can use a soldering iron and fine solder to have it emit a strong redstone signal that will penetrate through a block next to the cover."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32748,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1917,"preRequisites":[1916],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBEEEP BEEEP BEEEP","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knowing that your cleanroom needs maintenance is pretty important. Instead of just turning on a light, why not use a howler alarm? It will notify you up to 128 blocks away. \n\n§4§d§cWarning: May cause uncontrollable urine leakage when activated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:noteblock","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1918,"preRequisites":[1549],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trashcan","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lToo much fluid??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impossible! If you really think you have so much fluid that you want to just get rid of it, make a fluid trashcan. You can route as much excess creosote or whatever into it you want. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trashcan","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1919,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trashcan","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lToo much junk??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impossible! But if you really want to get rid of excess items, make yourself a trashcan. If you want to be really fancy, you can use a hopper with a lever next to it to make sure you only throw away items you really want. I mean, *I've* never thrown away a tool accidentally, nope, never me."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trashcan","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1920,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:itemLens","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Can't tell them apart either?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many plants look the same. Someday we'll update their DNA so they are each unique, but for now you can make a simple Plant Lens to at least identify species."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:itemLens","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Zomplant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1921,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":363,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSeparating molecules","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV centrifuge is required to separate out Tungstate from Lava. You'll need to start thinking about dedicating a setup just for lava centrifuging. Plus it's a good source of silver, tin, copper, and tantalum."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":363,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1922,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTransformers, roll out!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you get to HV you will start wanting to think about centralizing power generation and delivering power over longer distances. An HV to EV transformer will let you send power across your base without too much penalty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1923,"preRequisites":[1922],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNot enough amps?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about 4x more? A Hi-Amp transformer will transform 4 A to 16A. Great for setting up a large power grid and locating polluting power generators further from your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1924,"preRequisites":[1923],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12003,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMore than 4 amps? Crazy!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the truly insane, there is a 16 to 64 A power amp transformer. Just ludicrous!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12003,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1925,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"miscutils:blockDecayablesChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWhat's in the box?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of waiting around 7 hours with radium in your inventory waiting for it to decay? With a lead-lined box you can safely leave your radium and other materials and they will decay while you do real work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:blockDecayablesChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1926,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA quicker way to get around","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are playing single player or a local server, horses make a great way to get around. On nonlocal servers they can cause problems and desync if you have poor internet. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1927,"preRequisites":[1799],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Coal...from withereed?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Withereed is a source for coal, and more importantly, a good breeding stock for higher tiers.\n\nYou'll need coal blocks underneath it to fully mature."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Withereed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:coal","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1928,"preRequisites":[1927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemToolForgeHammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Son of Odin One-Eye","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"God of Thunder plant lets you increase your Thorium ore from the Nether by 4x. It also will give you Uranium you can use for Reactoria crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"God of Thunder","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":16,"Damage":96,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1929,"preRequisites":[1928],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemUran238","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Just cover your privates when you walk by","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reactoria crops will drop Reactoria leaves which will 4x your Pitchblende ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Reactoria","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":32,"Damage":873,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1930,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.liveRoot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ironwood is better than normal wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A necessary step for steeleafranks? Maybe not. But ironwood does make some great rollers for cooking, and a decent Sense blade.\n\nCreeperweed has a decent chance of giving liveroots seeds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Liveroots","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.ironwoodHelm","Count":1,"tag":{"ench":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1931,"preRequisites":[1797],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vegan leather?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to save your cows and horses for milk and ...glue... you can use Corium to make leather instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corium","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beef","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1932,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gunpowder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gunpowder? More like dirtpowder!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creeperweed can supply your gunpowder needs without dealing with bothersome explosions. It also has quite a few attributes, making it a good source of random crops.\n\nCorium can breed into creeperweed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Creeperweed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1933,"preRequisites":[1931],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Milk of the earth-mother","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Milkwart means you can get rid of all your cows. Isn't that nice?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Milkwart","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"netherWart","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1934,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:wovencottonItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cotton and string","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With some Farmer coins I'll trade you cotton and string. Perfect for making tanned leather!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":30,"Damage":0,"OreDict":""},{"id":"Natura:barleyFood","Count":24,"Damage":3,"OreDict":""}]}]},{"questID":1935,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:obsidianChisel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A better chisel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to decorate your base, you're going to need a better chisel. The Obsidian chisel lasts twice as long as the iron chisel. A diamond chisel would last 10x as long, but needs an LV cutting machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:obsidianChisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1936,"preRequisites":[1937],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:metalPattern","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Right tool for the job","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tinker's Construct has their own chisel tool variant, for converting Tinker blocks into different types. Not a lot of uses, but if you check NEI you can see what you can do."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:GravelOre","Count":4,"Damage":4,"OreDict":""}]}]},{"questID":1937,"preRequisites":[74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SpeedBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tinker's blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tinker's Construct offers a couple of useful blocks from the smeltery. Rough Brownstone takes Tin and Gravel and makes a block that lets you move a little faster. Cobblestone can be turned into Seared Stone, usable in the smeltery walls to make it larger without having to use clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SpeedBlock","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:Smeltery","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1938,"preRequisites":[1936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SpeedSlab","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Some handy uses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The TiCon chisel doesn't have a lot of uses, but here a couple of interesting ones. Use NEI to see other options for more decorations. You can also slab these blocks if you want something monsters cannot spawn on.\n\nBrownstone roads are slightly faster than rough brownstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SpeedBlock","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:decoration.multibrick","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:decoration.multibrick","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1939,"preRequisites":[1935,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:autoChisel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chisel all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If, for some reason, you need to chisel a large number of items, the autochisel is what you want."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:autoChisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1940,"preRequisites":[1939],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:upgrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chisel as fast as you can","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The autochisel speed is pretty slow. Craft some upgrades to make it faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:upgrade","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:upgrade","Count":1,"Damage":1,"OreDict":""},{"id":"chisel:upgrade","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"chisel:upgrade","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1941,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:marble_stairs.4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"My ancient enemy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The one place Chisel is weak is in stairs. Would be nice to have more variety, but later I'll show you how to make any block into a custom stair.\n\nYou can also search NEI for \"stairs\" to find stairs from other mods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:packedice_stairs.0","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:marble_stairs.1","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:limestone_stairs.0","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1942,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:lavastone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nChisel offers a wide variety of blocks. Searching NEI for \"chisel\" can gives pages and pages. Here is a small sample."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:antiBlock","Count":1,"Damage":15,"OreDict":""},{"id":"chisel:carpet","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:brickCustom","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"chisel:grimstone","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:lavastone","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:waterstone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1943,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fun party blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are even some really fun blocks available. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:warningSign","Count":1,"Damage":6,"OreDict":""},{"id":"chisel:obsidian_snakestone","Count":1,"Damage":1,"OreDict":""},{"id":"chisel:jackolantern16","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"chisel:technical3","Count":9,"Damage":0,"OreDict":""},{"id":"chisel:laboratoryblock","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:hexPlating","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},{"id":"chisel:futura","Count":1,"Damage":4,"OreDict":""},{"id":"chisel:futuraCircuit","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1944,"preRequisites":[1935,554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Concrete and GT stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chisel can also transform Concrete and GT stones into new interesting blocks. Some of the GT stone blocks will even prevent mobs from spawning on top. GT Concrete will let you run faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:concrete","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:concrete","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.blockgranites","Count":1,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockstones","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1945,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Builder's Wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The only thing going for the stone builder's wand is that it's cheap. It doesn't offer much in special modes, and doesn't last long either. But you can make a lot!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"betterbuilderswands:wandStone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandStone","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1946,"preRequisites":[1945],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Low tier wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Iron wand will last longer than the stone wand, and has a few modes. "}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandIron","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1947,"preRequisites":[1946],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mid tier wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier up wand is the Diamond wand. Has all kinds of fun modes. Just be careful using it, would hate to place a bunch of blocks accidentally!\n\nThe ultimate builder's wand you can get from the tab Grind, or not to Grind."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1948,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32727,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"No ASMR from your machines?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If the sounds of your machines are driving you crazy, you can add a muffler upgrade to block them out. \n\nNOTE: This also means you won't hear when the machine is out of energy. Also, once applied the upgrade cannot be removed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32727,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:sound_muffler","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1949,"preRequisites":[1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better put on that rubber suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Troll plant! What does it do? Troll you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Trollplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1950,"preRequisites":[1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:emerald","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who the hell is Bob?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want emeralds for trading or other uses? These are the source."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Bobsyeruncleranks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1951,"preRequisites":[1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.knightlyHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"And I dub thee Sir Knight","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need an infinite source of knightmetal? It will be a hard plant to grow. Make sure you provide plenty of nutrients, clean air, fertilizer and water. Don't cry to me if it dies. Any oreberry is a good source crop, with Cobalt and Ardite best, then iron and the rest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Knightly Oreberry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmetal4","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1952,"preRequisites":[492],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:trowelIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Botany","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Botany mod offers more colors for blocks and glass, and simple tile patterns or more complex patterns using a Tileworker. For now, we'll make an iron trowel.\n\nThis mod will make lots of butterflies, so make sure to do your gardening underground or under glass. The butterflies will spread and infect leaves around your area, making more butterflies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:trowelIron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":63,"Damage":0,"OreDict":""}]}]},{"questID":1953,"preRequisites":[1952],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:yellow_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finding Flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To start, you'll need to find some flowers. Then take your trowel and use it on some dirt blocks to turn it into soil. Next place your flowers on the soil to turn them into Botany flowers. If you have reached MV tier, check out the Slice and Splice tab for info on Genetics."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:yellow_flower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":3,"OreDict":""},{"id":"minecraft:red_flower","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1954,"preRequisites":[2096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Analyzer is a machine that acts in an identical way to the Forestry Analyzer, in that it reveals the genome of bees, trees, butterflies and flowers. It can also be used to reveal the gene present on the DNA Sequence. Unlike the Analyzer, the Analyzer uses power (RF or EU) and DNA Dye to stain chromosomes and determine the genome directly. The analyzer takes 15 seconds to analyse a single individual.\n\nInformation from these quests was taken from Binnie's wiki at https://binnie.mods.wiki/wiki/Tutorial/Genetics"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1955,"preRequisites":[1953],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:misc","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powder Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Botany uses various powders to enhance soil properties.\n\nRaise Ph - Ash Powder, Pulp Powder\nLower Ph - Mulch Powder, Sulphur Powder\nIncrease Nutrients - Fertiliser Powder, Compost Powder"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":1,"Damage":0,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":1,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":1,"Damage":3,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:misc","Count":64,"Damage":0,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":1,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":2,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":3,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":5,"OreDict":""}]}]},{"questID":1956,"preRequisites":[1955],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:misc","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Killing weeds and growing flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody likes weeds. Weedkiller will keep the weeds of your soil. \n\nBonemeal can be applied to germling flowers to make the mature faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":1,"Damage":15,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":7,"OreDict":""}]}]},{"questID":1957,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:soilMeter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Like having a County Extension Office in your hand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The soil meter will tell you the soil stats - how dry, how much nutrients, etc. You can amend the soil with the various powders so that it matches the requirements for your flower."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:soilMeter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:double_plant","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1958,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:pigment","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"80 new colors to play with","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you plant a vanilla flower, it is already mature. Cut it with a shears to get a germling you can replant to make more. Break the flower to get a mature flower. Turn the flower into pigment using a crafting table.\nTo get crosses, plant flowers next to empty soil blocks. Keep an eye out for weeds. Eventually a small germling will start growing.\nRemember, do this underground or in an enclosure or your TPS will regret it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:pigment","Count":4,"Damage":59,"OreDict":""},{"id":"Botany:pigment","Count":4,"Damage":78,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:pigment","Count":8,"Damage":1,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":2,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":11,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":75,"OreDict":""}]}]},{"questID":1959,"preRequisites":[1958],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:stained","Count":1,"tag":{"meta":24},"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glass of many colors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The pigments color an amazing variety of glass. Just one warning - unlike normal glass, this glass isn't fireproof."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:stained","Count":4,"tag":{"meta":59},"Damage":59,"OreDict":""},{"id":"Botany:stained","Count":4,"tag":{"meta":78},"Damage":78,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:stained","Count":16,"tag":{"meta":24},"Damage":24,"OreDict":""},{"id":"Botany:stained","Count":16,"tag":{"meta":21},"Damage":21,"OreDict":""}]}]},{"questID":1960,"preRequisites":[1958],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramic","Count":1,"tag":{"meta":59},"Damage":59,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ceramics","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With some clay and pigments, you can make pigmented clay. Put the pigmented clay in a furnace to get basic ceramic blocks. These blocks are great if you want an area of nice even colors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:clay","Count":4,"Damage":78,"OreDict":""},{"id":"Botany:clay","Count":4,"Damage":59,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:ceramic","Count":4,"tag":{"meta":78},"Damage":78,"OreDict":""},{"id":"Botany:ceramic","Count":4,"tag":{"meta":59},"Damage":59,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramic","Count":16,"tag":{"meta":75},"Damage":75,"OreDict":""},{"id":"Botany:ceramic","Count":16,"tag":{"meta":40},"Damage":40,"OreDict":""}]}]},{"questID":1961,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":20046},"Damage":16387,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mortar and tiles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make ceramic tile patterns, you need to convert your blocks into tiles. First make mortar, and then use the mortar with your blocks in a 3 block + 1 mortar pattern in the crafting table to get ceramic tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":20046},"Damage":16387,"OreDict":""},{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":15163},"Damage":15163,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":257},"Damage":257,"OreDict":""},{"id":"Botany:ceramic","Count":16,"tag":{"meta":77},"Damage":77,"OreDict":""}]}]},{"questID":1962,"preRequisites":[1961],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramicBrick","Count":1,"tag":{"meta":347707},"Damage":16387,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tile patterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have tiles, you can make simple tile patterns. A 2x2 of red/yellow and yellow/red makes a simple checkerboard. Using the checkerboard again in a 2x2 makes a checkerboard with smaller tiles. Use Binnie's Botany wiki page to find more patterns you can make with just tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:ceramicBrick","Count":4,"tag":{"meta":282171},"Damage":16387,"OreDict":""},{"id":"Botany:ceramicBrick","Count":4,"tag":{"meta":347707},"Damage":16387,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":2827},"Damage":2827,"OreDict":""},{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":17476},"Damage":16387,"OreDict":""}]}]},{"questID":1963,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tileworker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The tileworker can take the single-color ceramic blocks and turn them into pretty patterned blocks.\n\nAnd contrary to the name, you use ceramic blocks here, not tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.lavender","UID0":"botany.flowers.species.lavender","Slot":0},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":1},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":6},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":8},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":9},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":10},{"UID1":"botany.colorGreen","UID0":"botany.colorGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""},{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.forget","UID0":"botany.flowers.species.forget","Slot":0},{"UID1":"botany.colorLightSteelBlue","UID0":"botany.colorLightSteelBlue","Slot":1},{"UID1":"botany.colorLightSteelBlue","UID0":"botany.colorLightSteelBlue","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":6},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":8},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":9},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":10},{"UID1":"botany.colorGreen","UID0":"botany.colorGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""},{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.althea","UID0":"botany.flowers.species.althea","Slot":0},{"UID1":"botany.colorThistle","UID0":"botany.colorThistle","Slot":1},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":6},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":8},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":9},{"UID1":"forestry.sappinessHigh","UID0":"forestry.sappinessHigh","Slot":10},{"UID1":"botany.colorDarkGreen","UID0":"botany.colorDarkGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""}]}]},{"questID":1964,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:insulatedTube","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Does this shit even work?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who the hell knows? There's nothing in the wiki about these, except that they are to make \"gardens.\" Maybe make a few and stick them on a Forestry circuit board for a multi-farm? Who cares. Good luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:insulatedTube","Count":1,"Damage":256,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":514,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":1,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":643,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":18,"OreDict":""}]}]},{"questID":1965,"preRequisites":[1959],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glassworker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some custom glass shapes and configurations? A glassworker can provide some unique patterns to put in your windows. You'll need to make some glass fittings to hold the glass together."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":3,"OreDict":""},{"id":"ExtraTrees:misc","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Botany:stained","Count":16,"tag":{"meta":66},"Damage":66,"OreDict":""},{"id":"Botany:stained","Count":16,"tag":{"meta":23},"Damage":23,"OreDict":""}]}]},{"questID":1966,"preRequisites":[1963,1965,1968],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:hammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Mo' Hammers Mo' Problems","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yes indeed, time for another type of hammer. The master carpentry hammer will allow you to rotate the blocks from the various workers.\nSneak to rotate the blocks vertically.\nWhy is the lower tier hammer the master hammer? Who knows??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:hammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraTrees:durableHammer","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1967,"preRequisites":[1968],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Panels to cover your...everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The panelworker will create wood flooring pieces for you to use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraTrees:misc","Count":64,"Damage":4,"OreDict":""}]}]},{"questID":1968,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy woods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the woodworker, you can create fancy looking types of wood blocks. You can use wood planks from Vanilla, Forestry, and Extra Trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":1,"OreDict":""},{"id":"ExtraTrees:misc","Count":8,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1969,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:lantern.stone","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Look Mom, no torches!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of a base using nothing but torches? This set of quests will go through the various options avaiable to light up your beautiful base.\n\nFirst up, Railcraft lanterns. These come in stone and metallic varieties. The stone varieties don't need much to craft. One plus/minus for these lanterns is that they are solid blocks - while you cannot walk through them, they also do not fall if the blocks around them are removed. Search \"lantern\" in NEI for more varieties. They are a bit annoying to craft now, but if you check NEI you can make them pretty easy with assemblers later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:lantern.stone","Count":4,"Damage":9,"OreDict":""},{"id":"Railcraft:lantern.stone","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:lantern.metal","Count":8,"Damage":1,"OreDict":""},{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1970,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForgeMicroblock:sawDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Second Saw","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forge Microblocks can be really handy to make custom pieces. There are many saw tiers available. If you make me an iron one, I'll give you a diamond one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"ForgeMicroblock:sawIron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ForgeMicroblock:sawDiamond","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1971,"preRequisites":[51,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:BiblioLantern","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy lanterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bibliocraft offers fancy looking lanterns. Make the candles from candleberries or beeswax."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:BiblioIronLantern","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiblioCraft:BiblioLantern","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1972,"preRequisites":[479,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glowstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've been to the nether and gathered Glowstone, you can use that for light as well. You can color it to make the block color change (unfortunately 1.7.10 does not support colored lights) or you can use the Forge Microblocks saw to cut it up into tiny nooks to light up areas without taking up much space.\nThere are also various glowing plants you can find or breed, such as glowflowers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForgeMicroblock:microblock","Count":1,"tag":{"mat":"minecraft:glowstone"},"Damage":513,"OreDict":""},{"id":"ExtraUtilities:color_lightgem","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glowstone","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1973,"preRequisites":[554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic ProjectRed Illumination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic ProjectRed Illumination lamps only need an LV mixer to make. The normal version needs a redstone signal to turn on. The inverted version is on unless a redstone signal is applied."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":8,"Damage":16,"OreDict":""}]}]},{"questID":1974,"preRequisites":[97,100],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2.inv","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancier ProjectRed Illumination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fancier ProjectRed Illumination lamps, lanterns, and fixtures require the Forming Press and Assembler to create."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lantern","Count":1,"Damage":3,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.fixture","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":5,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":19,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":34,"OreDict":""}]}]},{"questID":1975,"preRequisites":[554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.flightbutton","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ProjectRed lights with a purpose","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ProjectRed offers a couple of special lights that can be used as buttons. The normal buttons are always lit up. The Feedback buttons are lit up when powered by any redstone signal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lightbutton","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Illumination:projectred.illumination.flightbutton","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1976,"preRequisites":[1973],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Ztones:lampt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flat lamps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These simple lamps from Ztones are a nice, subdued looking lamp style. I like using them on ceilings for the \"office\" look."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Ztones:lampf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Ztones:lampb","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1977,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:torch6","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone & Chisel torches, space rated","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When travelling off-world, you want the best in torches. Torches that will work in no-oxygen environments like the Moon. For that, you need glowstone torches. You can chisel these torches into a variety of torch types, also proven to work in deep space. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.glowstoneTorch","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:torch4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"chisel:torch8","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1978,"preRequisites":[68,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"FloodLights:carbonFloodlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lighting up a large area, without electricity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have a relatively large area you need to light up without using electricity, you can use these floodlights. They can take normal furnace fuels, including blocks and compressed blocks. They do require some electronic components to make, but can send out a beam a long ways, or a various cone shapes a shorter distance."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"FloodLights:carbonFloodlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"FloodLights:carbonFloodlight","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.CompressedCharcoal","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1979,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"FloodLights:electricFloodlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lighting up a large area, with electricity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a vacuum freezer, you can liquify compressed air cells and centrifuge them for rare gases. You'll need those to make the incandescent bulb for these lights. As long as they have EU, these lights can shoot a beam or do narrow or wide cones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"FloodLights:electricFloodlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"FloodLights:electricFloodlight","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1980,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockElectricLight","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enderio Lights","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enderio also has its own lights. These lights have a radius of 8 blocks vs the normal 7. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockElectricLight","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockElectricLight","Count":7,"Damage":3,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":8,"Damage":2,"OreDict":""}]}]},{"questID":1981,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockElectricLight","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BetterIO?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Powered and Wireless Powered lights from Enderio provide light up to 10 blocks away vs the normal 7 for a torch. They will require centrifuging liquid air to get the bulbs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockElectricLight","Count":1,"Damage":1,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockElectricLight","Count":7,"Damage":1,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":7,"Damage":5,"OreDict":""}]}]},{"questID":1982,"preRequisites":[91],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"malisisdoors:door_factory","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What's behind door 3?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Malisis door factory lets you go crazy with all kinds of ideas for custom doors.\n\nA player sensor is a nicer way of opening a door, instead of pushing a button or stepping on a plate...bit unforunate about the ingredients though. \n\nMaybe you can find a use for this block mixer, it is kinda weird and doesn't work right. I was going to throw it out anyways.\n\nThere are some craftable Malisis items as well, check them out in NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"malisisdoors:door_factory","Count":1,"Damage":0,"OreDict":""},{"id":"malisisdoors:player_sensor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"malisisdoors:block_mixer","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1983,"preRequisites":[97,98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:guide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Build it bigger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can build it! The Build Guide helps show you an outline of simple geometric shapes. Provide it with a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:guide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1984,"preRequisites":[1983,1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:builder_guide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Faster better buildi-er","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Enhanced building guide offers more features than the standard model. Most importantly, you can right click on any white part of the block with the item you want placed and the block will place in the world. It will need a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:builder_guide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone_block","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1985,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:elevator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So much nicer than ladders","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elevators are great for fast transportation vertically in your base. Leaving a tinted elevator will stop at the same color elevator. Use some Malisis doors for a nice \"real\" elevator effect.\nThe rotating elevator will turn the player as they go up or down to face a specific direction. Handy if your elevator shaft is on one side at a floor and a different side at another floor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:elevator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenBlocks:elevator_rotating","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1986,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ArchitectureCraft:sawbench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More like ouch-i-tect","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sawbench can turn most full cube blocks into amazing shapes of various kinds.\n\nRight-click with the hammer to rotate 90 degrees. Shift-right-click with the hammer to change the orientation of the \"bottom\" face.\n\nThe Chisel is used to alter the structure of blocks in various ways.\nSome blocks automatically form connections with adjacent blocks. These connections can be disabled and re-enabled by right-clicking with a chisel near the side that you want to change.\nSome blocks can have a secondary material applied to them. The secondary material can be removed by right-clicking on the centre of the block with a chisel.\nYou can also right-click on a vanilla Glass, Glass Pane, Glowstone or Ice block with a chisel to harvest the block without breaking it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ArchitectureCraft:sawbench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ArchitectureCraft:hammer","Count":1,"Damage":0,"OreDict":""},{"id":"ArchitectureCraft:chisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1987,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgradeTemplate","Count":3,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrading Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Drawer upgrades are different than barrel upgrades. First you need to make the ugprade template."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgradeTemplate","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:upgradeTemplate","Count":6,"Damage":0,"OreDict":""}]}]},{"questID":1988,"preRequisites":[1987],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgrade","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lYour mom says to upgrade your drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are many tiers of upgrades for storage drawers. Make some iron, gold and obsidian tier upgrades and I'll give you some of the special purpose upgrades to experiment with in your base. Check NEI for more options and Emerald and Diamond upgrades.\n\n§4To remove upgrades, shift-right-click with an empty hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgrade","Count":1,"Damage":2,"OreDict":""},{"id":"StorageDrawers:upgrade","Count":1,"Damage":3,"OreDict":""},{"id":"StorageDrawers:upgrade","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:upgradeStatus","Count":1,"Damage":1,"OreDict":""},{"id":"StorageDrawers:upgradeVoid","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1989,"preRequisites":[1225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Machine Inventory Manager","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The core block of Stacy's...er Steve's Factory Manager. SFM is a high tier automation system. While AE2 can handle simple crafting up to 9 components at a time and even nesting ingredients, SFM can handle the complex crafting required for the assline.\n\nInventory Cables connect the MIM to inventories or tanks.\n\nRight now until some Moron figures it out, your best bet is to experiment, ask for help on Discord, and search Google. The interface resembles most GUI based automation systems like LabView.\n\nThere have been TPS problems caused by poorly designed SFM setups. Make sure your outputs are properly emptied, and don't get filled.\n\nInventory cables are the \"basic\" cable of SFM. They allow the MIM to interact with an inventory, and act as a connector cable to other cables.\n\nmehdi2344 thinks my jokes suck, but he's an idiot, so there. \n\nThanks to Nori Silverrage for writing up these quests!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},{"id":"StevesFactoryManager:BlockCableName","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableName","Count":40,"Damage":0,"OreDict":""}]}]},{"questID":1990,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesAddons:duplicator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moving the Manager ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever finished a wonderful program and then realised your Manager needs to move and you have to rewrite the whole thing? Ever need to copy and paste a section of code a bunch of times and been frustrated that you can't? Well we've got you covered with the Manager Duplicator!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesAddons:duplicator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1991,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesAddons:labeler","Count":1,"tag":{"saved":["Energy Receiver","Energy Provider","Input Inventory","Input Tank","Output Inventory","Output Tank"]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Naming Names","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Factory Labeler allows you to assign unique names to anything that can be connected to a Manager - making it easy to identify when you are setting up commands.\n\nType in the text box to set a label or to searched stored labels - click any stored entry to select it, double click to edit it. Closing the GUI will set the Labeler to whatever was in the text box at that time.\n\nLeft click to set labels, right click to open the gui. Setting a blank label will remove any existing labels.\n\nMay or may not be buggy. Have fun!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesAddons:labeler","Count":1,"tag":{"saved":["Energy Receiver","Energy Provider","Input Inventory","Input Tank","Output Inventory","Output Tank"]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1992,"preRequisites":[297,990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Enhancements","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumic Machina offers Wand Augmentations. These useful modifications to your wand can boost their capacity, lower their vis usage, or do other interesting effects. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1993,"preRequisites":[1992],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Charge Buffer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Charge Buffer augmentation to your wand allows it to hold 25 percent more vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1994,"preRequisites":[1992],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vis Channels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This wand augment will lower the vis cost when using your wand by 10 percent. I am not sure it works, but give it a try and report back, ok?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""}]}]},{"questID":1995,"preRequisites":[1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What are you, a seamstress?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted Fabric is the key material to fancy robes and wizard's clothing. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":8,"Damage":7,"OreDict":""}]}]},{"questID":1996,"preRequisites":[1995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemChestplateRobe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"K-Mart Special","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every point of vis is critical, so make yourself some magical robes to help conserve how much you use. Later you can make even better robes. They don't offer much in protection, so remember to change before going to hunt!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemChestplateRobe","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsRobe","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemBootsRobe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""}]}]},{"questID":1997,"preRequisites":[1995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boots are made for walking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And swimming. These boots of the traveller will make you a blur as you go around the world. You'll need to research infusion before you can make these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1998,"preRequisites":[237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I can see everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new wand, you can make Goggles of Revealing. With Thaumcraft Node Tracker, it makes finding nodes trivial. The default key is I. You can select from the list of nodes you have scanned, and an in-world arrow will show you the way. You can also sort the list.\nBest, the goggles give you a 5 percent vis discount. \n\nSimple lens upgrades will grant you various seeing abilities as well.\n\nLater you can make more advanced goggles and even integrate the goggles into advanced armors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":2,"Damage":5,"OreDict":""}]}]},{"questID":1999,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Redstone Emitter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone Emitter sends redstone signals on each of its 6 faces. The redstone signal strength can be set to any value, add, subtract, and more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2000,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Camouflage blocks allow the faces of cable blocks to be made to imitate any other block. This works in the full workflow and thus can be updated on the fly. \nPlease note that this block is placed the same as all of SFM cables. It does not act as an inventory cable and thus will need to be in an advanced cable cluster in many situations."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":2001,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inventory Relay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The inventory relay can access the inventory of non-stationary entities, such as minecarts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2002,"preRequisites":[2000],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double Sided Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Double sided cable camouflage blocks allows setting the inside face of the cable block, allowing you to imitate glass."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":1,"OreDict":""}]}]},{"questID":2003,"preRequisites":[2002],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Transforming Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Transforming Cable Camouflage allows you to change the collision box of the cable, so you can turn it into a door or whatever."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":2,"OreDict":""}]}]},{"questID":2004,"preRequisites":[2001],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Inventory Relay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An Advanced Inventory Relay can add/remove items from a player's inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2005,"preRequisites":[1710],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32091,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Learning curve? Where we're going there are no curves","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Only dangerous cliffs to fly off. TecTech can be the source of adventures, scary and satisfying. \n\nThanks to Piky/Scripted for giving you some guardrails to stay on the road. Scripted/Piky shed blood over these quests for you. Now it's your turn!\n\nFor additional details on TecTech, check out the wiki at https://github.com/Technus/TecTech/wiki"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2006,"preRequisites":[2005],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"tectech:item.em.frontRotate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Beginning of the End Game","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to TecTech! The pinnacle of absolute high-tier machinery for all your end-tier needs. However, learning TecTech is incredibly confusing, so listen very carefully. \n\nFirst, you'll need to gather various casings for your machines that you'll need. High Power Casings, Computer Casings, and Computer Vents will do, though you'll require a large amount of them before proceeding onward."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"tectech:gt.blockcasingsTT","Count":64,"Damage":0,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":96,"Damage":1,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":96,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":64,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":15470,"OreDict":""},{"id":"tectech:item.em.constructable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":15470,"OreDict":""}]}]},{"questID":2007,"preRequisites":[2006],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15311,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the more incredibly complicated machines, this will serve as the main structure for your \"Computation\" generation for the giant Research Station. First, you'll need a few things, the Quantum Computer itself, a huge energy hatch several amps of UV or above, this is because as Computer Racks, that'll be explained later on down here, will continuously increase the demand of energy input for every new Computer Rack that you add on. The Multiblock also consumes a large amount of energy by itself. Another important factor is ONLY turn on the Quantum Computer once you have the desired recipes for the Research Station ready to avoid excess energy loss. In order for you to build this absolute monster, you'll need to place down the Quantum Computer at least 1 block above the surface/ground and use the Multiblock Machine Blueprint, this will give you a hefty amount of information and various ghost-like blocks that'll show where casings and or hatches should go.\n\nComputation:\nComputation is generated every second and is based on the tier of your circuit. There are, however, differences in between how much computation is generated, even with the same exact tier. For instance, you could use a Master Quantum Computer (Quantum Circuit Series / LuV) or a Wetwareprocessor (Wetware Circuit Series / LuV) which will give you more Computation even though they are of the same tier. If you wish to find out exactly how much Computation a circuit gives; place down a Computer Rack, put a circuit inside and scan it. It will include the following information\nBase computation: \nAfter overclocking: \nHeat Accumulated: \n\nComputer Racks:\nThe main component within the multiblock to generate Computation. In order to achieve this, you will need to input some circuits and heat vents; Advanced Heat Vents work best. It is critical that you use Heat Vents to prevent the heat from reaching a catastrophic point, 55 percent or above should be avoided for safety reasons. Technically, you could achieve \"55 percent\" in your Computer Racks, but in reality, they could explode around 4000-4999 heat. In order to precisely find out how much heat, you'll need a Parametrizer, which will be explained later. Now that you've understood one of the more basic concepts and safety of handling within the Computer Racks (scan the Racks before you run the Quantum Computer!), what are the more optimal setups for your Quantum Computer? Do keep in mind that even a 128 min Computation / Sec setup can complete practically 3/4th's of the recipes within the Research Station. In this case, a 4 Computer Rack setup with 1 Advanced Heat Vent and 3 Wetwareprocessors (LuV) will generate 72 Computation every second; leading up to a maximum of 288 Computation every second at just 5 amps of UV (524,288 EU/t) with only 4 Computer Racks required. This is a rather minimal setup compared to some of the more complicated setups.\n\nAnd most importantly: DO NOT WRENCH THE COMPUTER RACKS IF THEY HAVE HEAT IN THEM. Scan them before anything else! Otherwise, you're going to get an explosion.\n\nUncertainty Resolver\nMuch like a puzzle-solving simulation, it is rather complicated to explain how to solve it, but it's often best just to retrace or undo certain actions and hope for the best. Sometimes, the Schr�dinger Status will require some puzzle solving again after a period of time. This is random and incredibly frustrating especially during operations being done between the Research Station and Quantum Computer(s), so it is important to constantly check the Uncertainty Resolver before you start operations on your Computer.\n\nNow that you understand some of this, it is time to build the Computer! You'll need to gather quite a lot of resources at first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15311,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15430,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15441,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":15470,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":15103,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":12,"Damage":2,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":10,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":22,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"tectech:gt.blockcasingsTT","Count":20,"Damage":3,"OreDict":""}]}]},{"questID":2008,"preRequisites":[2007],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15331,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Research Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've started building up your precious Quantum Computer, how about the giant Research Station? Once again, using the Multiblock Machine Blueprint will tell you how to build this Multiblock. Once it is nearly assembled, place down an Energy Hatch, an Optical Slave Connector, and a Maintenance Hatch all on the back side. Once fully assembled, you can now begin operating recipes at any given time, so long as the Quantum Computer is also active. This Research Station requires you to put the desired item within the Object Holder, then a data stick in the Multiblock interface itself. Once the Computation is fully completed, the data stick that houses all the data of the completed item will be inside the Multiblock Interface. Still confused? Good, that's the spirit of learning! Always make sure to test these things in Single Player if you wish to find exact measurements and such. \n\nDon't forget to ALWAYS COLOR THE OPTICAL HATCHES AND FIBERS!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15331,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15103,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15440,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15451,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":29,"Damage":1,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":23,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":14,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"tectech:gt.blockcasingsTT","Count":59,"Damage":1,"OreDict":""}]}]},{"questID":2009,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sign Updater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Sign Updater allows your MIM to update an external display of information."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2010,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableIntakeName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Item Valve allows your factory manager to suck in dropped items from around them in a 3x3x3 cube. Or you can use them to push items out into the world in the direction they are pointing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":2011,"preRequisites":[2010],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableIntakeName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rapid Item Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rapid Item Valves can pick up items in the world without any delays."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":2,"Damage":8,"OreDict":""}]}]},{"questID":2012,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableClusterName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cable Cluster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The cable cluster allows you to combine as many of the other cables together into one block. You could have a redstone receiver and emitter and a inventory relay all in one block.\nThis cable is a \"terminal\" cable. It does not extend the MIM beyond it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2013,"preRequisites":[2012],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableClusterName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Cable Cluster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Advanced Cable Cluster will also act as an Inventory cable, extended the range of your MIM."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":4,"Damage":8,"OreDict":""}]}]},{"questID":2014,"preRequisites":[1180],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll those chunks, all in a row","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you don't want a 3x3 area chunkloaded, but a long straight line instead. This can be handy for rail lines or power lines coming from long distances. An anchor sentinel can perform this function. Right-click on a chunk loader with a crowbar, and it will activate. Go in any straight line from the chunkloader and place the anchor and hit it with the crowbar. Those chunks, up to 25x1, will now remain loaded.\n\nThis will draw an amount of chunkloader time relative to the 9 chunk area normally loaded. If for some reason you wanted only a 1 chunk area loaded, this will extend the time. Stock up on those pearls or server coins!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChunkloaderTierIV","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2015,"preRequisites":[1999],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Redstone Receiver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone Receiver reads redstone signals on each of its 6 faces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2016,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Block Gate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Block Gate can break pickup, or place blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2017,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Block Detector","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Block Detector allows your MIM to detect when a Block update has occured. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2018,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":254,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§lCutting up stuff at EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are EV you are going to need a more advanced cutting machine. Better get one built."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":254,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2019,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Basics of SFM","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Variables - Declaration vs Standard\nDeclaration is simply creating a variable with eligible blocks in it. This allows easy updating of workflows. For instance you could have a variable that contains 2 chests. You use it in a nifty for each loop and later add another chest. Simply update the variable and the for each loop will start using it.\n\nStandard variables are able to be inserted into the middle of a workflow (it has input/output) and thus can be modified on the run.\n\nPlease note that for each loops will require a empty variable to work with. This is listed as \"Element\" in the loop.\n\nGlobal vs Local\nGlobal will keep changes to a variable that are done in the workflow, whereas local keeps anything done local to that part of the workflow."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2020,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magical box","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This magical box is amazing. No matter how many are created, they all seem to connect to the same dimension. I can store items in one location, and pull them out somewhere else! I can use dyes on the top of the box to assign its location, and any box with the same colors will share the same space. Using a diamond on the box locks it my mind, and a private network. Shift-rightclicking will remove the diamond and join the chest back to the public network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2021,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderChest","Count":1,"Damage":4096,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magical tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This tank always seems to connect to the same dimensional space. No matter how many I create. I can push fluids into the tank in one dimension, and retrieve them in a totally different dimension! I have discovered a way to assign a location to each tank using dyes applied to the top. Using a diamond makes the tank private, attuned to the caster's mind, and will not share fluids with any other player's tanks. Shift-rightclicking recovers the diamond and makes the tank part of the public tank network. The dial on front controls the input/output of the tank. When blue is up, the tank accepts fluids. When orange is up, the tank will eject fluids. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderChest","Count":1,"Damage":4096,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":2022,"preRequisites":[2020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderPouch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"That chest is too big to carry around","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Instead of chest you have to keep placing and breaking, how about a nice convenient pouch you can use? You'll have to synchronize it with the chest you want to link with. To set it to a new chest, sneak-click with the pouch on a new chest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderPouch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2023,"preRequisites":[2018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lMore power needed, sir!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"EBF and LCR recipes are going to need even more power. You'll need to craft EV energy hatches to supply them and keep them running."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2024,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32608,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAssline quest updates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When the pack updates, and changes an assembly line recipe, your old data sticks become useless. However it's more than that, you can't simply rescan an old UV motor for the new UHV data, you need a new UV motor. It's best to start with component parts in the lowest changed tier, then work your way up until you've rescanned up to your current tier. Yes, this sucks, we also wish there was another way. You can tell if your data stick is out of date by seeing if the nei recipe matches the one in the data viewer. Nei will always be right."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]}]},{"questID":2025,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":3}},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"GT++ knowledge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To become a master at GT++ you will need to craft manuals for certain machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":3}},"Damage":3,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":1}},"Damage":1,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":0}},"Damage":0,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":4}},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2026,"preRequisites":[1008],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:item.StockroomCatalog","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBetter way to find items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"NEI has a built in search feature for finding an item stored in an inventory nearby. A Stockroom Catalog can give you a list of everything stored in your inventories.\n \nSneak right-click a block with an inventory (a chest, bookcase, barrel, anything with an inventory) to add that inventory to the list of inventories for the catalog to keep track of. Sneak right-click the same block again to remove that block from the list.\nA small particle effect will render on any block that has been selected with the catalog when holding the Stockroom Catalog to let you know that block is being tracked.\n\nRight click to open the GUI and see the list.\nYou can sort the list in ascending or descending order by quantity (Count) or alphabetical order.\n\nYou can also see a list of all the inventories that have a particular item and easily add the location of one of those inventories to a stockroom catalog so you can easily find your stuff.\n\nThe Stockroom Catalog can also be copied with the typesetting table and printing press.\n\nClick on the title to change it to anything so you can custom label your stockroom catalog.\n\nClick on the small chest icons on the right hand side of each listing to open the inventory list view. \n\nIf you want, you can craft a waypoint compass and use that to point you towards the chest. Since we have Journeymaps and NEI, it's not really necessary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.StockroomCatalog","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:chest","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":2027,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":875,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThermal Boiler - Lava you long time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want energy from lava and the byproducts, the Thermal Boiler is the perfect solution. It processes lava super fast for steam, and with a lava filter will provide centrifuged lava byproducts as well. A great source of copper, silver, gold, tin, tantalum, and tungstate.\nYou can get even better efficiency pairing it with a Large Heat Exchanger. The LHE will turn normal vanilla lava into pahoehoe, which will provide steam and byproducts in the Thermal Boiler. Win/Win/Win!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":875,"OreDict":""},{"id":"miscutils:itemLavaFilter","Count":1,"tag":{"LavaFilter":{"Damage":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemLavaFilter","Count":3,"tag":{"LavaFilter":{"Damage":0}},"Damage":0,"OreDict":""}]}]},{"questID":2028,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":790,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I think I'm going to be sick","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Industrial Centrifuge is the solution to those thousands of ore you are getting with the multiblock ore drill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":790,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2029,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":862,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bask in the currents","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best source for hundreds of thousands of glass for...something? I dunno, think of something interesting and impress me!\n\nThe \"effective\" voltage for the High Current Arc furnace is one tier lower than the energy hatch. For example, with an MV tier energy hatch, it will do LV tier arc furnace recipes.\n\nThis machine also does plasma arc furnace recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":862,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2030,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":811,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bate Bate Chocolate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Abuela, will you teach us the chocolate song?\nCon mucho gusto\nWill you sing the chocolate song with us?\nGreat, sing along with Abuela!\n\nBate bate chocolate\nBate bate chocolate\nBate bate chocolate\nBate bate chocolate\n\nMix your chocolate, chocolate\nMix your chocolate, chocolate\nBate bate chocolate\nBate bate chocolate"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":811,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":32213,"OreDict":""}]}]},{"questID":2031,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":859,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Play doh for big girls and boys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I never wanna grow up, I wanna play with my mega extrusion machine.\nAnd in case you didn't read the description in NEI: You can use multiple input busses with a different extruder shape in each and then throw the items to extrude into the bus with the appropriate shape."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":859,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2032,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":992,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Best thing since sliced bread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When all you have is a machine full of knives, everything starts looking like bread. \n\nBluebine 2019!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":992,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"minecraft:bread","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2033,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":860,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A 9 in 1 machine, what a steal!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine has 3 modes, capable of emulating 9 of the less common machines.\nThe 3 general modes are cycled by using a screwdriver on the controller. Each of the modes can support 2 or 3 different machine selected by putting a circuit into the same input bus as the items you want to process. If you have a look at the description of the controller in NEI, you will see a list of the supported machines for each mode. These are in order and can be used with circuit numbers 20, 21 and 22. This also means that you can use multiple input busses with different circuits to use the full potential of the machine. You can also use more busses to use different non-consumable items in the recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":860,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2034,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":796,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ZzzZZZzzzZtt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need lots of oxygen or hydrogen, or just want to rip apart materials for tons of aluminium?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":796,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2035,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":910,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frozen Stiff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'm so cold..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":910,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2898,"OreDict":""}]}]},{"questID":2036,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":963,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forge of the Gods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Volcanus Advanced EBF will process items faster than you can believe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":963,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2843,"OreDict":""}]}]},{"questID":2037,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":798,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spools and spools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need enough wire to go around the world? Here you go."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":798,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2038,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":792,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bender more bending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you need plates by the thousands."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":792,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2039,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":942,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bezos would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nThe Amazon Warehousing Depot is the ultimate for all your packing needs. Got tiny and small dusts coming out of your ears? This is the machine for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":942,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]}]},{"questID":2040,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":791,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Industrial Coke Oven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Swimming in logs? Turn those logs into clean burning charcoal!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":791,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2041,"preRequisites":[1710],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lChickens my boy, the future is in chickens","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Future wetware processors are going to need stemcells....lots of them. Luckily there is way to infuse a normal, harmless chicken embryo with genetic mutagen to make it a perfect source for these stemcells. Once the egg has matured it has a small chance of turning into a giant chicken spawn egg. This giant chicken will now lay eggs that can be disassembled for stemcells or allowed to mature to make more giant chickens. Killing the giant chicken may also give you eggs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:itemBigEgg","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":2042,"preRequisites":[2050],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockThirstyTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So thirsty ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just listening to this tank gulp water makes me thirsty. If placed next to a water source block, it is a decent water source. It also supports several upgrades to speed and capacity. Try out this glyph near your cows, and get a tank full of milk for all your cheese and butter needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockThirstyTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:glyph","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2043,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Volumetric_Flask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBorax Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an MV Electrolyzer, you can extract Boron from Borax. This element is used later on for Borosilicate Glass and fiber, but for now you can use it to make some volumetric flasks to hold precise amounts. This is handy for recipes that may only need a tiny amount of a substance, like 1L."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2009,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.Volumetric_Flask","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.Volumetric_Flask","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2044,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12730,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMega is Betta","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For someone who needs to blast a truly *ridiculous* amount of stuff, this is the machine for you. This monster machine can handle up to 256 parallel recipes at a time.\nThe glass tier (search NEI for Glass-Tier: HV for an example) sets the maximum energy hatch tier for this machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12730,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2045,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12731,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFrostbite!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This mega vac freezer can handle up to 256 items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12731,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2046,"preRequisites":[610],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30727,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A better fluid pie","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have lead you can convert your bronze pipes to potin pipes with higher capacties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30727,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""}]}]},{"questID":2047,"preRequisites":[1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockCircuitProgrammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBulk Programming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of having to use NEI to figure out how to program your circuits? This block will allow you to simply choose the circuit number. It can be automated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:blockCircuitProgrammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2048,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:moss","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moss","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Given up on looking for moss in the Twilight Forest? You can easily grow a crop that will give you the various mosses, perfect for your Tinker's tools. Start with a lilypad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Moss","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Spanish Moss","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Ember Moss","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2049,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":773,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Energy Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your research into energy has lead you to energy buffers - a single block that can store enormous amounts, and is also portable. Better than a battery, these devices can be configured to output 1-16A. Using a high-amp transformer, that means you can up tier 2 tiers with these devices. This HV energy buffer can power an HV machine for several hours, or an EV machine for almost an hour. Perfect for mining operations in far off dimensions."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":773,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2050,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockGreedyChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Greedy Chest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Greedy Chest from Automagy looks to have some interesting uses. It also gates a pretty important device for a magician..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockGreedyChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2051,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Another way to Ethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using a fermenter with excess saplings or other garbage will give you Forestry biomass. Higher Sappiness trait on your trees will get you better results."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2052,"preRequisites":[2051],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why no, this is not fit for human consumption","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Taking the biomass from the Fermenter and using it in a still will give you Ethanol. Not really worth it for power, but useful if you want to turn it into ethylene. You could set it up on an old steam setup with nothing better to do to get a more useful power source out of it, or use the Ethanol to power the setup and the forestry farm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2053,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":829,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Empty the oceans","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stuck with fish for biodiesel this long, you can now make the Zhuhai Fishing Port to get cartloads of fish and other byproducts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":829,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2054,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":876,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Putting all those workers out of jobs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The large scale auto-assembler will put things together for you, in volume. It is an Assembler, Disassembler, and Autocrafter all in one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":876,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2055,"preRequisites":[2051],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better fermenter outputs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a Squeezer you can boost the output from your fermenter, saving on Fertilzer or Mulch and getting more per sapling. There's a variety of crops you can use to make fruit juice, so have fun breeding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2056,"preRequisites":[1888],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lJacques Cousteau","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a Scuba Helmet you can safely explore underwater for long periods of time. You just need some compressed air cells. I'll trade you some Tin ingots for a few compressed air cells.\n\nAs your air drops, the helmet will take a compressed air cell and give back an empty cell. Throw these cells into your compressor and you can easily gather clay from beneath rivers. You'll be able to make more cells later once you get an extruder or a plate bender."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11057,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":5,"OreDict":""}]}]},{"questID":2057,"preRequisites":[1159,1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafPlate","Count":1,"tag":{"ench":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steeleaf armor is the next level in Twilight Forest armor. It can be handy as a defense in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17339,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.steeleafHelm","Count":1,"tag":{"ench":[{"lvl":2,"id":4}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafPlate","Count":1,"tag":{"ench":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafLegs","Count":1,"tag":{"ench":[{"lvl":2,"id":1}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafBoots","Count":1,"tag":{"ench":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.steeleafAxe","Count":1,"tag":{"ench":[{"lvl":2,"id":32}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafPick","Count":1,"tag":{"ench":[{"lvl":2,"id":35}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafShovel","Count":1,"tag":{"ench":[{"lvl":2,"id":32}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2058,"preRequisites":[1951,2059],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor III","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knightmetal is the top tier Twilight Forest armor. It doesn't come with any free enchants but it has high durability and high armor rating"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.knightlyHelm","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyLegs","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.knightlySword","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyPick","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyAxe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2059,"preRequisites":[1159],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.shardCluster","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Knightmetal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knightmetal ingots are loot taken from Goblin Knight Strongholds. They can be made into Diamond-tier armor. You can take Armor Shards and turn them into Knightmetal ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.armorShards","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":2060,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:HoverHarness","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying like....Mary Poppins?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Thaumostatic Harness grants you flight, using up Potentia from a jar. The speed isn't great though, so perhaps further research will yield some results."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:HoverHarness","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2061,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGirdleHover","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying with the greatest of ease","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ahh that's better. With this girdle you can really fly around like a true wizard. It does take a little extra potentia to use though, so keep an eye on your flying time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGirdleHover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2062,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Baubles","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Working while flying? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With these devices you can now fly and work at the same time without penalty. They can be found in the Witching Gadgets tab of the book. You will need a Swiftness potion for this device."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Baubles","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2063,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockThaumostaticSpire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Long distance power delivery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No mage wants to be restricted to short flying times. With this spire from the Automagy discipline you can transmit magical energy directy to your flying harness. To get the correct Thaumium block, compress 9 ingots to get the GT Thaumium block and then chisel that block to get the correct type.\n\nThis multiblock requires centi-vis to operate. You can use 2-6 Thaumostatic Pylons, with additional pylons extending the range. Provide the construct Aer centi-vis to operate, and will accept Potentia essentia to transfer to flyers. The construct will also accept Aer and Volatus essentia to increase the range and rate of transfer, respectively. Right-click the sides of the controller to control which type of essentia each side will accept."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockThaumostaticPylon","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:blockThaumostaticPylon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:quartz_block","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":2064,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:nodeManipulator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Healing your nodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many of the nodes of the wild have damage, and unjarring a captured node can also cause damage. The Node Manipulator can help you recover the nodes to full strength, and increase their recharge speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:nodeManipulator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"thaumicbases:nodeFoci","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2065,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:WG_WoodenDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Clothes makes the magical woman or man","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Witching Gadgets Spinning Wheel will unlock plenty of useful materials and items. Hopefully without that creep Rumpelstiltskin! Make sure you get the WG Spinning Wheel and not the Witchery version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:WG_WoodenDevice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WitchingGadgets:item.WG_Material","Count":4,"Damage":5,"OreDict":""}]}]},{"questID":2066,"preRequisites":[2065],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Cloak","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying like a eagl - I mean raven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This cloak will be a nice substitute for the Glider. There are plenty of other magical items worth a look in the Witching Gadgets tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Cloak","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2067,"preRequisites":[1998],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:lensFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Everything fuzzy? Try some lenses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have Goggles of Revealing, Thaumic Horizons offers various lenses with handy uses. This one will grant night vision. Try out some of the others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:lensFire","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicHorizons:lensCase","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2068,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dissEnchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Disenchanted ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you found an item or book with a good enchantment - but also a bunch of garbage, you can strip the enchantments into separate books using a Disenchanter. Surround it with bookcases to reduce damage done to the item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dissEnchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2069,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:GTPP.bauble.fireprotection.0.name","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHot hot hot!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you build your vacuum freezer, you are going to have to carry around hot ingots all the time. Your old gloves are falling apart, and take up both hands. I think there's a way you can glue them together so you can carry hot items with just one hand. Give these a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:GTPP.bauble.fireprotection.0.name","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11367,"OreDict":""}]}]},{"questID":2070,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:SlowBuildingRing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So you want to go slower...wait, what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you need to go slow so you don't fall off the top of your spire. Or you don't want to accidentally sprint in your fields and trample your crops. Maybe you don't want to have to hold sneak all the time. This bauble will weigh you down - keeping you from accidentally sprinting, and can be activated to enable/disable sneaking."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:SlowBuildingRing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8269,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2071,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPanning for gold is for chumps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have reached LuV you can make the god-tier prospector - The Electric Prospector. This handheld machine can provide detailed information on ores in the area, and return maps of how much fluid and what type is in each chunk."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2072,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Planetary Tears","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Indeed you will be crying over all the tiers you have to do for planets. Here is a handy reference.\n\nTier 1 - Needs Oxygen Gear\nMoon\n\nTier 2 - Requires Thermal Padding\nMars\nPhobos\nDeimos\n\nTier 3 - Requires Tier 2 Thermal Padding\nCeres\nAsteroids\nEuropa\nGanymeade\nCallisto\nRoss128b - Habitable Planet (need no Oxygen Gear/thermal padding)\n\nTier 4 - Need tier 2 thermal padding\nIo\nMercury\nVenus - Needs SpaceSuit\n\nTier 5 -Need tier 2 thermal padding\nEnceladus\nTitan\nMiranda\nOberon\n\nTier 6 -Need tier 2 thermal padding\nProteus\nTriton\n\nTier 7 -Need tier 2 thermal padding\nPluto\nHaumea\nMakemake\nKuiper Belt\n\nTier 8 -Need tier 2 thermal padding\nAlpha Centauri Bb - Requires SpaceSuit\nTau Ceti E - Habitable Planet (need no Oxygen Gear/thermal padding)\nVega B\nBarnarda C - Habitable Planet (need no Oxygen Gear/thermal padding)\nBarnarda E\nBarnarda F"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2073,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Bat)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...Did you expect a raid boss of some kind? If you count the number of bats you'll encounter and kill, then probably yes."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":6,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.699999988079071,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":6,"BatFlags":0,"id":"Bat","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-7074487613494084000,"Health":6,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":4040540653557534000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":250,"taskID":"bq_standard:hunt","target":"Bat","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":5,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":1,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":5,"BatFlags":0,"id":"Thaumcraft.Firebat","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-6261044372789276000,"Health":5,"damBonus":0,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":4875998536939948000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"Thaumcraft.Firebat","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spamcompressedsaltBlockalt","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:fish","Count":64,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2074,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Dire Wolf)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These kinds of wolves do not take kindly to you marching close to them or offering them bones! Neutral at first, but extremely hostile upon approaching close to them and dangerous. They'll rip the bones right off ya! Found within snowy forest biomes."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.5,"Name":"generic.movementSpeed"},{"Base":40,"Name":"generic.followRange"},{"Base":10,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"enderzoo.DireWolf","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-9065909997462844000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-243949381481577630,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"enderzoo.DireWolf","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2075,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Hellhound)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aggressive and can apply fire, although not a fast enemy either. Recommendation, avoid melee combat and offerings of bones."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.30000001192092896,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"witchery.hellhound","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8351910570511150000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-1547927940807901200,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":15,"taskID":"bq_standard:hunt","target":"witchery.hellhound","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2076,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:magma_cream","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Magma Cube)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now a Hell version of your slime! Always appears with Infernal status."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":1,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.20000000298023224,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":1,"id":"LavaSlime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5097572486836440000,"Health":1,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-4758778065320197000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":20,"taskID":"bq_standard:hunt","target":"LavaSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2077,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:slime_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Slime)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sticky and bouncy! Now in many variations. Say hello to my little friend, Lemon Slice!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":1,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":1,"id":"Slime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-7612310377822589000,"Health":1,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-239686335288032100,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":40,"taskID":"bq_standard:hunt","target":"Slime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2078,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Silverfish"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Silverfish)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Be wary, they like to disguise and clone themselves in stone-related blocks! (Applies to Vanilla blocks only) Can be found within dungeons. Can also be found in Drowning Creeper spawned cobblestone blocks."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":8,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.6000000238418579,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":1,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":8,"id":"Silverfish","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8975834499757947000,"Health":8,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-8086562575035774000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":15,"taskID":"bq_standard:hunt","target":"Silverfish","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2079,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Hey is that a friendly bumblebee?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aieee, no it's not, it's a nether wasp, kill it kill it kill it!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2.5,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"BiomesOPlenty.Wasp","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8451188845710707000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":1541882790712460300,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"BiomesOPlenty.Wasp","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2080,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.cocoa","Count":8,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Chocolate is bad for you...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...but sure is great for production! Chocolate frames in apiaries and alvearies will boost output, but cause shortened life. This can be useful for the devious beekeeper..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.cocoa","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2081,"preRequisites":[507,2083,1953],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:misc","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Welcome to Biology Class!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Binnie's Genetics mod will allow you to pick and chose traits for bees, trees and Botany flowers. But not for free! Doing this comes at a price.\n\nIt is better to provide power to an Enderio capacitor and then power these machines with RF, instead of powering directly with GT EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:misc","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2082,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Making bees more comfortable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The acclimatiser is a key machine for breeding your bees. With lots of energy and the appropriate ingredients you can toughen your bees to thrive anywhere. However, even with climate hardiness your bees still won't produce special items unless they are in their favorite climate. Along with the bee, put in these items to adjust the bee's traits:\n\nsnowball - More temp tolerance\nsand - More dry tolerance\nwater - More wet tolerance\n\nFor water, it is best to use wax capsules made from beeswax, the acclimatiser doesn't return cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:snowball","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:sand","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:waxCapsuleWater","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2083,"preRequisites":[103,578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:treealyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Such pretty leaves...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have entered MV you can begin breeding Forestry trees the smart way. Start by getting a Treealyzer, and scanning some common vanilla trees like oak, dark oak, spruce, birch, acacia, and jungle saplings. You will need to gather honey or honeydew drops from bee combs to power the Treealyzer. \n\nIf you want to bulk scan saplings, you can feed them through a GT scanner filled with honey.\n\nIf you have reached MV, you can try the Slice and Splice tab for information on Genetics."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:treealyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":2084,"preRequisites":[35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:grafter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Collecting the hybrids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you got lucky and found some bees in a village, put them in their housings next to some trees. Over time the bees will slowly pollinate the leaves of the trees. Using a grafter you can break the leaf blocks to retrieve the sapling. You can trade with villagers to get proven grafters that have a longer lifetime. Also investigate magic, you have heard rumors of long lasting grafters available to magicians. \n\nGregTech also offers a really nice tool, the Branch Cutter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:grafter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"Forestry:grafterProven","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":2085,"preRequisites":[36,2122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Seeing the fruits of your labors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It can be difficult to see which leafy blocks are pollinated. Craft a pair of spectacles to get a better view."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:grafterProven","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2086,"preRequisites":[145],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32722,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGrinding heads are better than none","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the SAG mill will work with no grinding heads, flint heads only save a little power. If you want to exploit the true capability of the SAG mill, you want to use Diamond or Tungsten grinding heads. Craft me a Diamond and I'll give you a Tungsten as a reward."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32722,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32723,"OreDict":""}]}]},{"questID":2087,"preRequisites":[1987],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgradeLock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lKey to your heart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Barrels by default allow locking the barrel to a specific item, even when empty. For drawers however you will need to make the Drawer Key to lock its content types."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgradeLock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:fullDrawers1","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2088,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Incubator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This is a crafting machine that heats items and liquids to a temperature that encourages bacterial growth. \n\nThe first step of incubation is the creation of Liquid Growth Medium, which is made from incubating Water and Growth Medium. This is subsequently incubated with Wheat to give Bacteria. This solution of bacteria can then be incubated a third time with Sugar to give Enzyme. This is an important compound used in other machines.\n\nThe best way to create enzyme is therefore to chain three incubators together, for each step of the process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:labMachine","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2089,"preRequisites":[1123,1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialApiary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Bees by the millions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need endgame high speed bee production, industrial apiaries are the path to follow. Industrial Apiaries take upgrade frames that never break. Production frames can be stacked up to 8 high. It also has many options for emulation, more pollen retrieval, and others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:IndustrialApiary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:UpgradeFrame","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":2090,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:frameMutagenic","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fastest way to get there","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A GT++ Mutagenic frame will get your bees to their final destination faster than you can blink. Just remember to wear your rubber suit while making it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:frameMutagenic","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":2091,"preRequisites":[1123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgrading the Alveary (tier 1)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These basic upgrades to the Alveary make it more powerful. \n\nFrame housing - Automation-enabled frames for the Alveary\nSwarmer - Creates additional Ignoble queens in hives around the Alveary\nHygroregulator - Controls for humidity, and to a lesser extent temperature. Will require lava or water.\nStabilizer - Prevents the princess or queen from changing species. Ideal for breeding traits into a line.\nSieve - Instead of the pollen from a bee fertilizing a nearby tree, it is stored here and can be manually applied. Requires manually placing woven silk in the inventory.\nRain shield - Keeps bees that are not rain tolerant dry and working.\nHatchery - Hatches larval bees for use in Genetics or to create additional drones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":1,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":2,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":5,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":6,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":7,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":2,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:alveary","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2092,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Busy Bees Buzzing Boldly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These upgrades can significantly increase your production rate by keeping your bees from stopping production.\nTransmission - Provides power to frame blocks that need it throughout the alveary.\nAlveary Fan - Cools your temperature a large amount.\nAlveary Heater - Warms your temperature a large amount.\nLighting - Provides light for bees that do not work at night."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":6,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":3,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":4,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:alveary","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2093,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A stim a day keeps the doctor awake","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Supporting circuit boards that can hold 4 electron tubes, the Electrical Stimulator provides a variety of functions. All numbers are in percent\n\nLV - Prod: 150 (Max 500) - Iron ET\nHV - Prod: 250 (Max 1000) - Diamantine ET\nBiotic - Poll: 150 (Max 500) - Apatine ET\nCharged - Life: 80 (Min 20) - Obsidian ET\nGentle - Life: 150 (Max 500) - Lapis ET\nMolten - Simulates the Nether - Blazing ET\nMutagenic - Muta: 150 (Max 500) - Golden ET\nInhibiting - Terr: 40 (Min 10) Prod: 90 (Min 50) - Tin ET\nAgitating - Terr: 150 (Max 500) - Bronze ET"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:thermionicTubes","Count":8,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2094,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"X-Men, or should I say X-Bee?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Mutator can vastly accelerate genetic mutations, even allowing those ultra rare bees to be bred. Items inserted into the Mutator control how much mutation it causes.\n\nSoul Sand - 50 percent increase\nEnder Pearl - 100 percent increase\nEye of Ender - 300 percent increase\nNether star - 1000 percent increase"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:soul_sand","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2095,"preRequisites":[2088],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genepool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another important resource is Raw DNA. This can be obtained from any breedable organism such as bees, trees or flowers, and is created in the Genepool. The Genepool requires both Ethanol and Enzyme to digest the DNA, and will destroy the organism. Note this gives raw DNA, and does not preserve any genes or alleles present."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":1,"Damage":771,"OreDict":""}]}]},{"questID":2096,"preRequisites":[2095],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Isolator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Isolator acts in a similar way to the Genepool, but does not completely destroy genes. It instead allows the isolation of a single gene from an organism, without destroying it. The exact gene is random, and is written into an Blank Sequence. Until the sequence is analysed in an Analyser, it will be unknown what the gene is. It doesn't however need to be analysed before being sent to the Sequencer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":16,"Damage":5,"OreDict":""}]}]},{"questID":2097,"preRequisites":[2096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sequencer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After obtaining a DNA Sequence with the gene that you wish, it must be placed in the Sequencer. This uses Fluorescent Dye to determine the correct sequence, and when completed logs the discovery. The important thing here is that the discovery goes to the person who placed the machine.\n\nGenes are sequenced faster if the sequence has been placed in a Polymeriser first to increase the strength."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""}]}]},{"questID":2098,"preRequisites":[2097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Polymeriser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Serums and sequences can be placed in a Polymeriser to increase their strength and amount of DNA held within. Serums need to be polymerised at least once before being used in the inoculator. To polymerise, both Raw DNA and Polymerising Bacteria are required. Raw DNA is obtained from the Genepool, and Polymerising Bacteria is made from incubating bacteria with bonemeal. Gold nuggets can be used as a catalyst to speed up the process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":8,"Damage":771,"OreDict":""}]}]},{"questID":2099,"preRequisites":[2097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gene Database","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Discovered genes are logged into the Gene Database. This handheld device lists all genes by the type of organism they apply to. To add a gene to an Empty Serum Vial to allow inoculation, the desired gene can be clicked on while holding the vial. An Empty Serum Array can be used to hold more than one gene at once."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":8,"Damage":6,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":7,"OreDict":""}]}]},{"questID":2100,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lab Stand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Lab Stand is a block on which an Apiarist Database, Arborist Database, Botanist Database or Gene Database can be placed by right clicking on the placed stand with the database, attaching it and allowing the database to be accessed by right clicking on the stand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""},{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""},{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2101,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Combined analyzers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of carrying around seperate bee, tree, and butterfly analyzers? This combined tool will do all 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":2,"Damage":9,"OreDict":""}]}]},{"questID":2102,"preRequisites":[2099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:registry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Registry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Registry combines the existing four databases into a new sleek browser to allow the properties, mutations and genes of all discovered bees, trees, butterflies and flowers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:registry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":4,"Damage":7,"OreDict":""}]}]},{"questID":2103,"preRequisites":[2098],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inoculator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final step is inoculation. Currently the only machine capable of inserting genes is the Inoculator. This uses Bacteria Vector, created by incubating Bacteria and Blaze Powder, to transfer the gene into organisms.\n\nOnly the young stage of organisms can be injected, which are larvae (bees), pollen (trees and flowers) and caterpillars (butterflies). Bee larvae can be converted into drones by incubating with Liquid Growth Medium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":8,"Damage":772,"OreDict":""}]}]},{"questID":2104,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:misc","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tools for the Geneticist","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You'll need various tools and supplies before you start manipulating genetic material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:misc","Count":16,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":5,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":6,"OreDict":""},{"id":"Genetics:misc","Count":1,"Damage":7,"OreDict":""},{"id":"Genetics:misc","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":8,"Damage":7,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2105,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping track of your findings (Botany)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This handy device will keep track of the flowers you have discovered so far, and their properties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2106,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:flutterlyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Figuring out Butterflies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Butterflies don't do much, but this analyzer will give you details on their abilties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:flutterlyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":""}]}]},{"questID":2107,"preRequisites":[2083],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping track of trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This device will keep track of all the trees you have discovered."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitLemon","UID0":"forestry.fruitLemon","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""}]}]},{"questID":2108,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bee more knowledgeable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This database keeps track of everything bee."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":20,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""}]}]},{"questID":2109,"preRequisites":[2106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:databaseMoth","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluttering Facts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This database tracks all your knowledge of butterflies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:databaseMoth","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2110,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speeding up slow machines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many mods don't have methods of speeding up their slow machines. For this, you'll need a GregTech World Accelerator. It guzzles amps though so your power infrastructure better be ready for it. The tooltip will list the performance boost provided. For block-based acceleration, the WA will do an area around it. For TileEntities like most machines, it will only accelerate the blocks directly touching the WA, and will need to be reconfigured with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30709,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30742,"OreDict":""}]}]},{"questID":2111,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hail to the King","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you get lucky, you might find a King Slime in your travels. Kill it and I'll give you a really nice replacement head for one of your tools."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":100,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":100,"id":"TConstruct.KingSlime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8845708440277897000,"Health":100,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-8369209673811083000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TConstruct.KingSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:hammerHead","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:excavatorHead","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:broadAxeHead","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":2112,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":0}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sometimes life is scary and dark - Bring a backpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are MV, you can make an Adventure Backpack. This very useful backpack can do many things. It can store 2 tools for quick access, has internal tanks for containing liquids - use the Hose to access them, a built in crafting table, and storage. When placed on your back, it can be accessed using a quick-access key, default is B. Check your controls for details. \nWhen placed on the ground, it can be accessed with a right-click. While on the ground, the bedroll can be deployed and used. \nThey can also be upgraded to add special abilities. For more special abilities than those featured here, check the Adventure Backpacks wiki."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:beefwellingtonItem","Count":64,"Damage":0,"OreDict":""},{"id":"adventurebackpack:backpackHose","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2113,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":2}},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See like a ... bat?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nightvision is a great backpack ability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":2}},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:rainbowcurryItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2114,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":62}},"Damage":62,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Swim like a .... squid?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need to go deep or explore in the water, this is the backpack for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":62}},"Damage":62,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:meatfeastpizzaItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2115,"preRequisites":[2139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":51}},"Damage":51,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walk through fire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Pigman backpack will make the Nether ezpz with fire resistance. You'll have to figure out a way to get struck by lightning while wearing a Pig backpack to get it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":51}},"Damage":51,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:supremepizzaItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2116,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":29}},"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Creeper Repellant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An ocelot backpack will get those creepers running away from you. Nice protection against those drowning creepers! Don't get too close to them or else their repulsion will be overriden and they will blow up!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":29}},"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fishandchipsItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2117,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":1}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Milk without the cow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Cow backpack will generate milk from wheat placed in its inventory. Great for a lazy farmer!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":1}},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wheat","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2118,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":22}},"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Here be dragons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dragon backpack gives you Fire Resistance, Strength, Water Breathing, Night Vision and Regeneration."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":22}},"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:music_disk","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":2119,"preRequisites":[184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Smart cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smart cables are better than glass or covered cables because you can visually see many channels are in use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":56,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":56,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2120,"preRequisites":[2119],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":76,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dense cables are going to be your network backbones. They can transfer 32 channels and display the number of channels in use. Busses and flat interfaces cannot be placed directly on them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":76,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":76,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2121,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":30,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better Grafter through Technology","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The GT Branch Cutter is much better than the forestry grafters. It can have much higher durability based upon which material you use to create it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{}},"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:fruits","Count":64,"Damage":3,"OreDict":""}]}]},{"questID":2122,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"forestry.fruitApple","UID0":"forestry.fruitApple","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speak for the trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You'll need to find a bunch of vanilla trees to start your breeding program. To convert them directly to Forestry trees, you can use a Treealyzer - but you'll need a carpenter and aluminium from MV for that. Alternatively, you can just grow a bunch of vanilla trees and surround them by good pollination bees in bee housing. Spectacles will help you see the fertilized leaves to harvest with your Grafter or Branch Cutter.\n\nCompleting the quests will require scanned trees, but you can progress on breeding while waiting for your GT Scanner or Treealyzer to be made."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeDarkOak","UID0":"forestry.treeDarkOak","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcaciaVanilla","UID0":"forestry.treeAcaciaVanilla","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBirch","UID0":"forestry.treeBirch","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeSpruce","UID0":"forestry.treeSpruce","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeJungle","UID0":"forestry.treeJungle","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2123,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sapling","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unlocking tree breeding lines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No Description"}},"tasks":{},"rewards":{}},{"questID":2124,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLime","UID0":"forestry.treeLime","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Silver Lime","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silver Lime, a basic tree breed. Breed it by mating Silver Birch with Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLime","UID0":"forestry.treeLime","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestryI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2125,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeTeak","UID0":"forestry.treeTeak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Teak","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Teak is the first step to Cocobolo, a true giant. Breed it by mating Jungle and Dark Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeTeak","UID0":"forestry.treeTeak","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2126,"preRequisites":[2125,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBalsa","UID0":"forestry.treeBalsa","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarge","UID0":"forestry.heightLarge","Slot":2},{"UID1":"forestry.saplingsHigh","UID0":"forestry.saplingsHigh","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Balsa","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Balsa has some pretty wood. Breed it by mating Teak and Acacia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBalsa","UID0":"forestry.treeBalsa","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2127,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.beech","UID0":"extratrees.species.beech","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightAverage","UID0":"forestry.heightAverage","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.beechnut","UID0":"extratrees.fruit.beechnut","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Common Beech","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Common Beech gives you access to the Faster maturity attribute. Breed them from Silver Birch and Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.beech","UID0":"extratrees.species.beech","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2128,"preRequisites":[2124,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCherry","UID0":"forestry.treeCherry","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmaller","UID0":"forestry.heightSmaller","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"forestry.fruitCherry","UID0":"forestry.fruitCherry","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hill Cherry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hill Cherry is a key tree for breeding purposes. Breed it by mating Silver Lime with Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCherry","UID0":"forestry.treeCherry","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2129,"preRequisites":[2123,2128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeWalnut","UID0":"forestry.treeWalnut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightAverage","UID0":"forestry.heightAverage","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitWalnut","UID0":"forestry.fruitWalnut","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i2d","UID0":"forestry.i2d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Common Walnut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Common Walnut is a mediocre choice for a seedoil tree, only producing 54L per nut. Breed it by mating Hill Cherry with Silver Lime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeWalnut","UID0":"forestry.treeWalnut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2130,"preRequisites":[2129,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.butternut","UID0":"extratrees.species.butternut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmaller","UID0":"forestry.heightSmaller","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.butternut","UID0":"extratrees.fruit.butternut","Slot":4},{"UID1":"forestry.yieldLow","UID0":"forestry.yieldLow","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i2d","UID0":"forestry.i2d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Butternut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Butternut tree is a pretty good seedoil producer at 180L per nut. Breed it by mating Hill Cherry with Common Walnut.\n\nIt's attributes aren't that great, but with a little crossbreeding you can get that 2x2 giant with fast production. For optimal fruit production speed, try breeding Fruity bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.butternut","UID0":"extratrees.species.butternut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2131,"preRequisites":[2123,2128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitLemon","UID0":"forestry.fruitLemon","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lemon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lemon trees are great for maximum fruit juice production. Breed it by mating Hill Cherry with Silver Lime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2132,"preRequisites":[2131,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treePlum","UID0":"forestry.treePlum","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitPlum","UID0":"forestry.fruitPlum","Slot":4},{"UID1":"forestry.yieldHigh","UID0":"forestry.yieldHigh","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Plum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Plum is a great multipurpose tree. It has optimal yield and its fruit produces mulch with the highest chance. It also has decent sappiness for biomass production. Breed it by mating Hill Cherry with Lemon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treePlum","UID0":"forestry.treePlum","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2133,"preRequisites":[2126,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcacia","UID0":"forestry.treeAcacia","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeDesert","UID0":"forestry.plantTypeDesert","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Desert Acacia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Desert Acacia. Another step on the road. Breed it by mating Teak with Balsa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcacia","UID0":"forestry.treeAcacia","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2134,"preRequisites":[2133,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCocobolo","UID0":"forestry.treeCocobolo","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLargest","UID0":"forestry.heightLargest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Cocobolo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cocobolo is a nice tall tree, perfect for mating into your Plum or Butternut to maximize their yield. Breed it by mating Desert Acacia with Dark Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCocobolo","UID0":"forestry.treeCocobolo","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2135,"preRequisites":[2123,2133],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeMahoe","UID0":"forestry.treeMahoe","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessHigh","UID0":"forestry.sappinessHigh","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationSlowest","UID0":"forestry.maturationSlowest","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blue Mahoe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Blue Mahoe has the most sappiness of any tree. It will vastly increase the efficiency of your biomass production with Fermenters. Breed it by mating Balsa with Desert Acacia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeMahoe","UID0":"forestry.treeMahoe","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2136,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockEnergyAcceptor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Energy Acceptor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Energy Acceptor is an alternative place to inject energy into your AE2 network. Generally, you want to inject energy at the controller because if it cannot see an EA within the first 8 parts, the network will not form anyways.\n\nYou can form a \"dumb\" network with just an EA, but for real capability, you'll want a Controller."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockEnergyAcceptor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2137,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockController","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME Controller","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The heart of your ME network. Inject energy into here as well to power your network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockController","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2138,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32402,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Making Sense of Spaghetti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody likes an untidy base. You can craft a spray can and fill it with Chemical Dye made from sulfuric acid to color coordinate your carpets, cables, wires, and machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32402,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32432,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32452,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32438,"OreDict":""}]}]},{"questID":2139,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":53}},"Damage":53,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oink!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the Pig backpack is useless on its own, it can be turned into a pretty powerful tool with the right...motivation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":53}},"Damage":53,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:bbqpulledporkItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2140,"preRequisites":[495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Diamond","MaxDamage":128000,"SecondaryMaterial":"Wood","Damage":24770}},"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA Fool Fit for a King","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Only the craziest fool would use diamonds to make a tool! Or is it crazy like a fox?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Diamond","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29500,"OreDict":""}]}]},{"questID":2141,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWelcome to the Church of Benzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you made it to MV using steam, you're probably wondering how to survive going further. One option is to switch to Light Fuel, discussed in LV. Another option is to use Benzene. Benzene is made from Wood Tar. There are a couple of pathways for that. Both start with logs from trees. \n\nOne path is to use Coke ovens or Advanced Coke Ovens to make charcoal, and fluid-extract Wood Tar from it (use LV fluid extractors for maximum EU efficiency). Then distill the Wood Tar to make Benzene. This method produces no pollution.\n\nThe second path is to use the Pyrolyze Oven multiblock and Nitrogen gas to extract Wood Tar and Charcoal. Fluid Extract the Charcoal for addtional Wood Tar. Then proceed as above. This method will create pollution from the Pyrolyze, but will provide more Benzene per log.\n\nExcess wood tar can also be turned into Toluene, a key ingredient for explosives that you will need later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30686,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2142,"preRequisites":[91,576],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:autoWorkbenchBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAutomated Crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Auto Workbench is a simple automated crafting system. You select the recipe in the grid, and place components in the inventory. They will slowly be converted into the crafted item. While not fast, it does support automation - only items acceptable to the recipe is allowed in the inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BuildCraft|Factory:autoWorkbenchBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":2143,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"BiblioCraft:BiblioLamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChoices, choices","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need a map on fuel choices? Well, we don't have that but we have suggestions. You can run Steam from burning up to EV, but beyond MV it gets pretty painful. \n\nIn LV you can start refining oil for either Light Fuel or Refinery Gas, which will be good for you to EV. \n\nOnce you hit MV you can switch from Steam to renewable Benzene from your logs if you decided to hold out. Other renewable alternatives are Fishoil or Seedoil based Biodiesel. Seedoil can be sourced from Pam's peanuts, IC2 Rape crop or Forestry tree nuts.\n\nAlso at MV you can upgrade your Light Fuel with Heavy Fuel to get Diesel.\n\nWhen you reach HV turn Diesel or Biodiesel into Cetane Boosted Diesel.\n\nAfter reaching the Moon, Wind and Water Kinetics are available.\n\nEV introduces the Large Gas Turbine and Large Combustion Engine, along with granting access to Nukes.\n\nFor low usage operations, or dedicated players willing to setup automation systems, you can begin using Solar Panels at MV."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2144,"preRequisites":[940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDon't put a finger in that socket","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to pass multiple amps through your cleanroom walls, use a one-way Diode. Also handy to limit power when branching off a main power line to trunk lines that normally will not use as many amps, but you want to prevent catching fire while filling buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2037,"OreDict":""}]}]},{"questID":2145,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ArcaneDoorKey","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lE_TOO_MANY_KEYS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ERROR: Too many keys to fit a 104 key keyboard. You will need to redefine your keymap so that you can use things effectively. Here is a list of keys you should deconflict.\n\nAdventure Backpacks\nB - Inventory\nV - Toggle\nBackpacks\nG - Open Backpack (sneak-G to wear/remove backpack and set filtering)\nDark Steel Armor\nApostrophe - Night Vision\nGameplay\nR - Draw Weapons\nZ - Special (cycle arrows on M&B quiver)\nNONE - Drop Item (Who wants to throw a backpack into lava?)\nIC2\nC - Side Invetory Key\nJourneymap\nHome - Make Waypoint\nJ - Open Map\n= - Zoom In (works on minimap too)\n- - Zoom Out (same)\nMisc\nH - Toggle Hover Harness\nF - Toggle Wand Focus\nTC Node Tracker\nI - Node List (must be scanned, goggles allow compass)\nX - Zoom key (handy for checking on distant ores on a mountain)\nTinker's Construct\nDelete - Traveller's Belt Swap Hotbar"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2146,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BRRRRAAAAAAAIIIIIIINNNNNNNSSSSS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Automagy is a little subtle about what the \"smort\" mage needs to do next. Make some crystalline brains and scan them to unlock the next stage. You'll want to use the zombie brains you've been collecting from dangerous Furious zombies found at Eerie nodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemZombieBrain","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":3,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":4,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":3,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":4,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2147,"preRequisites":[2146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:avaricePearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gimme gimme gimme","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Avarice Pearl is the next object Automagy requires you to interact with in order to unlock the next section. Make an Avarice Pearl , throw some stuff on the ground, and throw Avarice Pearls at them by right-clicking quickly over and over to get a Shathered (ha ha) Pearl to unlock a few more research items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:avaricePearl","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Automagy:horizontal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2148,"preRequisites":[1677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§k§n§r§b§lEngraved Lapotrons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"IV tier batteries require a large investment. First, you will need to laser engrave 8 Lapotrons. Make sure to do this in a cleanroom.\n\n§4They're also used for some advanced AE2 chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":8,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32714,"OreDict":""}]}]},{"questID":2149,"preRequisites":[2148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32597,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lLapotronic Energy Orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Lapotronic Energy Orb is the IV tier battery item. It can store 100M EU. Don't charge it until you have verified it for the quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32051,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32597,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32103,"OreDict":""}]}]},{"questID":2150,"preRequisites":[2149],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AFSU:AFSU","Count":1,"tag":{"energy":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOne BILLION EU","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want a stationary battery, you can make an AFSU capable of storing up to 1 billion EU and charging items. You can pick it up with a wrench, but you'll lose a percentage of the stored EU. Make sure you right-click, not left-click. Left-clicking will cause it to lose all stored EU.\n\nAs an alternative, if you can afford them, try the GT++ Energy Buffers. They are more expensive and cannot charge items, but store more, don't lose any EU, and can be configured from 1-16A. See the GT++ tab for details."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AFSU:ALC","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AFSU:AFSU","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}]}]},{"questID":2151,"preRequisites":[29],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8538,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Can't spell Lignite without Ignite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Truly the fuel of the gods!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:coal","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemDust","Count":64,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":538,"OreDict":""}]}]},{"questID":2152,"preRequisites":[29],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Who would use this garbage??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Truly the fuel of idiots!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":8538,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2538,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":65,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:coal_ore","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2153,"preRequisites":[2155,2154,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fruit","UID0":"extrabees.species.fruit","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sugar","UID0":"extrabees.flower.sugar","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.bonemeal_fruit","UID0":"extrabees.effect.bonemeal_fruit","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fruity bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fruity bees will make your Forestry trees ripen their fruit faster. Breed them using a Sweetened and Thriving."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fruit","UID0":"extrabees.species.fruit"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2154,"preRequisites":[2156,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.sweet","UID0":"extrabees.species.sweet","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sugar","UID0":"extrabees.flower.sugar","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sweetened","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sweetened bees can make you sugar. Breed them from Valiant and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.sweet","UID0":"extrabees.species.sweet"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2155,"preRequisites":[2157,2158,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.thriving","UID0":"extrabees.species.thriving","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.leaves","UID0":"extrabees.flower.leaves","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thriving","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thriving bees don't have an effect, but are a necessary step for Fruity. Breed them from Growing and Unweary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.thriving","UID0":"extrabees.species.thriving"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2156,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDiligent","UID0":"forestry.speciesDiligent","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Diligent","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diligent bees are a core breeding stock bee. Breed them from Common and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDiligent","UID0":"forestry.speciesDiligent"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2157,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesUnweary","UID0":"forestry.speciesUnweary","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Unweary","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unweary bees are key to a couple of breeding lines. Breed them with Diligent and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesUnweary","UID0":"forestry.speciesUnweary"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2158,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.growing","UID0":"extrabees.species.growing","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.leaves","UID0":"extrabees.flower.leaves","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Growing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Growing bees are the start of the Fruity specific breeding tree. Breed them from Forest and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.growing","UID0":"extrabees.species.growing"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2159,"preRequisites":[405,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bees Template - change to OR when copying, back to AND to hide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Get the princess bee and reward bag in NEI first. \nDo Advanced and set the icon to the bee.\nDo Task, and select the stone, and replace it with the princess.\nBefore closing, select the ... next to the bee name and press Raw NBT\nGo into Tag, Genome, Chromosomes. The first one is the name and must stay. \nGo inside there and delete the first entry, keep both of the species so players\nmust have purebreeds.\nDelete the rest of the chromosomes.\nDelete the rest of the entries for Genome.\nRemove the Infinity unlock requirement."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2160,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"CarpentersBlocks:blockCarpentersBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carpenter's Blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yet another custom block system! Carpenter's blocks are crafted blank and placed in-world, and then plain block textures applied to them. The blocks must not be Tile Entities, so Botany blocks don't work correctly with them, but GT Stones like Red Granite, and any colored clay or vanilla glass block will work. Some Chisel glass types will work, and Ztones blocks and Tinted Glass also work.\n\nThe Garage Door requires a block at the top to hang \"down\" from, but can pretty much be any length. A redstone signal on any block next to the Garage Door blocks will open or close the door. The open/close will propagate across multiple vertical doors, so you can setup non-square doors. Sneaking and right-clicking with an empty hand will change the door's polarity.\n\nThe pressure plates are player-only activation, making them great for doors into your base.\n\nThe hatches must be clicked on the side of a block to place. They can be handy for protecting you from crucible...byproducts.\n \nThere is a lot more block shapes possible, check NEI for \"Carpenter's\" to see the options.\n\nThe Chisel allows you to chisel blocks while attached to a Carpenter's block.\n\nThe Hammer allows various functions.\n\nHammer on door - changes door shape type\nSneak Hammer on door - Changes from iron to wooden behavior\nSneak Hammer on lever - Changes polarity (which direction is on/off)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersButton","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersLever","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersPressurePlate","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersGarageDoor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"CarpentersBlocks:itemCarpentersHammer","Count":1,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:itemCarpentersChisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2161,"preRequisites":[70],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:warningSign","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSafety first","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For those new to GregTech, here are some tips and warnings about electricity. \n\nMachines don't like being out in the rain, and will start fires nearby. Fires next to a machine have a random chance of an explosion. Also, sending too high voltage to a machine will cause a near-instant explosion.\n\nSending too high a voltage or too many amps down a cable will cause the cable to burn up and start fires, which may then cause machine explosions. Make sure the number of amps provided by generators and buffers to a wire does not exceed the amps it is capable of carrying.\n\nA generator that supplys 1A can possibly feed multiple machines, if their recipes require less than full voltage. For example, macerators doing ore only need 2 EU/t, so you could run 4 or 5 off of a single 1A generator, as long as the wires aren't too long. But be careful! Sometimes a recipe needs a lot more EU than you expect, like a macerator sand -> quartz dust recipe.\n\nA single block machine starved of EU will restart progress but not lose the recipe items. A multiblock machine will lose the items."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemHatTinFoil","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2162,"preRequisites":[1788,2163],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCopper","UID0":"gregtech.bee.speciesCopper","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Copper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Copper bee is the first of the metal lines. There are too many metal breeding lines to cover here, but by now you should be able to use NEI to figure out how to breed more bee types. Copper bees require a copper block beneath the bee housing. Breed them from Majestic and Clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCopper","UID0":"gregtech.bee.speciesCopper"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2163,"preRequisites":[1788,2164],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Clay bee","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To breed a Clay bee you must put a Clay block beneath the housing. Clay bees are the bedrock of many important bee lines. Breed them from Industrious and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2164,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesIndustrious","UID0":"forestry.speciesIndustrious","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Industrious","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Industrious bees produce pollen clusters, a key ingredient to the Alveary. They're also used for breeding many other bees. Their pollination speed is Fast, better than most bees. Breed them from Diligent and Unweary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesIndustrious","UID0":"forestry.speciesIndustrious"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2165,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSlimeball","UID0":"gregtech.bee.speciesSlimeball","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Slimeball","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slimeballs aren't super useful, but you can easily breed this bee to make them. It's a necessary step on the way to Oil though. You will need a Congealed Slime Block beneath the bee housing. Breed them from Clay and Marshy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSlimeball","UID0":"gregtech.bee.speciesSlimeball"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2166,"preRequisites":[1788,2165],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesStickyresin","UID0":"gregtech.bee.speciesStickyresin","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Stickyresin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Never having to use a treetap again? Sign me up! You'll need to put a Rubber Wood log beneath the bee housing. Breed them from Slimeball and Peat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesStickyresin","UID0":"gregtech.bee.speciesStickyresin"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2167,"preRequisites":[1788,2168,2166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOil","UID0":"gregtech.bee.speciesOil","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, Black Gold. The Oil bee, with proper...encouragement...can take care of all your power and chemical needs for quite some time. An alternate bee, Distilled, provides slightly more oil but has a longer breeding chain. It is below the Magical bees. Breed them from Coal and Stickyresin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOil","UID0":"gregtech.bee.speciesOil"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2168,"preRequisites":[1788,2169],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCoal","UID0":"gregtech.bee.speciesCoal","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectCreeper","UID0":"forestry.effectCreeper","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah yes, Coal is King indeed. A great bee, giving you Coal to use to power your industry. Will require a Coal Block under your bee housing. This bee will also have the first really dangerous effect - it will apply a creeper explosion to you if you are not wearing your Apiarist suit. Breed them from Peat and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCoal","UID0":"gregtech.bee.speciesCoal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2169,"preRequisites":[1788,2170],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPeat","UID0":"gregtech.bee.speciesPeat","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Peat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Peat from these bees can be used in furnaces and boilers. Free fuel is free, right? Breed them from Rural and Clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPeat","UID0":"gregtech.bee.speciesPeat"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2170,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesRural","UID0":"forestry.speciesRural","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rural","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rural bees like to live out in the country - you'll have to relocate to a Plains-type biome for these. Breed them from Diligent and Meadows."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesRural","UID0":"forestry.speciesRural"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2171,"preRequisites":[1788,2155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.blooming","UID0":"extrabees.species.blooming","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sapling","UID0":"extrabees.flower.sapling","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.bonemeal_sapling","UID0":"extrabees.effect.bonemeal_sapling","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blooming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Blooming bee will bonemeal nearby saplings. This can definitely help your log and sapling production rate. They also provide the fastest pollination. Breed them from Industrious and Thriving."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.blooming","UID0":"extrabees.species.blooming"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2172,"preRequisites":[1788,2173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesDiamond","UID0":"gregtech.bee.speciesDiamond","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Diamond","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah finally, a girl..I mean Queen's best friend. Will require a block of Diamond. Breed from Certus and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesDiamond","UID0":"gregtech.bee.speciesDiamond"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2173,"preRequisites":[1788,2174,2175],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCertus","UID0":"gregtech.bee.speciesCertus","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Certus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Certus Quartz bee. Hmm, does it have any breeding requirements? I can't see to remember. Maybe try a block of Certus Quartz? Breed it from Lapis and Hermitic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCertus","UID0":"gregtech.bee.speciesCertus"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2174,"preRequisites":[1788,2176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLapis","UID0":"gregtech.bee.speciesLapis","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lapis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a bee with some real promise. The Lapis bee will require a block of lapis to breed. Breed them from Demonic and Imperial."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLapis","UID0":"gregtech.bee.speciesLapis"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2175,"preRequisites":[1788,2179],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHermitic","UID0":"forestry.speciesHermitic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectRepulsion","UID0":"forestry.effectRepulsion","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hermitic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hermitic bees have the same no-entities requirement as Secluded, but they solve that problem themselves. They are so repugnant they repel mobs near them. Breed them from Secluded and Monastic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHermitic","UID0":"forestry.speciesHermitic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2176,"preRequisites":[1788,2177,2178],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDemonic","UID0":"forestry.speciesDemonic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Demonic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better be careful with this one! It will set you on fire. In addition to combs, this bee can produce Glowstone Dust. It will require Nether to breed. Breed them from Sinister and Fiendish."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDemonic","UID0":"forestry.speciesDemonic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2177,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSinister","UID0":"forestry.speciesSinister","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sinister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sinister bees will hurt nearby mobs and players. Make sure to wear your suit. They will require breeding in the Nether. Breed them from Modest and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSinister","UID0":"forestry.speciesSinister"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2178,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFiendish","UID0":"forestry.speciesFiendish","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fiendish","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like Sinister, Fiendish requires the Nether and a protective bee suit. Breed them from Sinister and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFiendish","UID0":"forestry.speciesFiendish"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2179,"preRequisites":[1788,2180,2185],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSecluded","UID0":"forestry.speciesSecluded","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Secluded","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Secluded bees are real loners. There must not be any entities within their territory for them to produce their combs. The Mellow combs can produce Nether quartz. Breed them from Monastic and Austere."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSecluded","UID0":"forestry.speciesSecluded"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2180,"preRequisites":[1788,2181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAustere","UID0":"forestry.speciesAustere","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectCreeper","UID0":"forestry.effectCreeper","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Austere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another bee that requires an attentive beekeeper. Without an Apiarist suit, this bee will inflict creeper explosions on you. Watch you. It will require a hot or hellish biome with Arid humidity. Breed them from Modest and Frugal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAustere","UID0":"forestry.speciesAustere"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2181,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFrugal","UID0":"forestry.speciesFrugal","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Frugal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Frugal bee doesn't have much direct use, but is part of many breeding lines. It will require a hot or hellish biome and arid humidity. Breed them from Modest and Sinister."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFrugal","UID0":"forestry.speciesFrugal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2182,"preRequisites":[1788,2183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstonealloy","UID0":"gregtech.bee.speciesRedstonealloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Redstone Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Obviously, a block of Redstone Alloy is required, right? Breed them from Red Alloy and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstonealloy","UID0":"gregtech.bee.speciesRedstonealloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2183,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedalloy","UID0":"gregtech.bee.speciesRedalloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Red Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Red Alloy princess will require a block of Red Alloy. Breed them from Redstone and Copper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedalloy","UID0":"gregtech.bee.speciesRedalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2184,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstone","UID0":"gregtech.bee.speciesRedstone","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Redstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone princess will require a block of Redstone. Breed them from Industrious and Demonic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstone","UID0":"gregtech.bee.speciesRedstone"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2185,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMonastic","UID0":"forestry.speciesMonastic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Monastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Monastic bees aren't found in hives or bred. Instead you will need to find a Beekeeper villager and trade with them for it. There are various ways to make more villagers, so do some research. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMonastic","UID0":"forestry.speciesMonastic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2186,"preRequisites":[1788,2188,2187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesVibrantalloy","UID0":"gregtech.bee.speciesVibrantalloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vibrant Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally. It was a long, hazardous road, but you can now get Vibrant Alloy directly from a bee. Great job. You'll need a Block of Vibrant Alloy. Breed them from Energetic Alloy and Phantasmal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesVibrantalloy","UID0":"gregtech.bee.speciesVibrantalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2187,"preRequisites":[1788,2182],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergeticalloy","UID0":"gregtech.bee.speciesEnergeticalloy","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Energetic Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic Alloy will require a block of Energetic Alloy, of course. Breed them from Redstone Alloy and Demonic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergeticalloy","UID0":"gregtech.bee.speciesEnergeticalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2188,"preRequisites":[1788,2189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesPhantasmal","UID0":"forestry.speciesPhantasmal","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectResurrection","UID0":"forestry.effectResurrection","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Phantasmal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Phantasmal bees are similar to Spectral, except they cause the other drops to reanimate, like ghasts, spiders, creepers, endermen, or even Ender Dragons if their drops are lying around. Breed them from Spectral and Ender."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesPhantasmal","UID0":"forestry.speciesPhantasmal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2189,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSpectral","UID0":"forestry.speciesSpectral","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectReanimation","UID0":"forestry.effectReanimation","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spectral","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spectral bees will require Ender bees to breed. This will test the ability of even the toughest beekeeper - don't forget your apiarist suit. To work in a bee housing, there must be a Dragon Egg nearby. Don't drop any bones, blazerods or rotten meat! This bee will cause those to come back to life! Perhaps you can find a use for this ability. Breed them from Ender and Hermitic. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSpectral","UID0":"forestry.speciesSpectral"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2190,"preRequisites":[1788,2184,2174],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFluix","UID0":"gregtech.bee.speciesFluix","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fluix","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you go deep into AE2, you'll want cheap sources of Fluix from these bees. Breeding will require a block of Fluix. Breed them from Lapis and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFluix","UID0":"gregtech.bee.speciesFluix"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2191,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRuby","UID0":"gregtech.bee.speciesRuby","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ruby","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For early Chrome, a Ruby bee is a great source. It will require a block of Ruby. Breed them from Redstone and Diamond."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRuby","UID0":"gregtech.bee.speciesRuby"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2192,"preRequisites":[1788,2163],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTin","UID0":"gregtech.bee.speciesTin","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Tin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tin is a great early bee to get, saving your time looking for Cassiterite Sand. You'll need a Tin block. Breed them from Clay and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTin","UID0":"gregtech.bee.speciesTin"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2193,"preRequisites":[1788,2162,2192],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesIron","UID0":"gregtech.bee.speciesIron","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron bees as a resource isn't that big a deal, so much stuff makes iron anyways, but they are a key breeding species. They will need an Iron block. Breed them from Copper and Tin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesIron","UID0":"gregtech.bee.speciesIron"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2194,"preRequisites":[1788,2162,2193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesNickel","UID0":"gregtech.bee.speciesNickel","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Nickel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nickel bees provide a pretty useful resource. You'll need a block of Nickel. Breed them from Iron and Copper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesNickel","UID0":"gregtech.bee.speciesNickel"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2195,"preRequisites":[1788,2193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesZinc","UID0":"gregtech.bee.speciesZinc","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Zinc","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Zinc makes great early game item pipes when mixed into brass. Also, these bees have a small change of producing Gallium combs, which is very useful for players needing to make circuits or SMD devices. These bees will require a Zinc block. Breed them from Tin and Iron."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesZinc","UID0":"gregtech.bee.speciesZinc"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2196,"preRequisites":[1788,2168,2162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLead","UID0":"gregtech.bee.speciesLead","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lead","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lead will be necessary in large quantities once you start making nuclear reactors. You'll need a block of Lead for these. Breed them from Copper and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLead","UID0":"gregtech.bee.speciesLead"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2197,"preRequisites":[1788,2196],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSilver","UID0":"gregtech.bee.speciesSilver","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Silver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silver is key metal at HV and up with the amount of Electrum you will need. Requires a block of Silver. Breed them from Lead and Tin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSilver","UID0":"gregtech.bee.speciesSilver"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2198,"preRequisites":[1788,2194,2195],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAluminium","UID0":"gregtech.bee.speciesAluminium","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aluminium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aluminium isn't necessary until MV, but when you want it, you'll want lots. Requires block of Aluminium. Breed them from Nickel and Zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAluminium","UID0":"gregtech.bee.speciesAluminium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2199,"preRequisites":[1788,2173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOlivine","UID0":"gregtech.bee.speciesOlivine","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Olivine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An otherwise mostly useless bee, Olivine is required for breeding better bees. I guess if you need Magnesium? Breed them from Ender and Certus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOlivine","UID0":"gregtech.bee.speciesOlivine"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2200,"preRequisites":[1788,2199,2172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEmerald","UID0":"gregtech.bee.speciesEmerald","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Emerald","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah yes, a very useful bee. Emeralds are used for many upgrades, and trading with villagers. Will require a block of Emerald. Breed them from Olivine and Diamond."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEmerald","UID0":"gregtech.bee.speciesEmerald"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2201,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTitanium","UID0":"gregtech.bee.speciesTitanium","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Titanium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Titanium from bees will make getting those LCRs and distillation towers a breeze. Hey, I rhymed! You'll need a block of Titanium for this bee. Breed them from Aluminium and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTitanium","UID0":"gregtech.bee.speciesTitanium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2202,"preRequisites":[1788,2201],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesChrome","UID0":"gregtech.bee.speciesChrome","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Chrome","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chrome, a necessary ingredient for Stainless Steel. Better to get it directly instead of having to deal with Rubies or Garnets. This bee will require a block of Chrome to breed. Breed them from Titanium and Ruby."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesChrome","UID0":"gregtech.bee.speciesChrome"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2203,"preRequisites":[1788,2202,2172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlatinum","UID0":"gregtech.bee.speciesPlatinum","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Platinum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Platinum. Precious metal for the ages. You'll need a block of Platinum obviously. Breed them from Diamond and Chrome."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlatinum","UID0":"gregtech.bee.speciesPlatinum"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2204,"preRequisites":[1788,2206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesUranium","UID0":"gregtech.bee.speciesUranium","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Uranium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All that hatred had a purpose - to create this bee, capable of producing enormous power. As before, keep away from everything. This bee will require a block of Uranium. Breed them from Avenging and Platinum."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesUranium","UID0":"gregtech.bee.speciesUranium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2205,"preRequisites":[1788,2204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlutonium","UID0":"gregtech.bee.speciesPlutonium","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Plutonium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A metal that represents the epitome of technology. Never existing in the universe before man. Destroying everything around it. This bee will require a block of Plutonium. Breed them from Uranium and Emerald."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlutonium","UID0":"gregtech.bee.speciesPlutonium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2206,"preRequisites":[1788,2208,2207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAvenging","UID0":"forestry.speciesAvenging","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Avenging","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hatred distilled into its most violent form. Keep away from everything. Breed them from Vengeful and Vindictive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAvenging","UID0":"forestry.speciesAvenging"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2207,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVengeful","UID0":"forestry.speciesVengeful","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vengeful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hatred. Of all things, living and solid. Keep bee housing away from anything valuable, or even not valuable. Breed them from Monastic and Vindictive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVengeful","UID0":"forestry.speciesVengeful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2208,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVindictive","UID0":"forestry.speciesVindictive","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vindictive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Beware. These bees not only hate everything, they even hate blocks. Put their bee housing far away from everything. Breed them from Demonic and Monastic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVindictive","UID0":"forestry.speciesVindictive"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2209,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moron's Guide to Breeding Better Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First off, don't be scared by the massive amounts of bees you see here once you unlock the breeding trees. There's even more that aren't included and you'll need NEI to find!\n\nHa ha, just kidding - don't panic! Once you unlock the bee breeding lines, look around and pick and choose which bees really interest you. The way the breeding is done is mostly left to right, and top down. Some of the lines at the bottom might look simple, but they will require bees further up to complete first. Many of the basic bees have multiple breeding options, only one is shown here.\n\nBees have two sets of traits, one active that has effects on how the bee lives, and one Inactive but can be used for breeding. When getting newly bred princesses and drones, check both sets in case you got the target bee. You can breed the bees with inactive traits to try and make them active in later crosses. You can't see the passive traits using a Field Kit, you'll need a Beealyzer. For lots of bees, you can scan them first using a GT scanner, but you'll still need a Beealyzer to see passive traits.\n\nWhen breeding bees, a good idea is to settle upon a master template bee. A bee that has little or no crossbreeding potential, but has all the traits you prefer - short life, nocturnal, cavedwelling, rain tolerant, humidity, temperature, high fertility, etc. Once you have that bee, breed a bunch of pure princesses with those traits as both active and inactive. These will be your breeding stock.\n\nWhen you are trying for a new bee, what you are wanting is a drone - this way you can use your \"breeding stock\" princess for easy breeding, but the drone to get the new species without the annoying effects or limitations. Poor crossed princesses can be returned to normal by crossing with breeding stock drones, or just thrown out if they now have annoying restrictions. Make sure you keep the trait and species you want, and slowly merge the good traits from your breeding stock. You don't have to do this part in an Apiary, you can use a Bee House to swap around traits. Ignoble bees are good for this, since they're mostly disposable - they have a chance to die after 100 breeding cycles - frames can let them live longer. Once you solidify your species, create a pool of drones. You can use those to convert pristine princesses to the new species. Pristine princesses will not die. Rocky bees are a great source - all their princesses are always pristine.\n\nOnce you get a new species, it will replace all of one of the two sets of traits of the bee. For example when you get a Cultivated, either the Active or Inactive column will have all the default Cultivated traits. Mix it a few times and you'll eventually get purebred versions. Just watch out that you don't lose a key trait, like Fast Worker for Cultivated! All the quests will require purebred species. \n\nGenerally all traits can be bred into any bee species, including effects or flower preference. Species generally require their preferred biome to produce their special drops.\n\nAdvanced frames can provide useful boosts to mutation chances, or to lifespan reduction for faster breeding cycles. However excessive multipliers will increase genetic decay, giving a chance for that pristine princess to become ignoble!\n\nIt looks complex, because it is! But it also a lot of dangerous and useful fun!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2210,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDealing with Radiation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nuclear materials cause two types of radiation effects. One is a large number of standard debuffs. These can be removed the normal ways, with milk or terra wart or other methods that imitate them. \n\nThe other effect is a special Radiation unique debuff. This gets applied the longer you hold onto the radioactive item. Severely radioactive items can apply minutes of this deadly debuff. Regeneration might delay the inevitable death, but most regneration sources aren't fast enough or long enough to keep you alive. You can try using an Amulet of Remedium to get rid of the effects. You should have one from your Moon trip, if not you'll have to dive into Thaumcraft to make one."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2211,"preRequisites":[2209],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Bee Stats","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of basic bees that have good stats you will want to breed into your breeding stock.\n\nCave Dwelling - Rocky - This lets you put the bee housing underneath or inside. Handy for putting a chest on top for products.\n\nNocturnal - Rocky - This keeps your bees working all night long, and in the dark.\n\nRain Tolerant - Water - Keep producing even when it is raining.\n\nHigh Fertility - Wintry - For breeding purposes, you want the maximum number of drones produced."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2212,"preRequisites":[1788,2218,2217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesArcane","UID0":"magicbees.speciesArcane","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Arcane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanting drops from Arcane bees are used to create Aromatic Lumps for use in the Swarmer. It has a higher chance of success than normal Royal Jelly. These bees are the other bedrock of the Magic Bees branch. Breed them from Esoteric and Mysterious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesArcane","UID0":"magicbees.speciesArcane"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2213,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEldritch","UID0":"magicbees.speciesEldritch","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Eldritch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eldritch are the start of the magic bee family. Breed them from Mystical and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEldritch","UID0":"magicbees.speciesEldritch"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2214,"preRequisites":[1788,2215,2216],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSupernatural","UID0":"magicbees.speciesSupernatural","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Supernatural","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What have those two brothers gotten into now? The Supernatural bee is a keystone of the Magical branch of bees. Check NEI for details on the best lunar phase for breeding. Breed it from Charmed and Enchanted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSupernatural","UID0":"magicbees.speciesSupernatural"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2215,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEnchanted","UID0":"magicbees.speciesEnchanted","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Enchanted","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted is the next step in the progression. Breed them from Charmed and Eldritch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEnchanted","UID0":"magicbees.speciesEnchanted"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2216,"preRequisites":[1788,2213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesCharmed","UID0":"magicbees.speciesCharmed","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Charmed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The power of three! Charmed bees are your next step up the magic bee tree. Breed them from Eldritch and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesCharmed","UID0":"magicbees.speciesCharmed"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2217,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesMysterious","UID0":"magicbees.speciesMysterious","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Mysterious","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just your mysterious stranger... Breed them from Eldritch and Esoteric."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesMysterious","UID0":"magicbees.speciesMysterious"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2218,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEsoteric","UID0":"magicbees.speciesEsoteric","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Esoteric","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another basic Magic branch bee. Breed them from Eldritch and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEsoteric","UID0":"magicbees.speciesEsoteric"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2219,"preRequisites":[1788,2212,2214],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEthereal","UID0":"magicbees.speciesEthereal","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ethereal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ethereal bees are critical for all the magical aspect bees. Breed them from Arcane and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEthereal","UID0":"magicbees.speciesEthereal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2220,"preRequisites":[1788,2227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCWater","UID0":"magicbees.speciesTCWater","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"magicbees.effectCurative","UID0":"magicbees.effectCurative","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aqua","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aqua requires a Water Crystal Cluster. It will produce Water infused dust. Staying nearby will clear potion effects, like drinking a bucket of milk. Might be useful for the clever industrial engineer! Breed them from two Watery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCWater","UID0":"magicbees.speciesTCWater"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2221,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesFirey","UID0":"magicbees.speciesFirey","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Firey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Firey bees must be bred on top of Lava. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesFirey","UID0":"magicbees.speciesFirey"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2222,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEarthen","UID0":"magicbees.speciesEarthen","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Earthen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Earthen bees must be bred on top of Bricks. Breed them from Supernatural and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEarthen","UID0":"magicbees.speciesEarthen"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2223,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWindy","UID0":"magicbees.speciesWindy","Slot":0},{"UID1":"forestry.speedFaster","UID0":"forestry.speedFaster","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Windy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Windy bees must be bred on top of Oak leaves. Breed them using Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWindy","UID0":"magicbees.speciesWindy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2224,"preRequisites":[1788,2223],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCAir","UID0":"magicbees.speciesTCAir","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringMaximum","UID0":"forestry.floweringMaximum","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"magicbees.effectMoveSpeed","UID0":"magicbees.effectMoveSpeed","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For Aer bees to appear, you must put an Air Crystal Cluster beneath the bee housing. They will produce Aer infused dust for you. Being nearby will grant a Swiftness buff. Breed them from two Windy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCAir","UID0":"magicbees.speciesTCAir"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2225,"preRequisites":[1788,2222],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEarth","UID0":"magicbees.speciesTCEarth","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectDigSpeed","UID0":"magicbees.effectDigSpeed","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Solum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Solum bees require Earth Crystal Clusters. They can produce Earth infused dust. It will also give you a mining speed boost. Breed them from two Earthen."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEarth","UID0":"magicbees.speciesTCEarth"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2226,"preRequisites":[1788,2221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCFire","UID0":"magicbees.speciesTCFire","Slot":0},{"UID1":"forestry.speedFaster","UID0":"forestry.speedFaster","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceDown3","UID0":"forestry.toleranceDown3","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ignis bees require Fire Crystal Clusters beneath the bee housing. They will produce Fire infused dust. Watch out! They will set nearby entities on fire! Breed them from two Firey."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCFire","UID0":"magicbees.speciesTCFire"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2227,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWatery","UID0":"magicbees.speciesWatery","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersSnow","UID0":"forestry.flowersSnow","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Watery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watery bees must be bred over Water. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWatery","UID0":"magicbees.speciesWatery"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2228,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAware","UID0":"magicbees.speciesAware","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not much to say about this bee. Breed them from Ethereal and Attuned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAware","UID0":"magicbees.speciesAware"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2229,"preRequisites":[1788,2228],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpirit","UID0":"magicbees.speciesSpirit","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spirit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Spirit bee is the first bee to give you Soul Combs, necessary for Soulful Wax, used in many magical frames. Breed them from Ethereal and Aware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpirit","UID0":"magicbees.speciesSpirit"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2230,"preRequisites":[1788,2229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSoul","UID0":"magicbees.speciesSoul","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Soul","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Soul bee has the highest chance of making Soul Combs, 20 percent. Breed them from Aware and Spirit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSoul","UID0":"magicbees.speciesSoul","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2231,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCChaos","UID0":"magicbees.speciesTCChaos","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Chaotic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chaotic bees require an Entropic Crystal Cluster. They will produce Entropy Infused Dust. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCChaos","UID0":"magicbees.speciesTCChaos"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2232,"preRequisites":[1788,2219,2212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCOrder","UID0":"magicbees.speciesTCOrder","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ordered","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ordered bees require Ordered Crystal Clusters. They can produce Order Infused Dust. Breed them from Arcane and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCOrder","UID0":"magicbees.speciesTCOrder"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2233,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCVis","UID0":"magicbees.speciesTCVis","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vis bees lead to some of the most powerful bees in the whole pack. They require a node within 75m of the bee housing. Make sure the lunar phase matches the requirments. Breed them from Ethereal and Eldritch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCVis","UID0":"magicbees.speciesTCVis"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2234,"preRequisites":[1788,2233],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCRejuvenating","UID0":"magicbees.speciesTCRejuvenating","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectVisRecharge","UID0":"magicbees.effectVisRecharge","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rejuvenating","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rejuvenating bees must be bred within 25m of a node. They will slowly charge the nearest node. Breed them from Vis and Attuned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCRejuvenating","UID0":"magicbees.speciesTCRejuvenating"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2235,"preRequisites":[1788,2234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEmpowering","UID0":"magicbees.speciesTCEmpowering","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectNodeEmpower","UID0":"magicbees.effectNodeEmpower","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Empowering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Empowering bee will randomly add aspects to nearby nodes, allowing enormous power to build up. The best chance to breed them is during the Full moon. Breed them from Rejuvenating and Vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEmpowering","UID0":"magicbees.speciesTCEmpowering"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2236,"preRequisites":[1788,2237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesEdenic","UID0":"forestry.speciesEdenic","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectExploration","UID0":"forestry.effectExploration","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Edenic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Edenic bee has the remarkable effect of giving experience points to players nearby. Breed it from Exotic and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesEdenic","UID0":"forestry.speciesEdenic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2237,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesExotic","UID0":"forestry.speciesExotic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Exotic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watch out, just like its parent the Exotic bee will poison you. But it is also a source of silk wisps. Breed them from Austere and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesExotic","UID0":"forestry.speciesExotic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2238,"preRequisites":[1788,2236,2226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumdust","UID0":"gregtech.bee.speciesThaumiumdust","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectExploration","UID0":"forestry.effectExploration","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thaumium Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumium is pretty easy to make, but with this bee you can automate and get enormous quantities. It requires a block of Thaumium. Breed them from Edenic and Ignis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumdust","UID0":"gregtech.bee.speciesThaumiumdust"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2239,"preRequisites":[1788,2213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSkulking","UID0":"magicbees.speciesSkulking","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Skulking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Skulking bees are the core of the various mob bees. Check out the rest of the recipes in NEI, there are too many to show here. Breed them using Eldritch and Modest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSkulking","UID0":"magicbees.speciesSkulking"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2240,"preRequisites":[1788,2239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpidery","UID0":"magicbees.speciesSpidery","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"magicbees.effectSpidery","UID0":"magicbees.effectSpidery","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spidery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watch out, the effect from this bee will attract spiders. But it has one nice trait - a large working area. Perfect for breeding into your fast pollinators or for providing useful effects. Breed it from Skulking and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpidery","UID0":"magicbees.speciesSpidery"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2241,"preRequisites":[1788,2238,2220],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumshard","UID0":"gregtech.bee.speciesThaumiumshard","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersSnow","UID0":"forestry.flowersSnow","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectGlacial","UID0":"forestry.effectGlacial","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thaumic Shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Thaumic Shards bee has a chance of giving you any shard propolis. It will require a Magical Forest biome. Breed them from Thaumium Dust and Aqua."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumshard","UID0":"gregtech.bee.speciesThaumiumshard"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2242,"preRequisites":[1788,2241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSalismundus","UID0":"gregtech.bee.speciesSalismundus","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Salis Mundus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of all the effort it takes to make Salis Mundus? After hours of breeding you can now do magic trouble free with this bee making all the Salis Mundus you need. It requires a Magical Forest Biome. Breed them from Thaumic Shards and Thaumium Dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSalismundus","UID0":"gregtech.bee.speciesSalismundus"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2243,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHeroic","UID0":"forestry.speciesHeroic","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectHeroic","UID0":"forestry.effectHeroic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Heroic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This one takes a little luck. You'll have to find Steadfast bees in a dungeon chest. Their useful effect is causing damage to hostile mobs. Breed them from Steadfast and Valiant."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHeroic","UID0":"forestry.speciesHeroic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2244,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesNameless","UID0":"magicbees.speciesNameless","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Nameless","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oblivion bees can be purchased with coins, or found in the End. Nameless is required to get Draconic bees. Nameless are also where you can get Amnesiac Wax. Breed them from Oblivion and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesNameless","UID0":"magicbees.speciesNameless"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2245,"preRequisites":[1788,2244],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAbandoned","UID0":"magicbees.speciesAbandoned","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectRepulsion","UID0":"forestry.effectRepulsion","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Abandoned","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Abandoned are the next step up. Breed them from Oblivion and Nameless."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAbandoned","UID0":"magicbees.speciesAbandoned"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2246,"preRequisites":[1788,2245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesDraconic","UID0":"magicbees.speciesDraconic","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Draconic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Draconic bee is required in order to get the dusts needed to recreate the Dragon Egg using magic. It must be bred in the End. Breed them from Imperial and Abandoned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesDraconic","UID0":"magicbees.speciesDraconic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2247,"preRequisites":[1788,2246,2248],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSparkeling","UID0":"gregtech.bee.speciesSparkeling","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Wither","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wither bee will let you generate Wither skulls and small amounts of Nether star dust. It requires a block of Nether Star, and must be bred in the End. Breed them from Withering and Draconic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSparkeling","UID0":"gregtech.bee.speciesSparkeling"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2248,"preRequisites":[1788,2249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWithering","UID0":"magicbees.speciesWithering","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"magicbees.effectWithering","UID0":"magicbees.effectWithering","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Withering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Inflicts Withering all those who come near. Must be bred in the Nether. Chances are going to be low, so now would be the time to look for frames that increase mutation rates. Breed them from Demonic and Spiteful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWithering","UID0":"magicbees.speciesWithering"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2249,"preRequisites":[1788,2250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpiteful","UID0":"magicbees.speciesSpiteful","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spiteful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sheer disdain this bee shows you is awe inspiring. Must be bred in the Nether. Don't walk around it without proper protection, it seems to laugh when you think about that. Breed them from Hateful and Infernal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpiteful","UID0":"magicbees.speciesSpiteful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2250,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesHateful","UID0":"magicbees.speciesHateful","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hateful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can feel the waves of hate radiating out of her eyes. Don't even think about getting close without an Apiarist Suit. Must be bred in the Nether. Breed them from Eldritch and Infernal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesHateful","UID0":"magicbees.speciesHateful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2251,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.excited","UID0":"extrabees.species.excited","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.redstone","UID0":"extrabees.flower.redstone","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.lightning","UID0":"extrabees.effect.lightning","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Excited","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You might be thinking to yourself, huh this sure is an easy bee to give redstone....well, it also gives destructive lightning strikes. You might want to place them far from you. Or set them up in a Creeper spawner to make charged creepers for...experiments. Breed them from Valiant and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.excited","UID0":"extrabees.species.excited"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2252,"preRequisites":[1788,2251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.celebratory","UID0":"extrabees.species.celebratory","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.fireworks","UID0":"extrabees.effect.fireworks","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Celebratory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nThis fun bee doesn't have any useful products, but it does produce a fun effect - constant fireworks! You can breed the effect into other lines, and the color of the fireworks will match the bee. Make the bees require sky and you can disable the effects by covering them up with a piston. Great for a celebration! Breed them from Austere and Excited."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.celebratory","UID0":"extrabees.species.celebratory"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2253,"preRequisites":[1093],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12726,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lToo much Mercury?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a couple of hours..days..weeks..of processing redstone for Ruby you'll have a massive stockpile of Mercury and not know what to do with it. You can store it all in supertanks, but really, how much hypochlorous acid does one need? Instead you can build an Acid Generator and at least get a little power out of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12726,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2254,"preRequisites":[1788,2197],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesArsenic","UID0":"gregtech.bee.speciesArsenic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Arsenic Princess","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This deadly little princess will get you Arsenic, perfect for use in your circuits. Requires a Block of Arsenic. Breed them from Silver and Zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesArsenic","UID0":"gregtech.bee.speciesArsenic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2255,"preRequisites":[1513],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameGentle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keep calm and bee on","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gentle frame can help protect your bees from the damaging effects of high productivity or mutation rates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameGentle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2256,"preRequisites":[2123,2127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.brazilnut","UID0":"extratrees.species.brazilnut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarger","UID0":"forestry.heightLarger","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.brazilnut","UID0":"extratrees.fruit.brazilnut","Slot":4},{"UID1":"forestry.yieldLow","UID0":"forestry.yieldLow","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Brazil Nut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Brazil Nuts don't give you much in the way of important attributes. Breed them from Common Beech and Jungle."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.brazilnut","UID0":"extratrees.species.brazilnut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2257,"preRequisites":[2123,2126,2256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.coconut","UID0":"extratrees.species.coconut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarger","UID0":"forestry.heightLarger","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"extratrees.fruit.coconut","UID0":"extratrees.fruit.coconut","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFast","UID0":"forestry.maturationFast","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Coconut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Coconut is King for seedoil production - 300L per nut. Breed them from Brazil Nut and Balsa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.coconut","UID0":"extratrees.species.coconut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2258,"preRequisites":[1122,2164],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:miscResources","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Aromatic Lump","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aromatic Lumps are twice as effective as Royal Jelly in an Alveary Swarmer. You'll need Enchanting Drops from Arcane bees and Pollen Clusters from Industrious bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:miscResources","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2259,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:magnet","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite bats! Wait, what??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of the constant chirping from the thousands of bats drawn to your world-bending activities? Use this handy device to attract them to a central location where they can be...disposed. The Corporeal Attractor can be configured to attract or repel mobs, and the redstone strength applied divided by two determines the range.\n\nYou can use Soul Moulds to filter the mobs the Attractor draws in or pushes away. This gives you some idea for automating..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:magnet","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"ThaumicTinkerer:soulMould","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2260,"preRequisites":[1997],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricBootsTraveller","Count":1,"tag":{"charge":100000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better boots with a little pizzazz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These Electric Boots of the Traveller will give a 2 percent vis discount along with the benefits of the normal Boots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":9,"OreDict":""}]}]},{"questID":2261,"preRequisites":[2260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanoBootsTraveller","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walk all over you","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nanosuit boots will give the nanosuit benefits along with a massive speed boost, higher jump, and better vis discount. Great boots for the master magical engineer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanoBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2262,"preRequisites":[2261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumBootsTraveller","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walking across the stars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantum boots of the traveller, for when you really need to run as fast as the wind. Might cause you some problems standing still! "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2263,"preRequisites":[2121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialGrafter","Count":1,"tag":{"charge":375000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Industrial Grafter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're tired of constantly replacing branchcutters, this Industrial Grafter is rechargeable."}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2264,"preRequisites":[1603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Do you taste metal?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Metal oreberries are a great source of new seeds. You can breed some or buy some from the Coins shop. I need some Copper myself, so give me some berries please."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TConstruct:oreBerries","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Copper Oreberry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2265,"preRequisites":[2264],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8503,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Deep blue sea of sapphires","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sapphirum are pretty easy to get from Copper Oreberries. You'll need a block of Sapphire beneath them to get them to maturity. They are a good source of aluminium and oxygen in LV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Sapphirum","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2266,"preRequisites":[2265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8527,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Red touch yellow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Garnets are actually more valuable than Sapphires. They're an early source of Chrome and Manganese, which you'll need for HV machines. To reach maturity, you will need a block of Garnet beneath these crops. You can get Garnets from the HV macerator and Spessartine Ore, or you can use an Implosion Compressor to turn Garnet Sands into crystals to make blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Garnydinia","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2267,"preRequisites":[292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:TrunkSpawner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A travel companion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lonely? The Traveling Trunk is a simple companion, giving you some extra space. With upgrades (one per trunk) it can offer you some nice advantages. Like other golems, you can pick it up with the Golemancer's Bell. It's brain is pretty small though, so it can easily get stuck. You can order it to stay in one spot via the GUI. It will attempt to teleport to you, as long as the chunk is still loaded. It can also follow you into different dimensions.\n\nThey will heal slowly on their own, or faster if you right-click on them with any food, including rotten meat. Keep away from lava.\n\nGolem upgrade effects:\nAer: Moves faster\nEarth: 1 more row of item slots\nFire: Attacks hostile mobs, setting them on fire\nWater: Nearly invulnerable. In SMP, can only be opened or picked up by player who placed it.\nEntropy: Sucks in loose items nearby if it has room\nOrder: Can be picked up with its contents, and nested in other inventories. Don't be stupid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:TrunkSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2268,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:luggage","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who needs friends?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Luggage is better than a dumb old traveling trunk. It automatically picks up dropped items, saving you time while mining. It's near-invulnerable, including in lava. It will follow you like an eager puppy, to the ends of the earth - but you probably should pick her up before changing dimensions. A lightning strike can provide more room. Shift right-clicking will turn it back into an item without losing its contents. Look for her in the GTNH tab of the Thaumonomicon"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:luggage","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2269,"preRequisites":[1788,2270,2273],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.magenta","UID0":"gendustry.bee.magenta","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth3","UID0":"forestry.toleranceBoth3","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Magenta","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magenta bees are also Fastest production, but come with +- 3 Climate. Breed them from Pink and Blue."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.magenta","UID0":"gendustry.bee.magenta","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2270,"preRequisites":[1788,2271,2272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.pink","UID0":"gendustry.bee.pink","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth3","UID0":"forestry.toleranceBoth3","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Pink","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pink princesses provide pink dye. They also have Fastest production and +-3 Humidity. Breed them from Red and White."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.pink","UID0":"gendustry.bee.pink","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2271,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.white","UID0":"gendustry.bee.white","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"White","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"White bees provide white dye. Breed them from Forest and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.white","UID0":"gendustry.bee.white","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2272,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.red","UID0":"gendustry.bee.red","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Red","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dye bees obviously provide dyes, but some of them are also useful for their traits. There are many dye bees, these are just a sample. They can be useful for the hard to find dye colors from flowers. Breed Red from Common and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.red","UID0":"gendustry.bee.red","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2273,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.blue","UID0":"gendustry.bee.blue","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Blue princesses will provide a handy source of blue dye. Breed them from Forest and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.blue","UID0":"gendustry.bee.blue","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2274,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCBatty","UID0":"magicbees.speciesTCBatty","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"magicbees.effectBatty","UID0":"magicbees.effectBatty","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Batty","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Batty bees will spawn firebats. So prepare for battle. Their specialty is Gunpowder. Breed them from Skulking and Windy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCBatty","UID0":"magicbees.speciesTCBatty","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2275,"preRequisites":[1788,2274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesGhastly","UID0":"magicbees.speciesGhastly","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectGhastly","UID0":"magicbees.effectGhastly","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ghastly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ghastly bees will spawn Ghasts, so beeee careful. Their specialty is Ghast Tears. They only have 1 fertility so you want to make sure you breed the drones with your master template princess. Breed them from Batty and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesGhastly","UID0":"magicbees.speciesGhastly","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2276,"preRequisites":[1788,2275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSmouldering","UID0":"magicbees.speciesSmouldering","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectAblaze","UID0":"magicbees.effectAblaze","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Smouldering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smouldering drones will spawn blazes, and make Blaze Rods as their specialty. Breed the drones with your template princesses so you can prevent the harmful effects from destroying your base. Also, their Hellish temperature and Normal humidity requirements are interesting - use a Climate Acclimator or other methods to adjust the biome. Must be bred in the Nether. Breed them from Ghastly and Hateful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSmouldering","UID0":"magicbees.speciesSmouldering","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2277,"preRequisites":[1788,2278],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fuel","UID0":"extrabees.species.fuel","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Refined","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah, here it is. This bee has been known to power whole civilizations. Placed in a top tier bee housing like an Alveary or Industrial Apiary, with appropriate frames, it can produce oil faster than some wells. In addition, you will get small amounts of Diesel fuel as well! Breed them from Oily and Distilled."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fuel","UID0":"extrabees.species.fuel","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2278,"preRequisites":[1788,2279],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.distilled","UID0":"extrabees.species.distilled","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Distilled","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What's this? A step back you say! Yes, the Distilled bee doesn't make anything of use, but the potential is there. Breed them from Oily and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.distilled","UID0":"extrabees.species.distilled","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2279,"preRequisites":[1788,2280,2282],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.oil","UID0":"extrabees.species.oil","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Oily","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, the Oily bee! Its combs produce the most oil, but its output isn't that thrilling...yet. Breed them from Primeval and Ocean. As an alternative, you can breed them from Primeval and Frugal if you can't find an Ocean biome or used up all your Beekeeper coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.oil","UID0":"extrabees.species.oil","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2280,"preRequisites":[1788,2281],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.primeval","UID0":"extrabees.species.primeval","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Primeval","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Primeval. The next step. Breed them from Ancient and Secluded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.primeval","UID0":"extrabees.species.primeval","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2281,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ancient","UID0":"extrabees.species.ancient","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ancient","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ancient bees are the first step to the best oil bees in the game. Breed them from Diligent and Noble."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ancient","UID0":"extrabees.species.ancient","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2282,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ocean","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Ocean bee can be hard to breed since some servers use a worldgen that prevents ocean biomes from appearing. You might have luck trying in a Twilight Forest lake - you'll know you are in the right biome if you see Water Creepers! If you have trouble locating an appropriate spot, you can also purchase Ocean bees from the Coins tab. Breed them from Diligent and Water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2283,"preRequisites":[1788,2284,2280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.resin","UID0":"extrabees.species.resin","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Resinous","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well at least you can get a couple of Sticky Resin from this otherwise boring bee. Breed them from Miry and Primeval."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.resin","UID0":"extrabees.species.resin","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2284,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMiry","UID0":"forestry.speciesMiry","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersMushrooms","UID0":"forestry.flowersMushrooms","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Miry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Miry bees aren't too useful yet. They'll open up the Boggy branch for you. You'll need to find a biome with Warm/Damp to breed them. Use your Nature's Compass and Habitat Locator to find them. An easy one to find is Rainforest. Breed them from Marshy and Noble. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMiry","UID0":"forestry.speciesMiry","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2285,"preRequisites":[1788,2278,2283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.latex","UID0":"extrabees.species.latex","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Elastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally! A useful bee from the Boggy branch. The Elastic bee will actually produce rubber bars for you! No more smelly Sulfur! Breed them from Distilled and Resinous."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.latex","UID0":"extrabees.species.latex","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2286,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:masterRegistry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Master registry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The master beekeeper needs a master registry. Make sure you don't get any tears in your apiaries as you collect all the requirements!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Forestry:beeCombs","Count":64,"Damage":15,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":4,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":6,"OreDict":""},{"id":"MagicBees:comb","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Forestry:beeCombs","Count":64,"Damage":7,"OreDict":""},{"id":"MagicBees:comb","Count":64,"Damage":1,"OreDict":""},{"id":"ExtraBees:honeyComb","Count":64,"Damage":6,"OreDict":""},{"id":"Forestry:beeCombs","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"Forestry:royalJelly","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:masterRegistry","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2287,"preRequisites":[1788,2288],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAgrarian","UID0":"forestry.speciesAgrarian","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectFertile","UID0":"forestry.effectFertile","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Agrarian","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Agrarian bees are supposed to help crops nearby grow. The effect isn't really that noticeable, is it? You'll have to be in a Plains-like biome for these to appear. Breed them from Farmerly and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAgrarian","UID0":"forestry.speciesAgrarian","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2288,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFarmerly","UID0":"forestry.speciesFarmerly","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Farmerly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like most farmers, these bees seem to spend all their time complaining about the neighbors or the weather instead of actually doing much. They'll need a Plains-like biome. Breed them from Unweary and Rural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFarmerly","UID0":"forestry.speciesFarmerly","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2289,"preRequisites":[1788,2287,2274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSandwich","UID0":"gregtech.bee.speciesSandwich","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectFertile","UID0":"forestry.effectFertile","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sandwich","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"sudo make me a sandwich. Or a bee that makes sandwich parts anyways. Breed them from Batty and Agrarian."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSandwich","UID0":"gregtech.bee.speciesSandwich","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2290,"preRequisites":[1788,2291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFertilizer","UID0":"gregtech.bee.speciesFertilizer","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fertilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Fertilizer bee will make your crop empire purr. Or grow anyways. They are a good source of Fastest production and Faster pollination as well. Breed them from Apatite and Ash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFertilizer","UID0":"gregtech.bee.speciesFertilizer","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2291,"preRequisites":[1788,2292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesApatite","UID0":"gregtech.bee.speciesApatite","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Apatite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Apatite bee requires an Apatite Block beneath it to breed. Its Seedy comb will make seedoil as well. Breed them from Ash and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesApatite","UID0":"gregtech.bee.speciesApatite","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2292,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAsh","UID0":"gregtech.bee.speciesAsh","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ash","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A bee to make ashes? What insanity is this? At least you can get Large territory from them. You'll need to pay the Nether a visit. Breed them from Clay and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAsh","UID0":"gregtech.bee.speciesAsh","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2293,"preRequisites":[851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:NitrogenTetroxide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§9§lNitrogen Tetroxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make Nitrogen Tetroxide you need to combine some copper dust and nitric acid in a Chemical Dehydrator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:NitrogenTetroxide","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30653,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2294,"preRequisites":[147,1245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":793,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRocket Engine EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Rocket Engine is a very dirty device which generate power out of rocket fuels at 60% efficiency.\n200 to 2000 polution each sec."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":793,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"miscutils:RocketFuelMixB","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:RocketFuelMixA","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]}],"questLines":[{"quests":[{"sizeX":72,"x":0,"y":36,"id":0,"sizeY":72},{"sizeX":24,"x":120,"y":60,"id":1,"sizeY":24},{"sizeX":24,"x":84,"y":60,"id":2,"sizeY":24},{"sizeX":48,"x":252,"y":48,"id":3,"sizeY":48},{"sizeX":24,"x":216,"y":60,"id":4,"sizeY":24},{"sizeX":48,"x":324,"y":48,"id":5,"sizeY":48},{"sizeX":24,"x":408,"y":60,"id":6,"sizeY":24},{"sizeX":48,"x":480,"y":48,"id":7,"sizeY":48},{"sizeX":48,"x":324,"y":120,"id":8,"sizeY":48},{"sizeX":48,"x":324,"y":192,"id":9,"sizeY":48},{"sizeX":48,"x":204,"y":264,"id":10,"sizeY":48},{"sizeX":48,"x":252,"y":156,"id":11,"sizeY":48},{"sizeX":48,"x":300,"y":264,"id":12,"sizeY":48},{"sizeX":72,"x":468,"y":312,"id":13,"sizeY":72},{"sizeX":48,"x":12,"y":324,"id":14,"sizeY":48},{"sizeX":24,"x":216,"y":96,"id":440,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":442,"sizeY":24},{"sizeX":48,"x":396,"y":192,"id":444,"sizeY":48},{"sizeX":24,"x":204,"y":168,"id":446,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":448,"sizeY":24},{"sizeX":24,"x":204,"y":132,"id":450,"sizeY":24},{"sizeX":24,"x":408,"y":108,"id":469,"sizeY":24},{"sizeX":24,"x":444,"y":108,"id":470,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":471,"sizeY":24},{"sizeX":24,"x":408,"y":12,"id":484,"sizeY":24},{"sizeX":24,"x":240,"y":12,"id":865,"sizeY":24},{"sizeX":24,"x":288,"y":12,"id":946,"sizeY":24},{"sizeX":48,"x":156,"y":48,"id":1204,"sizeY":48},{"sizeX":24,"x":168,"y":276,"id":1475,"sizeY":24},{"sizeX":24,"x":168,"y":132,"id":1495,"sizeY":24},{"sizeX":24,"x":24,"y":120,"id":1500,"sizeY":24},{"sizeX":24,"x":24,"y":156,"id":1501,"sizeY":24},{"sizeX":24,"x":24,"y":0,"id":1834,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1841,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1842,"sizeY":24},{"sizeX":24,"x":132,"y":216,"id":1843,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":1844,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":1845,"sizeY":24},{"sizeX":24,"x":336,"y":12,"id":1849,"sizeY":24},{"sizeX":24,"x":408,"y":144,"id":1856,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":2145,"sizeY":24}],"lineID":0,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 0 - It begins","icon":{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The very first tier, tier zero. This chapter will introduce you to the basic mechanics of this modpack. Mods covered: Vanilla, Pam's Harvestcraft."}},"order":0},{"quests":[{"sizeX":72,"x":660,"y":144,"id":15,"sizeY":72},{"sizeX":48,"x":756,"y":156,"id":17,"sizeY":48},{"sizeX":48,"x":588,"y":156,"id":18,"sizeY":48},{"sizeX":24,"x":600,"y":228,"id":19,"sizeY":24},{"sizeX":24,"x":744,"y":120,"id":20,"sizeY":24},{"sizeX":24,"x":684,"y":228,"id":21,"sizeY":24},{"sizeX":24,"x":600,"y":264,"id":22,"sizeY":24},{"sizeX":24,"x":636,"y":264,"id":23,"sizeY":24},{"sizeX":48,"x":756,"y":252,"id":24,"sizeY":48},{"sizeX":24,"x":684,"y":264,"id":25,"sizeY":24},{"sizeX":24,"x":684,"y":300,"id":26,"sizeY":24},{"sizeX":48,"x":756,"y":492,"id":27,"sizeY":48},{"sizeX":24,"x":432,"y":504,"id":28,"sizeY":24},{"sizeX":24,"x":288,"y":504,"id":29,"sizeY":24},{"sizeX":48,"x":384,"y":336,"id":30,"sizeY":48},{"sizeX":48,"x":456,"y":336,"id":31,"sizeY":48},{"sizeX":24,"x":636,"y":300,"id":32,"sizeY":24},{"sizeX":48,"x":624,"y":336,"id":33,"sizeY":48},{"sizeX":24,"x":312,"y":384,"id":34,"sizeY":24},{"sizeX":48,"x":420,"y":156,"id":35,"sizeY":48},{"sizeX":48,"x":204,"y":168,"id":36,"sizeY":48},{"sizeX":48,"x":204,"y":408,"id":37,"sizeY":48},{"sizeX":24,"x":336,"y":264,"id":38,"sizeY":24},{"sizeX":24,"x":192,"y":240,"id":39,"sizeY":24},{"sizeX":72,"x":312,"y":0,"id":40,"sizeY":72},{"sizeX":48,"x":516,"y":156,"id":41,"sizeY":48},{"sizeX":48,"x":516,"y":336,"id":42,"sizeY":48},{"sizeX":24,"x":528,"y":264,"id":43,"sizeY":24},{"sizeX":48,"x":624,"y":408,"id":472,"sizeY":48},{"sizeX":24,"x":300,"y":264,"id":473,"sizeY":24},{"sizeX":48,"x":420,"y":408,"id":474,"sizeY":48},{"sizeX":24,"x":360,"y":504,"id":480,"sizeY":24},{"sizeX":24,"x":816,"y":288,"id":481,"sizeY":24},{"sizeX":24,"x":0,"y":156,"id":482,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":483,"sizeY":24},{"sizeX":24,"x":816,"y":240,"id":485,"sizeY":24},{"sizeX":24,"x":276,"y":180,"id":486,"sizeY":24},{"sizeX":24,"x":336,"y":132,"id":487,"sizeY":24},{"sizeX":24,"x":372,"y":132,"id":488,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":489,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":491,"sizeY":24},{"sizeX":24,"x":72,"y":156,"id":492,"sizeY":24},{"sizeX":24,"x":288,"y":468,"id":494,"sizeY":24},{"sizeX":24,"x":240,"y":240,"id":498,"sizeY":24},{"sizeX":24,"x":252,"y":468,"id":535,"sizeY":24},{"sizeX":24,"x":72,"y":228,"id":656,"sizeY":24},{"sizeX":24,"x":120,"y":228,"id":657,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":693,"sizeY":24},{"sizeX":24,"x":180,"y":84,"id":718,"sizeY":24},{"sizeX":24,"x":156,"y":240,"id":727,"sizeY":24},{"sizeX":24,"x":120,"y":276,"id":728,"sizeY":24},{"sizeX":24,"x":156,"y":276,"id":729,"sizeY":24},{"sizeX":24,"x":324,"y":504,"id":825,"sizeY":24},{"sizeX":24,"x":396,"y":504,"id":826,"sizeY":24},{"sizeX":24,"x":696,"y":348,"id":862,"sizeY":24},{"sizeX":24,"x":372,"y":264,"id":863,"sizeY":24},{"sizeX":24,"x":696,"y":420,"id":864,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":945,"sizeY":24},{"sizeX":24,"x":564,"y":264,"id":947,"sizeY":24},{"sizeX":24,"x":144,"y":84,"id":1085,"sizeY":24},{"sizeX":24,"x":144,"y":48,"id":1095,"sizeY":24},{"sizeX":24,"x":252,"y":504,"id":1129,"sizeY":24},{"sizeX":48,"x":420,"y":0,"id":1146,"sizeY":48},{"sizeX":24,"x":36,"y":156,"id":1476,"sizeY":24},{"sizeX":24,"x":432,"y":540,"id":1496,"sizeY":24},{"sizeX":24,"x":396,"y":540,"id":1497,"sizeY":24},{"sizeX":24,"x":360,"y":540,"id":1498,"sizeY":24},{"sizeX":24,"x":216,"y":84,"id":1504,"sizeY":24},{"sizeX":24,"x":684,"y":108,"id":1505,"sizeY":24},{"sizeX":24,"x":684,"y":72,"id":1506,"sizeY":24},{"sizeX":24,"x":108,"y":84,"id":1508,"sizeY":24},{"sizeX":24,"x":216,"y":48,"id":1546,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":1738,"sizeY":24},{"sizeX":24,"x":168,"y":420,"id":1790,"sizeY":24},{"sizeX":24,"x":72,"y":120,"id":1831,"sizeY":24},{"sizeX":24,"x":72,"y":84,"id":1851,"sizeY":24},{"sizeX":24,"x":0,"y":84,"id":1852,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1864,"sizeY":24},{"sizeX":24,"x":336,"y":348,"id":1866,"sizeY":24},{"sizeX":24,"x":276,"y":216,"id":1926,"sizeY":24}],"lineID":1,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 0.5 - Stone Age","icon":{"id":"IC2:itemToolBronzePickaxe","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Basically the \"Tier 0\" of all your progression. This set helps you through the first tier until you can build your first steam machine"}},"order":1},{"quests":[{"sizeX":24,"x":192,"y":648,"id":16,"sizeY":24},{"sizeX":72,"x":48,"y":72,"id":44,"sizeY":72},{"sizeX":48,"x":144,"y":84,"id":46,"sizeY":48},{"sizeX":24,"x":156,"y":48,"id":47,"sizeY":24},{"sizeX":48,"x":252,"y":84,"id":48,"sizeY":48},{"sizeX":48,"x":480,"y":84,"id":49,"sizeY":48},{"sizeX":48,"x":564,"y":84,"id":50,"sizeY":48},{"sizeX":48,"x":564,"y":336,"id":51,"sizeY":48},{"sizeX":48,"x":564,"y":216,"id":52,"sizeY":48},{"sizeX":48,"x":408,"y":432,"id":53,"sizeY":48},{"sizeX":48,"x":408,"y":240,"id":54,"sizeY":48},{"sizeX":24,"x":384,"y":180,"id":55,"sizeY":24},{"sizeX":24,"x":468,"y":444,"id":56,"sizeY":24},{"sizeX":24,"x":624,"y":372,"id":57,"sizeY":24},{"sizeX":24,"x":624,"y":72,"id":58,"sizeY":24},{"sizeX":24,"x":108,"y":156,"id":59,"sizeY":24},{"sizeX":24,"x":144,"y":192,"id":60,"sizeY":24},{"sizeX":24,"x":144,"y":156,"id":61,"sizeY":24},{"sizeX":24,"x":108,"y":192,"id":62,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":63,"sizeY":24},{"sizeX":24,"x":0,"y":60,"id":64,"sizeY":24},{"sizeX":48,"x":60,"y":540,"id":65,"sizeY":48},{"sizeX":48,"x":324,"y":648,"id":66,"sizeY":48},{"sizeX":48,"x":408,"y":648,"id":67,"sizeY":48},{"sizeX":48,"x":324,"y":720,"id":68,"sizeY":48},{"sizeX":48,"x":564,"y":648,"id":69,"sizeY":48},{"sizeX":72,"x":396,"y":792,"id":70,"sizeY":72},{"sizeX":48,"x":564,"y":804,"id":71,"sizeY":48},{"sizeX":48,"x":132,"y":804,"id":72,"sizeY":48},{"sizeX":48,"x":132,"y":648,"id":73,"sizeY":48},{"sizeX":24,"x":228,"y":648,"id":84,"sizeY":24},{"sizeX":24,"x":12,"y":552,"id":119,"sizeY":24},{"sizeX":48,"x":408,"y":540,"id":478,"sizeY":48},{"sizeX":48,"x":480,"y":540,"id":479,"sizeY":48},{"sizeX":48,"x":360,"y":84,"id":493,"sizeY":48},{"sizeX":24,"x":492,"y":180,"id":495,"sizeY":24},{"sizeX":48,"x":564,"y":540,"id":496,"sizeY":48},{"sizeX":24,"x":420,"y":504,"id":497,"sizeY":24},{"sizeX":24,"x":408,"y":612,"id":534,"sizeY":24},{"sizeX":24,"x":624,"y":660,"id":536,"sizeY":24},{"sizeX":24,"x":96,"y":648,"id":558,"sizeY":24},{"sizeX":48,"x":480,"y":336,"id":563,"sizeY":48},{"sizeX":24,"x":48,"y":480,"id":596,"sizeY":24},{"sizeX":24,"x":228,"y":684,"id":625,"sizeY":24},{"sizeX":24,"x":12,"y":600,"id":658,"sizeY":24},{"sizeX":48,"x":408,"y":336,"id":694,"sizeY":48},{"sizeX":24,"x":12,"y":516,"id":705,"sizeY":24},{"sizeX":48,"x":144,"y":312,"id":741,"sizeY":48},{"sizeX":24,"x":204,"y":360,"id":742,"sizeY":24},{"sizeX":24,"x":108,"y":360,"id":743,"sizeY":24},{"sizeX":24,"x":108,"y":324,"id":744,"sizeY":24},{"sizeX":48,"x":228,"y":720,"id":834,"sizeY":48},{"sizeX":48,"x":408,"y":720,"id":835,"sizeY":48},{"sizeX":24,"x":576,"y":144,"id":867,"sizeY":24},{"sizeX":24,"x":624,"y":120,"id":868,"sizeY":24},{"sizeX":24,"x":228,"y":612,"id":871,"sizeY":24},{"sizeX":24,"x":624,"y":528,"id":875,"sizeY":24},{"sizeX":24,"x":192,"y":684,"id":890,"sizeY":24},{"sizeX":24,"x":660,"y":660,"id":942,"sizeY":24},{"sizeX":24,"x":348,"y":252,"id":948,"sizeY":24},{"sizeX":24,"x":348,"y":288,"id":1008,"sizeY":24},{"sizeX":24,"x":348,"y":216,"id":1107,"sizeY":24},{"sizeX":24,"x":348,"y":180,"id":1108,"sizeY":24},{"sizeX":24,"x":468,"y":252,"id":1124,"sizeY":24},{"sizeX":24,"x":468,"y":216,"id":1125,"sizeY":24},{"sizeX":48,"x":144,"y":432,"id":1126,"sizeY":48},{"sizeX":24,"x":12,"y":480,"id":1127,"sizeY":24},{"sizeX":24,"x":576,"y":180,"id":1128,"sizeY":24},{"sizeX":24,"x":492,"y":288,"id":1130,"sizeY":24},{"sizeX":24,"x":468,"y":504,"id":1132,"sizeY":24},{"sizeX":24,"x":96,"y":480,"id":1133,"sizeY":24},{"sizeX":24,"x":624,"y":696,"id":1147,"sizeY":24},{"sizeX":24,"x":204,"y":324,"id":1151,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1156,"sizeY":24},{"sizeX":24,"x":660,"y":696,"id":1157,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1205,"sizeY":24},{"sizeX":24,"x":420,"y":180,"id":1507,"sizeY":24},{"sizeX":24,"x":624,"y":228,"id":1536,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":1735,"sizeY":24},{"sizeX":24,"x":624,"y":576,"id":1741,"sizeY":24},{"sizeX":24,"x":72,"y":684,"id":1789,"sizeY":24},{"sizeX":24,"x":456,"y":612,"id":1888,"sizeY":24},{"sizeX":24,"x":516,"y":504,"id":1908,"sizeY":24},{"sizeX":24,"x":624,"y":324,"id":1915,"sizeY":24},{"sizeX":24,"x":372,"y":444,"id":1919,"sizeY":24},{"sizeX":24,"x":48,"y":648,"id":1987,"sizeY":24},{"sizeX":24,"x":12,"y":648,"id":1988,"sizeY":24},{"sizeX":24,"x":348,"y":324,"id":2026,"sizeY":24},{"sizeX":24,"x":504,"y":612,"id":2056,"sizeY":24},{"sizeX":24,"x":12,"y":684,"id":2087,"sizeY":24},{"sizeX":24,"x":528,"y":216,"id":2140,"sizeY":24},{"sizeX":24,"x":420,"y":876,"id":2161,"sizeY":24}],"lineID":2,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 1 - Steam","icon":{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Quest set for all steam-based machines."}},"order":2},{"quests":[{"sizeX":72,"x":324,"y":120,"id":88,"sizeY":72},{"sizeX":48,"x":336,"y":0,"id":90,"sizeY":48},{"sizeX":48,"x":240,"y":288,"id":91,"sizeY":48},{"sizeX":48,"x":516,"y":432,"id":92,"sizeY":48},{"sizeX":48,"x":336,"y":288,"id":93,"sizeY":48},{"sizeX":48,"x":540,"y":288,"id":94,"sizeY":48},{"sizeX":48,"x":432,"y":288,"id":95,"sizeY":48},{"sizeX":48,"x":264,"y":0,"id":96,"sizeY":48},{"sizeX":72,"x":504,"y":588,"id":97,"sizeY":72},{"sizeX":48,"x":432,"y":1020,"id":98,"sizeY":48},{"sizeX":24,"x":444,"y":252,"id":100,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":101,"sizeY":24},{"sizeX":48,"x":84,"y":1020,"id":102,"sizeY":48},{"sizeX":72,"x":96,"y":120,"id":103,"sizeY":72},{"sizeX":48,"x":24,"y":132,"id":104,"sizeY":48},{"sizeX":48,"x":432,"y":840,"id":105,"sizeY":48},{"sizeX":24,"x":432,"y":96,"id":113,"sizeY":24},{"sizeX":24,"x":468,"y":48,"id":114,"sizeY":24},{"sizeX":24,"x":432,"y":48,"id":115,"sizeY":24},{"sizeX":24,"x":384,"y":84,"id":116,"sizeY":24},{"sizeX":24,"x":588,"y":540,"id":117,"sizeY":24},{"sizeX":24,"x":468,"y":504,"id":118,"sizeY":24},{"sizeX":24,"x":588,"y":48,"id":120,"sizeY":24},{"sizeX":24,"x":588,"y":96,"id":121,"sizeY":24},{"sizeX":24,"x":636,"y":48,"id":122,"sizeY":24},{"sizeX":24,"x":636,"y":96,"id":123,"sizeY":24},{"sizeX":24,"x":684,"y":48,"id":124,"sizeY":24},{"sizeX":24,"x":684,"y":96,"id":125,"sizeY":24},{"sizeX":48,"x":600,"y":432,"id":529,"sizeY":48},{"sizeX":48,"x":684,"y":432,"id":530,"sizeY":48},{"sizeX":24,"x":660,"y":612,"id":531,"sizeY":24},{"sizeX":24,"x":528,"y":348,"id":532,"sizeY":24},{"sizeX":24,"x":528,"y":252,"id":533,"sizeY":24},{"sizeX":24,"x":348,"y":384,"id":538,"sizeY":24},{"sizeX":48,"x":360,"y":756,"id":539,"sizeY":48},{"sizeX":48,"x":0,"y":1020,"id":540,"sizeY":48},{"sizeX":48,"x":0,"y":288,"id":541,"sizeY":48},{"sizeX":48,"x":768,"y":132,"id":542,"sizeY":48},{"sizeX":72,"x":276,"y":744,"id":543,"sizeY":72},{"sizeX":24,"x":480,"y":348,"id":544,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":545,"sizeY":24},{"sizeX":24,"x":96,"y":492,"id":546,"sizeY":24},{"sizeX":48,"x":84,"y":600,"id":547,"sizeY":48},{"sizeX":24,"x":192,"y":612,"id":548,"sizeY":24},{"sizeX":24,"x":192,"y":648,"id":549,"sizeY":24},{"sizeX":48,"x":288,"y":840,"id":550,"sizeY":48},{"sizeX":24,"x":144,"y":900,"id":551,"sizeY":24},{"sizeX":24,"x":180,"y":900,"id":552,"sizeY":24},{"sizeX":48,"x":264,"y":72,"id":554,"sizeY":48},{"sizeX":24,"x":372,"y":816,"id":555,"sizeY":24},{"sizeX":48,"x":372,"y":468,"id":579,"sizeY":48},{"sizeX":48,"x":180,"y":0,"id":587,"sizeY":48},{"sizeX":48,"x":516,"y":996,"id":597,"sizeY":48},{"sizeX":48,"x":516,"y":924,"id":598,"sizeY":48},{"sizeX":24,"x":828,"y":828,"id":599,"sizeY":24},{"sizeX":48,"x":516,"y":840,"id":608,"sizeY":48},{"sizeX":48,"x":612,"y":924,"id":609,"sizeY":48},{"sizeX":24,"x":732,"y":1104,"id":611,"sizeY":24},{"sizeX":24,"x":732,"y":1140,"id":612,"sizeY":24},{"sizeX":24,"x":864,"y":1068,"id":613,"sizeY":24},{"sizeX":24,"x":828,"y":1068,"id":614,"sizeY":24},{"sizeX":48,"x":924,"y":1056,"id":615,"sizeY":48},{"sizeX":24,"x":624,"y":1068,"id":616,"sizeY":24},{"sizeX":24,"x":624,"y":1140,"id":617,"sizeY":24},{"sizeX":24,"x":732,"y":1068,"id":618,"sizeY":24},{"sizeX":48,"x":852,"y":1128,"id":619,"sizeY":48},{"sizeX":24,"x":660,"y":1008,"id":620,"sizeY":24},{"sizeX":24,"x":744,"y":1008,"id":621,"sizeY":24},{"sizeX":48,"x":768,"y":924,"id":622,"sizeY":48},{"sizeX":24,"x":780,"y":1044,"id":623,"sizeY":24},{"sizeX":48,"x":852,"y":996,"id":624,"sizeY":48},{"sizeX":24,"x":264,"y":1032,"id":626,"sizeY":24},{"sizeX":24,"x":156,"y":648,"id":639,"sizeY":24},{"sizeX":24,"x":168,"y":852,"id":640,"sizeY":24},{"sizeX":24,"x":204,"y":720,"id":641,"sizeY":24},{"sizeX":24,"x":120,"y":936,"id":642,"sizeY":24},{"sizeX":24,"x":204,"y":936,"id":643,"sizeY":24},{"sizeX":24,"x":300,"y":936,"id":644,"sizeY":24},{"sizeX":24,"x":588,"y":1008,"id":646,"sizeY":24},{"sizeX":24,"x":468,"y":576,"id":661,"sizeY":24},{"sizeX":48,"x":996,"y":1128,"id":662,"sizeY":48},{"sizeX":24,"x":1056,"y":1140,"id":663,"sizeY":24},{"sizeX":48,"x":924,"y":1128,"id":664,"sizeY":48},{"sizeX":48,"x":300,"y":468,"id":673,"sizeY":48},{"sizeX":48,"x":636,"y":252,"id":716,"sizeY":48},{"sizeX":72,"x":600,"y":744,"id":717,"sizeY":72},{"sizeX":24,"x":264,"y":708,"id":726,"sizeY":24},{"sizeX":48,"x":444,"y":756,"id":745,"sizeY":48},{"sizeX":48,"x":612,"y":840,"id":747,"sizeY":48},{"sizeX":48,"x":516,"y":756,"id":748,"sizeY":48},{"sizeX":24,"x":252,"y":348,"id":771,"sizeY":24},{"sizeX":48,"x":696,"y":756,"id":795,"sizeY":48},{"sizeX":48,"x":768,"y":840,"id":836,"sizeY":48},{"sizeX":24,"x":204,"y":852,"id":840,"sizeY":24},{"sizeX":24,"x":480,"y":252,"id":869,"sizeY":24},{"sizeX":24,"x":276,"y":384,"id":891,"sizeY":24},{"sizeX":24,"x":276,"y":420,"id":892,"sizeY":24},{"sizeX":24,"x":312,"y":384,"id":898,"sizeY":24},{"sizeX":24,"x":744,"y":444,"id":930,"sizeY":24},{"sizeX":24,"x":444,"y":1104,"id":962,"sizeY":24},{"sizeX":24,"x":492,"y":1104,"id":1035,"sizeY":24},{"sizeX":48,"x":24,"y":600,"id":1084,"sizeY":48},{"sizeX":24,"x":144,"y":492,"id":1090,"sizeY":24},{"sizeX":24,"x":120,"y":1104,"id":1091,"sizeY":24},{"sizeX":24,"x":192,"y":492,"id":1092,"sizeY":24},{"sizeX":24,"x":156,"y":1104,"id":1094,"sizeY":24},{"sizeX":24,"x":588,"y":504,"id":1131,"sizeY":24},{"sizeX":24,"x":576,"y":852,"id":1134,"sizeY":24},{"sizeX":24,"x":312,"y":420,"id":1135,"sizeY":24},{"sizeX":24,"x":468,"y":540,"id":1136,"sizeY":24},{"sizeX":24,"x":264,"y":480,"id":1149,"sizeY":24},{"sizeX":24,"x":264,"y":528,"id":1150,"sizeY":24},{"sizeX":24,"x":216,"y":528,"id":1152,"sizeY":24},{"sizeX":24,"x":216,"y":576,"id":1153,"sizeY":24},{"sizeX":24,"x":300,"y":528,"id":1154,"sizeY":24},{"sizeX":48,"x":288,"y":564,"id":1155,"sizeY":48},{"sizeX":24,"x":372,"y":888,"id":1160,"sizeY":24},{"sizeX":24,"x":648,"y":216,"id":1166,"sizeY":24},{"sizeX":48,"x":852,"y":924,"id":1167,"sizeY":48},{"sizeX":24,"x":780,"y":1008,"id":1168,"sizeY":24},{"sizeX":48,"x":996,"y":1056,"id":1172,"sizeY":48},{"sizeX":48,"x":108,"y":60,"id":1266,"sizeY":48},{"sizeX":24,"x":348,"y":348,"id":1273,"sizeY":24},{"sizeX":24,"x":384,"y":348,"id":1274,"sizeY":24},{"sizeX":24,"x":396,"y":1104,"id":1285,"sizeY":24},{"sizeX":24,"x":264,"y":660,"id":1485,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1499,"sizeY":24},{"sizeX":24,"x":588,"y":576,"id":1510,"sizeY":24},{"sizeX":24,"x":372,"y":852,"id":1519,"sizeY":24},{"sizeX":24,"x":48,"y":1104,"id":1528,"sizeY":24},{"sizeX":24,"x":408,"y":720,"id":1540,"sizeY":24},{"sizeX":48,"x":516,"y":672,"id":1549,"sizeY":48},{"sizeX":24,"x":504,"y":48,"id":1599,"sizeY":24},{"sizeX":24,"x":408,"y":684,"id":1613,"sizeY":24},{"sizeX":24,"x":84,"y":1104,"id":1653,"sizeY":24},{"sizeX":24,"x":408,"y":648,"id":1791,"sizeY":24},{"sizeX":24,"x":624,"y":576,"id":1792,"sizeY":24},{"sizeX":24,"x":828,"y":876,"id":1796,"sizeY":24},{"sizeX":24,"x":672,"y":888,"id":1821,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1846,"sizeY":24},{"sizeX":24,"x":384,"y":528,"id":1863,"sizeY":24},{"sizeX":24,"x":456,"y":612,"id":1865,"sizeY":24},{"sizeX":24,"x":444,"y":216,"id":1887,"sizeY":24},{"sizeX":24,"x":576,"y":684,"id":1918,"sizeY":24},{"sizeX":24,"x":252,"y":252,"id":2142,"sizeY":24},{"sizeX":48,"x":240,"y":192,"id":2143,"sizeY":48}],"lineID":3,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 2 - 32 EU (LV)","icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17019,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The first \"voltage\" tier of this pack. Things are getting easier...\nBTW, if you can't see any quests, click in the quest window or use the mousewheel to zoom in and out. "}},"order":3},{"quests":[{"sizeX":24,"x":528,"y":204,"id":89,"sizeY":24},{"sizeX":48,"x":228,"y":420,"id":126,"sizeY":48},{"sizeX":24,"x":672,"y":348,"id":128,"sizeY":24},{"sizeX":24,"x":792,"y":312,"id":129,"sizeY":24},{"sizeX":24,"x":792,"y":264,"id":130,"sizeY":24},{"sizeX":24,"x":744,"y":264,"id":131,"sizeY":24},{"sizeX":24,"x":792,"y":228,"id":132,"sizeY":24},{"sizeX":24,"x":828,"y":312,"id":134,"sizeY":24},{"sizeX":24,"x":864,"y":312,"id":135,"sizeY":24},{"sizeX":24,"x":864,"y":264,"id":136,"sizeY":24},{"sizeX":24,"x":828,"y":264,"id":137,"sizeY":24},{"sizeX":24,"x":672,"y":228,"id":138,"sizeY":24},{"sizeX":24,"x":636,"y":192,"id":140,"sizeY":24},{"sizeX":24,"x":792,"y":192,"id":142,"sizeY":24},{"sizeX":24,"x":744,"y":228,"id":143,"sizeY":24},{"sizeX":24,"x":744,"y":192,"id":145,"sizeY":24},{"sizeX":24,"x":828,"y":156,"id":148,"sizeY":24},{"sizeX":24,"x":792,"y":156,"id":149,"sizeY":24},{"sizeX":24,"x":828,"y":192,"id":150,"sizeY":24},{"sizeX":24,"x":828,"y":120,"id":151,"sizeY":24},{"sizeX":24,"x":828,"y":84,"id":152,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":153,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":154,"sizeY":24},{"sizeX":24,"x":228,"y":192,"id":155,"sizeY":24},{"sizeX":24,"x":264,"y":192,"id":156,"sizeY":24},{"sizeX":24,"x":300,"y":192,"id":157,"sizeY":24},{"sizeX":24,"x":300,"y":228,"id":158,"sizeY":24},{"sizeX":24,"x":300,"y":156,"id":159,"sizeY":24},{"sizeX":24,"x":540,"y":600,"id":553,"sizeY":24},{"sizeX":24,"x":744,"y":312,"id":604,"sizeY":24},{"sizeX":24,"x":552,"y":492,"id":659,"sizeY":24},{"sizeX":24,"x":564,"y":540,"id":660,"sizeY":24},{"sizeX":24,"x":36,"y":348,"id":730,"sizeY":24},{"sizeX":24,"x":36,"y":384,"id":731,"sizeY":24},{"sizeX":24,"x":36,"y":444,"id":732,"sizeY":24},{"sizeX":24,"x":36,"y":528,"id":733,"sizeY":24},{"sizeX":24,"x":72,"y":528,"id":734,"sizeY":24},{"sizeX":24,"x":0,"y":528,"id":735,"sizeY":24},{"sizeX":24,"x":36,"y":600,"id":736,"sizeY":24},{"sizeX":48,"x":588,"y":480,"id":740,"sizeY":48},{"sizeX":48,"x":228,"y":924,"id":746,"sizeY":48},{"sizeX":48,"x":408,"y":516,"id":749,"sizeY":48},{"sizeX":72,"x":288,"y":660,"id":750,"sizeY":72},{"sizeX":48,"x":480,"y":588,"id":751,"sizeY":48},{"sizeX":48,"x":480,"y":924,"id":752,"sizeY":48},{"sizeX":72,"x":468,"y":660,"id":753,"sizeY":72},{"sizeX":48,"x":480,"y":516,"id":754,"sizeY":48},{"sizeX":24,"x":288,"y":468,"id":757,"sizeY":24},{"sizeX":24,"x":240,"y":372,"id":758,"sizeY":24},{"sizeX":48,"x":228,"y":672,"id":759,"sizeY":48},{"sizeX":48,"x":144,"y":180,"id":760,"sizeY":48},{"sizeX":24,"x":192,"y":684,"id":773,"sizeY":24},{"sizeX":24,"x":0,"y":408,"id":774,"sizeY":24},{"sizeX":24,"x":156,"y":684,"id":778,"sizeY":24},{"sizeX":24,"x":0,"y":444,"id":780,"sizeY":24},{"sizeX":48,"x":144,"y":84,"id":782,"sizeY":48},{"sizeX":48,"x":648,"y":924,"id":785,"sizeY":48},{"sizeX":48,"x":144,"y":0,"id":791,"sizeY":48},{"sizeX":48,"x":372,"y":84,"id":792,"sizeY":48},{"sizeX":48,"x":876,"y":0,"id":793,"sizeY":48},{"sizeX":48,"x":600,"y":0,"id":794,"sizeY":48},{"sizeX":48,"x":372,"y":0,"id":837,"sizeY":48},{"sizeX":72,"x":864,"y":912,"id":838,"sizeY":72},{"sizeX":24,"x":924,"y":876,"id":839,"sizeY":24},{"sizeX":24,"x":0,"y":600,"id":842,"sizeY":24},{"sizeX":24,"x":72,"y":636,"id":843,"sizeY":24},{"sizeX":24,"x":36,"y":636,"id":844,"sizeY":24},{"sizeX":24,"x":36,"y":684,"id":845,"sizeY":24},{"sizeX":48,"x":168,"y":504,"id":846,"sizeY":48},{"sizeX":48,"x":228,"y":588,"id":847,"sizeY":48},{"sizeX":24,"x":36,"y":732,"id":848,"sizeY":24},{"sizeX":24,"x":96,"y":684,"id":849,"sizeY":24},{"sizeX":24,"x":324,"y":516,"id":850,"sizeY":24},{"sizeX":24,"x":288,"y":516,"id":852,"sizeY":24},{"sizeX":48,"x":372,"y":420,"id":893,"sizeY":48},{"sizeX":24,"x":336,"y":432,"id":894,"sizeY":24},{"sizeX":48,"x":480,"y":420,"id":895,"sizeY":48},{"sizeX":48,"x":588,"y":420,"id":896,"sizeY":48},{"sizeX":48,"x":744,"y":420,"id":897,"sizeY":48},{"sizeX":24,"x":636,"y":384,"id":931,"sizeY":24},{"sizeX":24,"x":468,"y":120,"id":933,"sizeY":24},{"sizeX":24,"x":504,"y":120,"id":934,"sizeY":24},{"sizeX":24,"x":468,"y":156,"id":935,"sizeY":24},{"sizeX":24,"x":492,"y":756,"id":938,"sizeY":24},{"sizeX":24,"x":456,"y":756,"id":939,"sizeY":24},{"sizeX":24,"x":336,"y":468,"id":944,"sizeY":24},{"sizeX":48,"x":372,"y":672,"id":951,"sizeY":48},{"sizeX":24,"x":432,"y":636,"id":952,"sizeY":24},{"sizeX":24,"x":576,"y":684,"id":953,"sizeY":24},{"sizeX":48,"x":384,"y":792,"id":1013,"sizeY":48},{"sizeX":48,"x":384,"y":864,"id":1015,"sizeY":48},{"sizeX":48,"x":300,"y":864,"id":1020,"sizeY":48},{"sizeX":48,"x":300,"y":792,"id":1021,"sizeY":48},{"sizeX":48,"x":648,"y":480,"id":1081,"sizeY":48},{"sizeX":24,"x":312,"y":372,"id":1082,"sizeY":24},{"sizeX":24,"x":276,"y":372,"id":1083,"sizeY":24},{"sizeX":24,"x":108,"y":480,"id":1093,"sizeY":24},{"sizeX":72,"x":132,"y":324,"id":1148,"sizeY":72},{"sizeX":24,"x":660,"y":540,"id":1180,"sizeY":24},{"sizeX":24,"x":0,"y":684,"id":1226,"sizeY":24},{"sizeX":24,"x":312,"y":756,"id":1227,"sizeY":24},{"sizeX":24,"x":204,"y":288,"id":1267,"sizeY":24},{"sizeX":24,"x":240,"y":288,"id":1268,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":1269,"sizeY":24},{"sizeX":24,"x":672,"y":384,"id":1279,"sizeY":24},{"sizeX":24,"x":72,"y":408,"id":1320,"sizeY":24},{"sizeX":24,"x":0,"y":480,"id":1321,"sizeY":24},{"sizeX":24,"x":72,"y":480,"id":1322,"sizeY":24},{"sizeX":24,"x":36,"y":564,"id":1323,"sizeY":24},{"sizeX":24,"x":36,"y":780,"id":1324,"sizeY":24},{"sizeX":24,"x":576,"y":756,"id":1417,"sizeY":24},{"sizeX":48,"x":456,"y":228,"id":1477,"sizeY":48},{"sizeX":48,"x":372,"y":228,"id":1478,"sizeY":48},{"sizeX":24,"x":468,"y":192,"id":1482,"sizeY":24},{"sizeX":24,"x":540,"y":756,"id":1494,"sizeY":24},{"sizeX":24,"x":636,"y":228,"id":1518,"sizeY":24},{"sizeX":24,"x":660,"y":852,"id":1520,"sizeY":24},{"sizeX":24,"x":432,"y":684,"id":1524,"sizeY":24},{"sizeX":24,"x":672,"y":192,"id":1527,"sizeY":24},{"sizeX":24,"x":552,"y":636,"id":1537,"sizeY":24},{"sizeX":24,"x":132,"y":780,"id":1544,"sizeY":24},{"sizeX":24,"x":600,"y":384,"id":1547,"sizeY":24},{"sizeX":48,"x":648,"y":792,"id":1598,"sizeY":48},{"sizeX":24,"x":804,"y":432,"id":1614,"sizeY":24},{"sizeX":24,"x":636,"y":156,"id":1643,"sizeY":24},{"sizeX":24,"x":540,"y":432,"id":1736,"sizeY":24},{"sizeX":48,"x":228,"y":504,"id":1744,"sizeY":48},{"sizeX":24,"x":444,"y":876,"id":1819,"sizeY":24},{"sizeX":24,"x":852,"y":876,"id":1823,"sizeY":24},{"sizeX":24,"x":744,"y":348,"id":1835,"sizeY":24},{"sizeX":24,"x":528,"y":312,"id":1850,"sizeY":24},{"sizeX":48,"x":420,"y":336,"id":1867,"sizeY":48},{"sizeX":48,"x":600,"y":84,"id":1868,"sizeY":48},{"sizeX":24,"x":528,"y":240,"id":1869,"sizeY":24},{"sizeX":24,"x":564,"y":384,"id":1870,"sizeY":24},{"sizeX":24,"x":288,"y":600,"id":1872,"sizeY":24},{"sizeX":24,"x":324,"y":600,"id":1873,"sizeY":24},{"sizeX":24,"x":360,"y":600,"id":1874,"sizeY":24},{"sizeX":24,"x":708,"y":492,"id":1907,"sizeY":24},{"sizeX":24,"x":600,"y":540,"id":1910,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1911,"sizeY":24},{"sizeX":24,"x":372,"y":312,"id":1913,"sizeY":24},{"sizeX":24,"x":336,"y":312,"id":1914,"sizeY":24},{"sizeX":24,"x":384,"y":192,"id":1916,"sizeY":24},{"sizeX":24,"x":384,"y":156,"id":1917,"sizeY":24},{"sizeX":24,"x":696,"y":540,"id":2014,"sizeY":24},{"sizeX":24,"x":288,"y":432,"id":2043,"sizeY":24},{"sizeX":24,"x":708,"y":804,"id":2047,"sizeY":24},{"sizeX":24,"x":744,"y":156,"id":2086,"sizeY":24},{"sizeX":24,"x":528,"y":276,"id":2141,"sizeY":24},{"sizeX":24,"x":108,"y":444,"id":2253,"sizeY":24}],"lineID":4,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 3 - 128 EU (MV)","icon":{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Your second voltage tier. Don't mix different voltage levels, or you will be punished in a hard way. Start thinking about how to expand your base. \nAgain, use mousewheel to zoom out to see quests."}},"order":4},{"quests":[{"sizeX":24,"x":420,"y":348,"id":133,"sizeY":24},{"sizeX":24,"x":744,"y":180,"id":141,"sizeY":24},{"sizeX":24,"x":648,"y":228,"id":144,"sizeY":24},{"sizeX":24,"x":648,"y":264,"id":146,"sizeY":24},{"sizeX":24,"x":444,"y":876,"id":147,"sizeY":24},{"sizeX":72,"x":456,"y":156,"id":160,"sizeY":72},{"sizeX":48,"x":552,"y":564,"id":162,"sizeY":48},{"sizeX":24,"x":780,"y":264,"id":163,"sizeY":24},{"sizeX":24,"x":696,"y":264,"id":165,"sizeY":24},{"sizeX":24,"x":612,"y":264,"id":166,"sizeY":24},{"sizeX":24,"x":504,"y":276,"id":167,"sizeY":24},{"sizeX":24,"x":696,"y":228,"id":168,"sizeY":24},{"sizeX":24,"x":744,"y":264,"id":169,"sizeY":24},{"sizeX":24,"x":780,"y":132,"id":170,"sizeY":24},{"sizeX":24,"x":360,"y":132,"id":171,"sizeY":24},{"sizeX":24,"x":312,"y":132,"id":172,"sizeY":24},{"sizeX":24,"x":264,"y":132,"id":173,"sizeY":24},{"sizeX":24,"x":228,"y":132,"id":174,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":175,"sizeY":24},{"sizeX":24,"x":360,"y":912,"id":557,"sizeY":24},{"sizeX":48,"x":300,"y":324,"id":769,"sizeY":48},{"sizeX":48,"x":300,"y":408,"id":770,"sizeY":48},{"sizeX":48,"x":216,"y":324,"id":772,"sizeY":48},{"sizeX":24,"x":312,"y":288,"id":789,"sizeY":24},{"sizeX":24,"x":312,"y":252,"id":790,"sizeY":24},{"sizeX":48,"x":432,"y":48,"id":808,"sizeY":48},{"sizeX":24,"x":360,"y":876,"id":841,"sizeY":24},{"sizeX":24,"x":324,"y":876,"id":851,"sizeY":24},{"sizeX":24,"x":360,"y":828,"id":853,"sizeY":24},{"sizeX":24,"x":252,"y":828,"id":854,"sizeY":24},{"sizeX":24,"x":312,"y":828,"id":855,"sizeY":24},{"sizeX":24,"x":444,"y":948,"id":856,"sizeY":24},{"sizeX":24,"x":360,"y":792,"id":857,"sizeY":24},{"sizeX":24,"x":252,"y":984,"id":858,"sizeY":24},{"sizeX":24,"x":480,"y":984,"id":859,"sizeY":24},{"sizeX":72,"x":732,"y":636,"id":860,"sizeY":72},{"sizeX":24,"x":504,"y":348,"id":932,"sizeY":24},{"sizeX":48,"x":300,"y":720,"id":943,"sizeY":48},{"sizeX":24,"x":744,"y":336,"id":987,"sizeY":24},{"sizeX":24,"x":816,"y":180,"id":988,"sizeY":24},{"sizeX":24,"x":648,"y":180,"id":989,"sizeY":24},{"sizeX":24,"x":744,"y":300,"id":990,"sizeY":24},{"sizeX":24,"x":744,"y":132,"id":998,"sizeY":24},{"sizeX":24,"x":744,"y":96,"id":999,"sizeY":24},{"sizeX":24,"x":648,"y":132,"id":1000,"sizeY":24},{"sizeX":24,"x":696,"y":132,"id":1001,"sizeY":24},{"sizeX":48,"x":648,"y":564,"id":1011,"sizeY":48},{"sizeX":48,"x":744,"y":564,"id":1012,"sizeY":48},{"sizeX":72,"x":48,"y":312,"id":1014,"sizeY":72},{"sizeX":48,"x":60,"y":564,"id":1016,"sizeY":48},{"sizeX":48,"x":60,"y":408,"id":1017,"sizeY":48},{"sizeX":48,"x":216,"y":564,"id":1018,"sizeY":48},{"sizeX":48,"x":60,"y":492,"id":1019,"sizeY":48},{"sizeX":24,"x":564,"y":72,"id":1137,"sizeY":24},{"sizeX":24,"x":564,"y":36,"id":1138,"sizeY":24},{"sizeX":24,"x":600,"y":72,"id":1139,"sizeY":24},{"sizeX":24,"x":600,"y":36,"id":1140,"sizeY":24},{"sizeX":24,"x":564,"y":0,"id":1141,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":1142,"sizeY":24},{"sizeX":24,"x":360,"y":72,"id":1143,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":1144,"sizeY":24},{"sizeX":24,"x":600,"y":0,"id":1145,"sizeY":24},{"sizeX":48,"x":552,"y":480,"id":1164,"sizeY":48},{"sizeX":48,"x":144,"y":564,"id":1221,"sizeY":48},{"sizeX":48,"x":60,"y":240,"id":1222,"sizeY":48},{"sizeX":48,"x":60,"y":168,"id":1225,"sizeY":48},{"sizeX":72,"x":456,"y":396,"id":1231,"sizeY":72},{"sizeX":72,"x":288,"y":552,"id":1232,"sizeY":72},{"sizeX":48,"x":300,"y":648,"id":1233,"sizeY":48},{"sizeX":24,"x":156,"y":624,"id":1235,"sizeY":24},{"sizeX":48,"x":144,"y":408,"id":1236,"sizeY":48},{"sizeX":48,"x":216,"y":168,"id":1237,"sizeY":48},{"sizeX":48,"x":216,"y":252,"id":1238,"sizeY":48},{"sizeX":48,"x":144,"y":324,"id":1239,"sizeY":48},{"sizeX":48,"x":144,"y":168,"id":1240,"sizeY":48},{"sizeX":24,"x":540,"y":348,"id":1271,"sizeY":24},{"sizeX":24,"x":420,"y":444,"id":1289,"sizeY":24},{"sizeX":24,"x":396,"y":72,"id":1403,"sizeY":24},{"sizeX":24,"x":540,"y":276,"id":1404,"sizeY":24},{"sizeX":24,"x":816,"y":660,"id":1405,"sizeY":24},{"sizeX":24,"x":288,"y":876,"id":1411,"sizeY":24},{"sizeX":24,"x":612,"y":492,"id":1420,"sizeY":24},{"sizeX":48,"x":648,"y":648,"id":1424,"sizeY":48},{"sizeX":24,"x":612,"y":228,"id":1502,"sizeY":24},{"sizeX":24,"x":816,"y":216,"id":1509,"sizeY":24},{"sizeX":24,"x":504,"y":312,"id":1517,"sizeY":24},{"sizeX":24,"x":612,"y":420,"id":1521,"sizeY":24},{"sizeX":24,"x":780,"y":300,"id":1526,"sizeY":24},{"sizeX":24,"x":360,"y":384,"id":1529,"sizeY":24},{"sizeX":72,"x":540,"y":636,"id":1612,"sizeY":72},{"sizeX":24,"x":240,"y":732,"id":1615,"sizeY":24},{"sizeX":24,"x":180,"y":732,"id":1617,"sizeY":24},{"sizeX":24,"x":120,"y":780,"id":1620,"sizeY":24},{"sizeX":24,"x":120,"y":732,"id":1621,"sizeY":24},{"sizeX":24,"x":120,"y":828,"id":1622,"sizeY":24},{"sizeX":24,"x":264,"y":660,"id":1655,"sizeY":24},{"sizeX":24,"x":120,"y":876,"id":1660,"sizeY":24},{"sizeX":24,"x":216,"y":780,"id":1661,"sizeY":24},{"sizeX":24,"x":168,"y":780,"id":1662,"sizeY":24},{"sizeX":24,"x":168,"y":828,"id":1663,"sizeY":24},{"sizeX":24,"x":168,"y":876,"id":1664,"sizeY":24},{"sizeX":24,"x":108,"y":624,"id":1713,"sizeY":24},{"sizeX":24,"x":60,"y":624,"id":1714,"sizeY":24},{"sizeX":24,"x":648,"y":312,"id":1739,"sizeY":24},{"sizeX":24,"x":612,"y":132,"id":1811,"sizeY":24},{"sizeX":48,"x":396,"y":720,"id":1812,"sizeY":48},{"sizeX":48,"x":432,"y":648,"id":1813,"sizeY":48},{"sizeX":48,"x":432,"y":564,"id":1814,"sizeY":48},{"sizeX":24,"x":420,"y":312,"id":1815,"sizeY":24},{"sizeX":24,"x":756,"y":720,"id":1824,"sizeY":24},{"sizeX":24,"x":780,"y":216,"id":1858,"sizeY":24},{"sizeX":24,"x":456,"y":348,"id":1871,"sizeY":24},{"sizeX":24,"x":0,"y":228,"id":1876,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1877,"sizeY":24},{"sizeX":48,"x":300,"y":480,"id":1903,"sizeY":48},{"sizeX":24,"x":0,"y":276,"id":1906,"sizeY":24},{"sizeX":24,"x":456,"y":312,"id":1909,"sizeY":24},{"sizeX":48,"x":504,"y":48,"id":1921,"sizeY":48},{"sizeX":24,"x":324,"y":72,"id":1922,"sizeY":24},{"sizeX":24,"x":324,"y":36,"id":1923,"sizeY":24},{"sizeX":24,"x":324,"y":0,"id":1924,"sizeY":24},{"sizeX":24,"x":360,"y":252,"id":2069,"sizeY":24},{"sizeX":24,"x":324,"y":948,"id":2293,"sizeY":24}],"lineID":5,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 4 - 512 EU (HV)","icon":{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Finally some power to work with. This tier will help you reach distant planets and gather more rare resources to build even more advanced machines."}},"order":5},{"quests":[{"sizeX":72,"x":252,"y":324,"id":176,"sizeY":72},{"sizeX":48,"x":192,"y":468,"id":186,"sizeY":48},{"sizeX":24,"x":216,"y":396,"id":187,"sizeY":24},{"sizeX":48,"x":168,"y":336,"id":188,"sizeY":48},{"sizeX":48,"x":420,"y":336,"id":189,"sizeY":48},{"sizeX":48,"x":492,"y":336,"id":190,"sizeY":48},{"sizeX":24,"x":552,"y":432,"id":191,"sizeY":24},{"sizeX":24,"x":588,"y":432,"id":192,"sizeY":24},{"sizeX":48,"x":492,"y":420,"id":193,"sizeY":48},{"sizeX":24,"x":504,"y":264,"id":194,"sizeY":24},{"sizeX":24,"x":504,"y":300,"id":195,"sizeY":24},{"sizeX":24,"x":552,"y":348,"id":196,"sizeY":24},{"sizeX":24,"x":552,"y":300,"id":197,"sizeY":24},{"sizeX":24,"x":588,"y":480,"id":198,"sizeY":24},{"sizeX":24,"x":456,"y":216,"id":199,"sizeY":24},{"sizeX":24,"x":456,"y":180,"id":200,"sizeY":24},{"sizeX":24,"x":504,"y":216,"id":206,"sizeY":24},{"sizeX":24,"x":432,"y":516,"id":207,"sizeY":24},{"sizeX":24,"x":432,"y":480,"id":208,"sizeY":24},{"sizeX":24,"x":432,"y":552,"id":209,"sizeY":24},{"sizeX":24,"x":396,"y":516,"id":210,"sizeY":24},{"sizeX":24,"x":432,"y":444,"id":211,"sizeY":24},{"sizeX":24,"x":336,"y":240,"id":212,"sizeY":24},{"sizeX":24,"x":144,"y":168,"id":805,"sizeY":24},{"sizeX":24,"x":108,"y":168,"id":806,"sizeY":24},{"sizeX":24,"x":72,"y":132,"id":807,"sizeY":24},{"sizeX":72,"x":180,"y":672,"id":861,"sizeY":72},{"sizeX":24,"x":540,"y":180,"id":936,"sizeY":24},{"sizeX":24,"x":540,"y":144,"id":937,"sizeY":24},{"sizeX":24,"x":576,"y":180,"id":1003,"sizeY":24},{"sizeX":24,"x":576,"y":144,"id":1004,"sizeY":24},{"sizeX":24,"x":336,"y":408,"id":1005,"sizeY":24},{"sizeX":48,"x":0,"y":0,"id":1223,"sizeY":48},{"sizeX":48,"x":264,"y":84,"id":1224,"sizeY":48},{"sizeX":48,"x":348,"y":84,"id":1228,"sizeY":48},{"sizeX":48,"x":264,"y":228,"id":1229,"sizeY":48},{"sizeX":48,"x":264,"y":156,"id":1230,"sizeY":48},{"sizeX":48,"x":180,"y":84,"id":1234,"sizeY":48},{"sizeX":24,"x":72,"y":288,"id":1241,"sizeY":24},{"sizeX":24,"x":336,"y":276,"id":1242,"sizeY":24},{"sizeX":48,"x":120,"y":540,"id":1243,"sizeY":48},{"sizeX":48,"x":192,"y":540,"id":1244,"sizeY":48},{"sizeX":48,"x":192,"y":228,"id":1245,"sizeY":48},{"sizeX":48,"x":0,"y":156,"id":1246,"sizeY":48},{"sizeX":48,"x":0,"y":228,"id":1247,"sizeY":48},{"sizeX":48,"x":108,"y":0,"id":1248,"sizeY":48},{"sizeX":48,"x":108,"y":84,"id":1249,"sizeY":48},{"sizeX":48,"x":180,"y":0,"id":1250,"sizeY":48},{"sizeX":72,"x":252,"y":-12,"id":1251,"sizeY":72},{"sizeX":24,"x":108,"y":288,"id":1252,"sizeY":24},{"sizeX":48,"x":348,"y":0,"id":1261,"sizeY":48},{"sizeX":24,"x":504,"y":180,"id":1262,"sizeY":24},{"sizeX":24,"x":504,"y":144,"id":1263,"sizeY":24},{"sizeX":24,"x":504,"y":108,"id":1264,"sizeY":24},{"sizeX":24,"x":456,"y":144,"id":1265,"sizeY":24},{"sizeX":48,"x":180,"y":156,"id":1406,"sizeY":48},{"sizeX":24,"x":72,"y":168,"id":1407,"sizeY":24},{"sizeX":24,"x":180,"y":624,"id":1408,"sizeY":24},{"sizeX":24,"x":180,"y":396,"id":1415,"sizeY":24},{"sizeX":24,"x":132,"y":624,"id":1416,"sizeY":24},{"sizeX":24,"x":132,"y":696,"id":1418,"sizeY":24},{"sizeX":48,"x":120,"y":468,"id":1461,"sizeY":48},{"sizeX":24,"x":336,"y":324,"id":1474,"sizeY":24},{"sizeX":24,"x":144,"y":288,"id":1480,"sizeY":24},{"sizeX":24,"x":588,"y":516,"id":1481,"sizeY":24},{"sizeX":24,"x":336,"y":372,"id":1525,"sizeY":24},{"sizeX":24,"x":156,"y":432,"id":1656,"sizeY":24},{"sizeX":24,"x":120,"y":432,"id":1657,"sizeY":24},{"sizeX":24,"x":84,"y":432,"id":1658,"sizeY":24},{"sizeX":24,"x":48,"y":432,"id":1659,"sizeY":24},{"sizeX":24,"x":276,"y":696,"id":1847,"sizeY":24},{"sizeX":24,"x":72,"y":96,"id":1878,"sizeY":24},{"sizeX":24,"x":36,"y":60,"id":1879,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":1880,"sizeY":24},{"sizeX":48,"x":264,"y":540,"id":1891,"sizeY":48},{"sizeX":24,"x":552,"y":480,"id":1898,"sizeY":24},{"sizeX":24,"x":504,"y":480,"id":1899,"sizeY":24},{"sizeX":24,"x":504,"y":516,"id":1900,"sizeY":24},{"sizeX":24,"x":552,"y":516,"id":1901,"sizeY":24},{"sizeX":24,"x":456,"y":300,"id":1902,"sizeY":24},{"sizeX":48,"x":96,"y":228,"id":1925,"sizeY":48},{"sizeX":48,"x":264,"y":468,"id":2018,"sizeY":48},{"sizeX":48,"x":336,"y":540,"id":2023,"sizeY":48},{"sizeX":24,"x":384,"y":372,"id":2210,"sizeY":24},{"sizeX":24,"x":204,"y":288,"id":2294,"sizeY":24}],"lineID":6,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 5 - 2048 EU (EV)","icon":{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Titanium level, fissile energy sources, Applied Energistics 2."}},"order":6},{"quests":[{"sizeX":72,"x":456,"y":108,"id":213,"sizeY":72},{"sizeX":48,"x":468,"y":300,"id":214,"sizeY":48},{"sizeX":72,"x":456,"y":204,"id":215,"sizeY":72},{"sizeX":24,"x":720,"y":288,"id":216,"sizeY":24},{"sizeX":24,"x":456,"y":372,"id":217,"sizeY":24},{"sizeX":24,"x":504,"y":372,"id":218,"sizeY":24},{"sizeX":24,"x":672,"y":132,"id":219,"sizeY":24},{"sizeX":24,"x":720,"y":132,"id":220,"sizeY":24},{"sizeX":24,"x":720,"y":84,"id":221,"sizeY":24},{"sizeX":24,"x":768,"y":132,"id":222,"sizeY":24},{"sizeX":24,"x":768,"y":84,"id":223,"sizeY":24},{"sizeX":24,"x":168,"y":264,"id":1006,"sizeY":24},{"sizeX":24,"x":132,"y":300,"id":1007,"sizeY":24},{"sizeX":24,"x":600,"y":72,"id":1409,"sizeY":24},{"sizeX":24,"x":528,"y":72,"id":1410,"sizeY":24},{"sizeX":72,"x":348,"y":108,"id":1413,"sizeY":72},{"sizeX":72,"x":252,"y":204,"id":1414,"sizeY":72},{"sizeX":72,"x":600,"y":204,"id":1491,"sizeY":72},{"sizeX":24,"x":564,"y":72,"id":1522,"sizeY":24},{"sizeX":48,"x":384,"y":300,"id":1533,"sizeY":48},{"sizeX":48,"x":552,"y":300,"id":1534,"sizeY":48},{"sizeX":48,"x":264,"y":300,"id":1538,"sizeY":48},{"sizeX":48,"x":360,"y":216,"id":1539,"sizeY":48},{"sizeX":24,"x":684,"y":288,"id":1665,"sizeY":24},{"sizeX":48,"x":612,"y":468,"id":1666,"sizeY":48},{"sizeX":48,"x":264,"y":468,"id":1667,"sizeY":48},{"sizeX":48,"x":84,"y":216,"id":1669,"sizeY":48},{"sizeX":48,"x":264,"y":648,"id":1670,"sizeY":48},{"sizeX":48,"x":84,"y":648,"id":1671,"sizeY":48},{"sizeX":24,"x":168,"y":624,"id":1672,"sizeY":24},{"sizeX":48,"x":84,"y":336,"id":1673,"sizeY":48},{"sizeX":24,"x":60,"y":300,"id":1674,"sizeY":24},{"sizeX":48,"x":0,"y":216,"id":1675,"sizeY":48},{"sizeX":48,"x":0,"y":120,"id":1676,"sizeY":48},{"sizeX":48,"x":84,"y":120,"id":1677,"sizeY":48},{"sizeX":48,"x":180,"y":0,"id":1678,"sizeY":48},{"sizeX":48,"x":84,"y":0,"id":1679,"sizeY":48},{"sizeX":48,"x":948,"y":216,"id":1691,"sizeY":48},{"sizeX":48,"x":1032,"y":216,"id":1692,"sizeY":48},{"sizeX":48,"x":1032,"y":300,"id":1693,"sizeY":48},{"sizeX":48,"x":1032,"y":384,"id":1694,"sizeY":48},{"sizeX":48,"x":1032,"y":468,"id":1695,"sizeY":48},{"sizeX":48,"x":768,"y":216,"id":1696,"sizeY":48},{"sizeX":48,"x":1032,"y":612,"id":1697,"sizeY":48},{"sizeX":48,"x":948,"y":468,"id":1698,"sizeY":48},{"sizeX":48,"x":948,"y":384,"id":1699,"sizeY":48},{"sizeX":48,"x":864,"y":468,"id":1700,"sizeY":48},{"sizeX":48,"x":684,"y":468,"id":1701,"sizeY":48},{"sizeX":48,"x":864,"y":384,"id":1702,"sizeY":48},{"sizeX":48,"x":864,"y":300,"id":1703,"sizeY":48},{"sizeX":48,"x":768,"y":384,"id":1704,"sizeY":48},{"sizeX":48,"x":264,"y":0,"id":1705,"sizeY":48},{"sizeX":48,"x":360,"y":0,"id":1706,"sizeY":48},{"sizeX":48,"x":468,"y":0,"id":1707,"sizeY":48},{"sizeX":24,"x":60,"y":396,"id":1712,"sizeY":24},{"sizeX":48,"x":192,"y":396,"id":1715,"sizeY":48},{"sizeX":48,"x":192,"y":300,"id":1716,"sizeY":48},{"sizeX":48,"x":192,"y":468,"id":1717,"sizeY":48},{"sizeX":24,"x":480,"y":72,"id":1718,"sizeY":24},{"sizeX":24,"x":216,"y":600,"id":1719,"sizeY":24},{"sizeX":48,"x":264,"y":120,"id":1890,"sizeY":48},{"sizeX":24,"x":372,"y":444,"id":1896,"sizeY":24},{"sizeX":24,"x":372,"y":396,"id":1897,"sizeY":24},{"sizeX":24,"x":144,"y":132,"id":2148,"sizeY":24},{"sizeX":24,"x":180,"y":132,"id":2149,"sizeY":24},{"sizeX":24,"x":180,"y":168,"id":2150,"sizeY":24}],"lineID":7,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 6 - 8192 EU (IV)","icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Tungsten level, Asteriod dims, assembly line"}},"order":7},{"quests":[{"sizeX":24,"x":108,"y":48,"id":201,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":202,"sizeY":24},{"sizeX":48,"x":312,"y":96,"id":1489,"sizeY":48},{"sizeX":48,"x":240,"y":96,"id":1490,"sizeY":48},{"sizeX":72,"x":300,"y":0,"id":1493,"sizeY":72},{"sizeX":24,"x":180,"y":48,"id":1680,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":1681,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1682,"sizeY":24},{"sizeX":48,"x":240,"y":168,"id":1683,"sizeY":48},{"sizeX":24,"x":180,"y":252,"id":1684,"sizeY":24},{"sizeX":48,"x":240,"y":240,"id":1685,"sizeY":48},{"sizeX":24,"x":180,"y":180,"id":1686,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1687,"sizeY":24},{"sizeX":24,"x":180,"y":216,"id":1688,"sizeY":24},{"sizeX":48,"x":168,"y":96,"id":1689,"sizeY":48},{"sizeX":24,"x":108,"y":180,"id":1708,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1709,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":1710,"sizeY":24},{"sizeX":24,"x":324,"y":288,"id":1711,"sizeY":24},{"sizeX":24,"x":396,"y":60,"id":1720,"sizeY":24},{"sizeX":24,"x":432,"y":60,"id":1721,"sizeY":24},{"sizeX":48,"x":384,"y":96,"id":1722,"sizeY":48},{"sizeX":24,"x":384,"y":24,"id":2024,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":2041,"sizeY":24},{"sizeX":24,"x":252,"y":60,"id":2071,"sizeY":24}],"lineID":8,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 7 - 32768 EU (LuV)","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""},"bg_image":"","bg_size":256,"desc":"If you have made it this far, you should walk with your head held high - you are at the start of the lategame. Endgame is still a long road ahead of you, but you are now an expert at GTNH and most of the mods it comes with. Congrats, and be proud of your Big Dick Energy."}},"order":8},{"quests":[{"sizeX":48,"x":108,"y":84,"id":1197,"sizeY":48},{"sizeX":48,"x":228,"y":168,"id":1198,"sizeY":48},{"sizeX":48,"x":108,"y":168,"id":1199,"sizeY":48},{"sizeX":24,"x":24,"y":84,"id":1200,"sizeY":24},{"sizeX":24,"x":24,"y":120,"id":1201,"sizeY":24},{"sizeX":48,"x":228,"y":96,"id":1202,"sizeY":48},{"sizeX":48,"x":228,"y":12,"id":1203,"sizeY":48},{"sizeX":72,"x":0,"y":0,"id":1212,"sizeY":72},{"sizeX":48,"x":108,"y":12,"id":1213,"sizeY":48}],"lineID":9,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Fusion","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Making power for the lategame tiers, LuV-UMV"}},"order":9},{"quests":[{"sizeX":24,"x":306,"y":36,"id":627,"sizeY":24},{"sizeX":24,"x":342,"y":0,"id":628,"sizeY":24},{"sizeX":24,"x":378,"y":36,"id":629,"sizeY":24},{"sizeX":24,"x":504,"y":108,"id":630,"sizeY":24},{"sizeX":24,"x":342,"y":36,"id":631,"sizeY":24},{"sizeX":24,"x":468,"y":108,"id":632,"sizeY":24},{"sizeX":24,"x":468,"y":72,"id":633,"sizeY":24},{"sizeX":24,"x":270,"y":36,"id":634,"sizeY":24},{"sizeX":24,"x":270,"y":72,"id":635,"sizeY":24},{"sizeX":24,"x":270,"y":144,"id":636,"sizeY":24},{"sizeX":24,"x":270,"y":108,"id":637,"sizeY":24},{"sizeX":24,"x":270,"y":180,"id":638,"sizeY":24},{"sizeX":24,"x":342,"y":180,"id":665,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":718,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":719,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":720,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":721,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":722,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":723,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":724,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":725,"sizeY":24},{"sizeX":24,"x":504,"y":72,"id":1009,"sizeY":24},{"sizeX":24,"x":426,"y":72,"id":1010,"sizeY":24},{"sizeX":24,"x":270,"y":228,"id":1086,"sizeY":24},{"sizeX":24,"x":306,"y":180,"id":1087,"sizeY":24},{"sizeX":24,"x":342,"y":228,"id":1088,"sizeY":24},{"sizeX":24,"x":306,"y":228,"id":1089,"sizeY":24},{"sizeX":24,"x":426,"y":132,"id":1178,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1270,"sizeY":24},{"sizeX":24,"x":342,"y":72,"id":1272,"sizeY":24},{"sizeX":24,"x":378,"y":108,"id":1275,"sizeY":24},{"sizeX":24,"x":378,"y":72,"id":1276,"sizeY":24},{"sizeX":24,"x":552,"y":36,"id":1277,"sizeY":24},{"sizeX":24,"x":342,"y":108,"id":1278,"sizeY":24},{"sizeX":24,"x":552,"y":72,"id":1280,"sizeY":24},{"sizeX":24,"x":552,"y":108,"id":1281,"sizeY":24},{"sizeX":24,"x":588,"y":36,"id":1282,"sizeY":24},{"sizeX":24,"x":624,"y":36,"id":1283,"sizeY":24},{"sizeX":24,"x":624,"y":0,"id":1284,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1288,"sizeY":24},{"sizeX":24,"x":354,"y":366,"id":1483,"sizeY":24},{"sizeX":24,"x":402,"y":318,"id":1484,"sizeY":24},{"sizeX":24,"x":450,"y":366,"id":1486,"sizeY":24},{"sizeX":24,"x":498,"y":318,"id":1487,"sizeY":24},{"sizeX":24,"x":546,"y":366,"id":1488,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1541,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1542,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1543,"sizeY":24},{"sizeX":24,"x":270,"y":0,"id":1560,"sizeY":24},{"sizeX":24,"x":126,"y":228,"id":1600,"sizeY":24},{"sizeX":24,"x":180,"y":228,"id":1601,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1602,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1603,"sizeY":24},{"sizeX":24,"x":108,"y":300,"id":1604,"sizeY":24},{"sizeX":24,"x":180,"y":300,"id":1605,"sizeY":24},{"sizeX":24,"x":144,"y":300,"id":1606,"sizeY":24},{"sizeX":24,"x":126,"y":336,"id":1607,"sizeY":24},{"sizeX":24,"x":0,"y":264,"id":1737,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1793,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1794,"sizeY":24},{"sizeX":24,"x":180,"y":264,"id":1795,"sizeY":24},{"sizeX":24,"x":72,"y":300,"id":1797,"sizeY":24},{"sizeX":24,"x":36,"y":336,"id":1798,"sizeY":24},{"sizeX":24,"x":36,"y":372,"id":1799,"sizeY":24},{"sizeX":24,"x":0,"y":372,"id":1800,"sizeY":24},{"sizeX":24,"x":0,"y":336,"id":1801,"sizeY":24},{"sizeX":24,"x":108,"y":372,"id":1802,"sizeY":24},{"sizeX":24,"x":180,"y":336,"id":1803,"sizeY":24},{"sizeX":24,"x":216,"y":336,"id":1804,"sizeY":24},{"sizeX":24,"x":144,"y":408,"id":1805,"sizeY":24},{"sizeX":24,"x":72,"y":372,"id":1806,"sizeY":24},{"sizeX":24,"x":252,"y":408,"id":1807,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1808,"sizeY":24},{"sizeX":24,"x":0,"y":408,"id":1809,"sizeY":24},{"sizeX":24,"x":378,"y":180,"id":1836,"sizeY":24},{"sizeX":24,"x":306,"y":144,"id":1854,"sizeY":24},{"sizeX":24,"x":306,"y":108,"id":1855,"sizeY":24},{"sizeX":24,"x":342,"y":144,"id":1857,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1862,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1920,"sizeY":24},{"sizeX":24,"x":36,"y":408,"id":1927,"sizeY":24},{"sizeX":24,"x":72,"y":408,"id":1928,"sizeY":24},{"sizeX":24,"x":108,"y":408,"id":1929,"sizeY":24},{"sizeX":24,"x":216,"y":408,"id":1930,"sizeY":24},{"sizeX":24,"x":36,"y":300,"id":1931,"sizeY":24},{"sizeX":24,"x":180,"y":408,"id":1932,"sizeY":24},{"sizeX":24,"x":0,"y":300,"id":1933,"sizeY":24},{"sizeX":24,"x":216,"y":372,"id":1949,"sizeY":24},{"sizeX":24,"x":252,"y":372,"id":1950,"sizeY":24},{"sizeX":24,"x":288,"y":408,"id":1951,"sizeY":24},{"sizeX":24,"x":72,"y":264,"id":2048,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":2264,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":2265,"sizeY":24},{"sizeX":24,"x":36,"y":264,"id":2266,"sizeY":24}],"lineID":10,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Fishing Farming Cooking","icon":{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Catch it, grow it, eat it!"}},"order":10},{"quests":[{"sizeX":24,"x":204,"y":192,"id":139,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":645,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":647,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":648,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":649,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":650,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":651,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":652,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":653,"sizeY":24},{"sizeX":24,"x":24,"y":408,"id":654,"sizeY":24},{"sizeX":24,"x":0,"y":468,"id":655,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":683,"sizeY":24},{"sizeX":24,"x":204,"y":0,"id":684,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":685,"sizeY":24},{"sizeX":24,"x":180,"y":48,"id":686,"sizeY":24},{"sizeX":24,"x":204,"y":96,"id":687,"sizeY":24},{"sizeX":24,"x":252,"y":96,"id":688,"sizeY":24},{"sizeX":24,"x":300,"y":96,"id":689,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":690,"sizeY":24},{"sizeX":24,"x":108,"y":96,"id":691,"sizeY":24},{"sizeX":24,"x":120,"y":192,"id":692,"sizeY":24},{"sizeX":24,"x":120,"y":252,"id":775,"sizeY":24},{"sizeX":24,"x":180,"y":312,"id":776,"sizeY":24},{"sizeX":24,"x":60,"y":312,"id":777,"sizeY":24},{"sizeX":24,"x":120,"y":312,"id":779,"sizeY":24},{"sizeX":24,"x":228,"y":312,"id":796,"sizeY":24},{"sizeX":24,"x":228,"y":348,"id":797,"sizeY":24},{"sizeX":24,"x":216,"y":408,"id":799,"sizeY":24},{"sizeX":24,"x":96,"y":372,"id":800,"sizeY":24},{"sizeX":24,"x":144,"y":372,"id":801,"sizeY":24},{"sizeX":24,"x":120,"y":408,"id":802,"sizeY":24},{"sizeX":24,"x":96,"y":468,"id":803,"sizeY":24},{"sizeX":24,"x":144,"y":468,"id":804,"sizeY":24},{"sizeX":24,"x":204,"y":144,"id":991,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":997,"sizeY":24},{"sizeX":24,"x":180,"y":348,"id":1419,"sizeY":24},{"sizeX":24,"x":48,"y":216,"id":1442,"sizeY":24},{"sizeX":24,"x":48,"y":252,"id":1443,"sizeY":24},{"sizeX":24,"x":84,"y":252,"id":1444,"sizeY":24},{"sizeX":24,"x":252,"y":48,"id":1779,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":1781,"sizeY":24},{"sizeX":24,"x":324,"y":180,"id":1782,"sizeY":24},{"sizeX":24,"x":324,"y":216,"id":1783,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1784,"sizeY":24},{"sizeX":24,"x":324,"y":288,"id":1785,"sizeY":24},{"sizeX":24,"x":324,"y":324,"id":1786,"sizeY":24},{"sizeX":24,"x":348,"y":96,"id":1839,"sizeY":24},{"sizeX":24,"x":156,"y":252,"id":1848,"sizeY":24},{"sizeX":24,"x":396,"y":96,"id":2057,"sizeY":24},{"sizeX":24,"x":396,"y":144,"id":2058,"sizeY":24},{"sizeX":24,"x":372,"y":288,"id":2112,"sizeY":24},{"sizeX":24,"x":420,"y":216,"id":2113,"sizeY":24},{"sizeX":24,"x":420,"y":180,"id":2114,"sizeY":24},{"sizeX":24,"x":456,"y":324,"id":2115,"sizeY":24},{"sizeX":24,"x":420,"y":252,"id":2116,"sizeY":24},{"sizeX":24,"x":420,"y":288,"id":2117,"sizeY":24},{"sizeX":24,"x":420,"y":360,"id":2118,"sizeY":24},{"sizeX":24,"x":420,"y":324,"id":2139,"sizeY":24}],"lineID":11,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Armors and Jetpacks","icon":{"id":"GraviSuite:graviChestPlate","Count":1,"tag":{"charge":30000000},"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Guiding you through the armor and jetpacks and Adventure Backpacks."}},"order":11},{"quests":[{"sizeX":24,"x":204,"y":0,"id":45,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":74,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":75,"sizeY":24},{"sizeX":48,"x":84,"y":60,"id":76,"sizeY":48},{"sizeX":48,"x":84,"y":144,"id":77,"sizeY":48},{"sizeX":48,"x":84,"y":240,"id":78,"sizeY":48},{"sizeX":48,"x":84,"y":312,"id":79,"sizeY":48},{"sizeX":48,"x":252,"y":144,"id":80,"sizeY":48},{"sizeX":48,"x":144,"y":312,"id":81,"sizeY":48},{"sizeX":24,"x":264,"y":108,"id":82,"sizeY":24},{"sizeX":24,"x":36,"y":300,"id":83,"sizeY":24},{"sizeX":24,"x":324,"y":108,"id":85,"sizeY":24},{"sizeX":48,"x":84,"y":384,"id":86,"sizeY":48},{"sizeX":24,"x":204,"y":60,"id":87,"sizeY":24},{"sizeX":48,"x":144,"y":384,"id":475,"sizeY":48},{"sizeX":48,"x":144,"y":456,"id":476,"sizeY":48},{"sizeX":48,"x":84,"y":456,"id":477,"sizeY":48},{"sizeX":24,"x":204,"y":156,"id":556,"sizeY":24},{"sizeX":24,"x":396,"y":60,"id":559,"sizeY":24},{"sizeX":24,"x":396,"y":0,"id":560,"sizeY":24},{"sizeX":24,"x":444,"y":0,"id":561,"sizeY":24},{"sizeX":24,"x":444,"y":60,"id":562,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":695,"sizeY":24},{"sizeX":24,"x":36,"y":60,"id":696,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":697,"sizeY":24},{"sizeX":24,"x":204,"y":108,"id":698,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":699,"sizeY":24},{"sizeX":24,"x":36,"y":204,"id":755,"sizeY":24},{"sizeX":24,"x":36,"y":252,"id":756,"sizeY":24},{"sizeX":24,"x":264,"y":204,"id":761,"sizeY":24},{"sizeX":24,"x":324,"y":156,"id":762,"sizeY":24},{"sizeX":24,"x":324,"y":204,"id":763,"sizeY":24},{"sizeX":24,"x":204,"y":204,"id":764,"sizeY":24},{"sizeX":24,"x":360,"y":108,"id":765,"sizeY":24},{"sizeX":24,"x":468,"y":192,"id":766,"sizeY":24},{"sizeX":24,"x":492,"y":0,"id":767,"sizeY":24},{"sizeX":24,"x":420,"y":156,"id":768,"sizeY":24},{"sizeX":24,"x":156,"y":252,"id":781,"sizeY":24},{"sizeX":24,"x":588,"y":60,"id":783,"sizeY":24},{"sizeX":24,"x":540,"y":0,"id":784,"sizeY":24},{"sizeX":24,"x":492,"y":60,"id":786,"sizeY":24},{"sizeX":24,"x":492,"y":108,"id":787,"sizeY":24},{"sizeX":24,"x":468,"y":156,"id":788,"sizeY":24},{"sizeX":24,"x":360,"y":60,"id":870,"sizeY":24},{"sizeX":24,"x":444,"y":108,"id":876,"sizeY":24},{"sizeX":48,"x":240,"y":312,"id":940,"sizeY":48},{"sizeX":48,"x":0,"y":144,"id":941,"sizeY":48},{"sizeX":24,"x":156,"y":60,"id":954,"sizeY":24},{"sizeX":24,"x":156,"y":204,"id":1179,"sizeY":24},{"sizeX":48,"x":468,"y":432,"id":1412,"sizeY":48},{"sizeX":48,"x":252,"y":0,"id":1503,"sizeY":48},{"sizeX":24,"x":396,"y":108,"id":1545,"sizeY":24},{"sizeX":24,"x":420,"y":192,"id":1652,"sizeY":24},{"sizeX":24,"x":540,"y":60,"id":1654,"sizeY":24},{"sizeX":24,"x":540,"y":108,"id":1740,"sizeY":24},{"sizeX":24,"x":360,"y":156,"id":1742,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1743,"sizeY":24},{"sizeX":24,"x":552,"y":444,"id":1787,"sizeY":24},{"sizeX":48,"x":84,"y":528,"id":1817,"sizeY":48},{"sizeX":24,"x":360,"y":252,"id":1818,"sizeY":24},{"sizeX":24,"x":324,"y":396,"id":1820,"sizeY":24},{"sizeX":24,"x":516,"y":192,"id":1822,"sizeY":24},{"sizeX":24,"x":372,"y":396,"id":1825,"sizeY":24},{"sizeX":24,"x":420,"y":396,"id":1826,"sizeY":24},{"sizeX":24,"x":420,"y":432,"id":1827,"sizeY":24},{"sizeX":24,"x":372,"y":432,"id":1828,"sizeY":24},{"sizeX":24,"x":324,"y":432,"id":1829,"sizeY":24},{"sizeX":24,"x":324,"y":468,"id":1830,"sizeY":24},{"sizeX":24,"x":264,"y":60,"id":1832,"sizeY":24},{"sizeX":48,"x":144,"y":528,"id":1833,"sizeY":48},{"sizeX":24,"x":156,"y":156,"id":1853,"sizeY":24},{"sizeX":24,"x":588,"y":108,"id":1893,"sizeY":24},{"sizeX":24,"x":588,"y":156,"id":1894,"sizeY":24},{"sizeX":48,"x":192,"y":240,"id":1904,"sizeY":48},{"sizeX":24,"x":480,"y":396,"id":1905,"sizeY":24},{"sizeX":24,"x":552,"y":396,"id":2027,"sizeY":24},{"sizeX":24,"x":216,"y":468,"id":2044,"sizeY":24},{"sizeX":24,"x":264,"y":468,"id":2045,"sizeY":24},{"sizeX":24,"x":324,"y":324,"id":2144,"sizeY":24}],"lineID":12,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Multiblock Goals","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This set is a global tracker for multiblock structure goals. As you can build several parts of many multiblocks way earlier than the respective tier. Check back often."}},"order":12},{"quests":[{"sizeX":24,"x":36,"y":216,"id":1464,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":1935,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1936,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1937,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":1938,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":1939,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1940,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1941,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1942,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1943,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":1944,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1945,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1946,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1947,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1948,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1952,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":1953,"sizeY":24},{"sizeX":24,"x":216,"y":72,"id":1955,"sizeY":24},{"sizeX":24,"x":216,"y":108,"id":1956,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":1957,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1958,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":1959,"sizeY":24},{"sizeX":24,"x":216,"y":180,"id":1960,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1961,"sizeY":24},{"sizeX":24,"x":288,"y":180,"id":1962,"sizeY":24},{"sizeX":24,"x":216,"y":216,"id":1963,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1964,"sizeY":24},{"sizeX":24,"x":288,"y":144,"id":1965,"sizeY":24},{"sizeX":24,"x":288,"y":108,"id":1966,"sizeY":24},{"sizeX":24,"x":252,"y":72,"id":1967,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":1968,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1969,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1970,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1971,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1972,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":1973,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1974,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":1975,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1976,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1977,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1978,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1979,"sizeY":24},{"sizeX":24,"x":0,"y":252,"id":1980,"sizeY":24},{"sizeX":24,"x":36,"y":252,"id":1981,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1982,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":1983,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1984,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1985,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":1986,"sizeY":24},{"sizeX":24,"x":72,"y":252,"id":2070,"sizeY":24},{"sizeX":24,"x":180,"y":108,"id":2105,"sizeY":24},{"sizeX":24,"x":0,"y":288,"id":2138,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":2160,"sizeY":24}],"lineID":13,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Building Better Bases","icon":{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Tired of torches everywhere making your base look like a loser built it? Make your base look like a winner with these quests. (under construction)"}},"order":13},{"quests":[{"sizeX":24,"x":48,"y":96,"id":106,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":107,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":108,"sizeY":24},{"sizeX":24,"x":216,"y":48,"id":109,"sizeY":24},{"sizeX":24,"x":216,"y":96,"id":110,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":111,"sizeY":24},{"sizeX":24,"x":156,"y":48,"id":112,"sizeY":24},{"sizeX":24,"x":156,"y":204,"id":1208,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":1209,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1210,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":1211,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1550,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":1551,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1552,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1553,"sizeY":24}],"lineID":14,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Steve Carts","icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Basic auto farming and mining. Protect them from lightning strikes!"}},"order":14},{"quests":[{"sizeX":24,"x":0,"y":0,"id":1623,"sizeY":24},{"sizeX":24,"x":0,"y":42,"id":1624,"sizeY":24},{"sizeX":24,"x":0,"y":78,"id":1625,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":1626,"sizeY":24},{"sizeX":24,"x":48,"y":150,"id":1627,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":1628,"sizeY":24},{"sizeX":24,"x":48,"y":198,"id":1629,"sizeY":24},{"sizeX":24,"x":96,"y":120,"id":1630,"sizeY":24},{"sizeX":24,"x":150,"y":120,"id":1631,"sizeY":24},{"sizeX":24,"x":150,"y":78,"id":1632,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":1633,"sizeY":24},{"sizeX":24,"x":150,"y":162,"id":1634,"sizeY":24},{"sizeX":24,"x":204,"y":162,"id":1635,"sizeY":24},{"sizeX":24,"x":204,"y":78,"id":1636,"sizeY":24},{"sizeX":24,"x":204,"y":30,"id":1637,"sizeY":24},{"sizeX":24,"x":252,"y":30,"id":1638,"sizeY":24},{"sizeX":24,"x":252,"y":78,"id":1639,"sizeY":24},{"sizeX":24,"x":300,"y":78,"id":1640,"sizeY":24},{"sizeX":24,"x":150,"y":30,"id":1641,"sizeY":24},{"sizeX":24,"x":300,"y":30,"id":1642,"sizeY":24}],"lineID":15,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Project Red","icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Low tier storage and automation. You'll need a forming press to get started."}},"order":15},{"quests":[{"sizeX":24,"x":36,"y":0,"id":872,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":873,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":880,"sizeY":24},{"sizeX":24,"x":348,"y":0,"id":881,"sizeY":24},{"sizeX":24,"x":444,"y":0,"id":882,"sizeY":24},{"sizeX":24,"x":396,"y":0,"id":883,"sizeY":24},{"sizeX":24,"x":204,"y":0,"id":884,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":885,"sizeY":24},{"sizeX":24,"x":486,"y":0,"id":886,"sizeY":24},{"sizeX":24,"x":300,"y":0,"id":888,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":949,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":950,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":955,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":956,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":957,"sizeY":24},{"sizeX":24,"x":204,"y":144,"id":958,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":959,"sizeY":24},{"sizeX":24,"x":300,"y":144,"id":960,"sizeY":24},{"sizeX":24,"x":348,"y":144,"id":961,"sizeY":24},{"sizeX":24,"x":444,"y":144,"id":963,"sizeY":24},{"sizeX":24,"x":444,"y":180,"id":964,"sizeY":24},{"sizeX":24,"x":480,"y":108,"id":965,"sizeY":24},{"sizeX":24,"x":480,"y":144,"id":966,"sizeY":24},{"sizeX":24,"x":480,"y":180,"id":967,"sizeY":24},{"sizeX":24,"x":516,"y":180,"id":968,"sizeY":24},{"sizeX":24,"x":480,"y":216,"id":969,"sizeY":24},{"sizeX":24,"x":516,"y":216,"id":970,"sizeY":24},{"sizeX":24,"x":516,"y":252,"id":971,"sizeY":24},{"sizeX":24,"x":588,"y":144,"id":972,"sizeY":24},{"sizeX":24,"x":588,"y":108,"id":973,"sizeY":24},{"sizeX":24,"x":732,"y":144,"id":974,"sizeY":24},{"sizeX":24,"x":624,"y":144,"id":975,"sizeY":24},{"sizeX":24,"x":768,"y":144,"id":976,"sizeY":24},{"sizeX":24,"x":624,"y":108,"id":977,"sizeY":24},{"sizeX":24,"x":660,"y":108,"id":978,"sizeY":24},{"sizeX":24,"x":696,"y":108,"id":979,"sizeY":24},{"sizeX":24,"x":732,"y":108,"id":980,"sizeY":24},{"sizeX":24,"x":768,"y":108,"id":981,"sizeY":24},{"sizeX":24,"x":804,"y":144,"id":982,"sizeY":24},{"sizeX":24,"x":108,"y":276,"id":983,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":984,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1022,"sizeY":24},{"sizeX":24,"x":156,"y":180,"id":1023,"sizeY":24},{"sizeX":24,"x":204,"y":180,"id":1024,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1025,"sizeY":24},{"sizeX":24,"x":300,"y":180,"id":1026,"sizeY":24},{"sizeX":24,"x":348,"y":180,"id":1027,"sizeY":24},{"sizeX":24,"x":396,"y":180,"id":1028,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1029,"sizeY":24},{"sizeX":24,"x":156,"y":216,"id":1030,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1031,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1032,"sizeY":24},{"sizeX":24,"x":300,"y":216,"id":1033,"sizeY":24},{"sizeX":24,"x":348,"y":216,"id":1034,"sizeY":24},{"sizeX":24,"x":444,"y":216,"id":1036,"sizeY":24},{"sizeX":24,"x":516,"y":288,"id":1037,"sizeY":24},{"sizeX":24,"x":480,"y":252,"id":1038,"sizeY":24},{"sizeX":24,"x":480,"y":288,"id":1039,"sizeY":24},{"sizeX":24,"x":480,"y":324,"id":1040,"sizeY":24},{"sizeX":24,"x":480,"y":360,"id":1041,"sizeY":24},{"sizeX":24,"x":156,"y":276,"id":1042,"sizeY":24},{"sizeX":24,"x":804,"y":108,"id":1043,"sizeY":24},{"sizeX":24,"x":444,"y":252,"id":1044,"sizeY":24},{"sizeX":24,"x":444,"y":288,"id":1045,"sizeY":24},{"sizeX":24,"x":588,"y":0,"id":1046,"sizeY":24},{"sizeX":24,"x":0,"y":348,"id":1047,"sizeY":24},{"sizeX":24,"x":36,"y":384,"id":1048,"sizeY":24},{"sizeX":24,"x":0,"y":420,"id":1049,"sizeY":24},{"sizeX":24,"x":0,"y":276,"id":1050,"sizeY":24},{"sizeX":24,"x":36,"y":276,"id":1051,"sizeY":24},{"sizeX":24,"x":36,"y":312,"id":1052,"sizeY":24},{"sizeX":24,"x":36,"y":420,"id":1053,"sizeY":24},{"sizeX":24,"x":72,"y":420,"id":1054,"sizeY":24},{"sizeX":24,"x":36,"y":348,"id":1056,"sizeY":24},{"sizeX":24,"x":72,"y":348,"id":1057,"sizeY":24},{"sizeX":24,"x":108,"y":348,"id":1058,"sizeY":24},{"sizeX":24,"x":144,"y":348,"id":1059,"sizeY":24},{"sizeX":24,"x":180,"y":348,"id":1060,"sizeY":24},{"sizeX":24,"x":216,"y":348,"id":1061,"sizeY":24},{"sizeX":24,"x":252,"y":348,"id":1062,"sizeY":24},{"sizeX":24,"x":0,"y":384,"id":1063,"sizeY":24},{"sizeX":24,"x":288,"y":348,"id":1064,"sizeY":24},{"sizeX":24,"x":324,"y":348,"id":1065,"sizeY":24},{"sizeX":24,"x":360,"y":348,"id":1066,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1069,"sizeY":24},{"sizeX":24,"x":156,"y":36,"id":1073,"sizeY":24},{"sizeX":24,"x":204,"y":36,"id":1074,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":1075,"sizeY":24},{"sizeX":24,"x":300,"y":36,"id":1076,"sizeY":24},{"sizeX":24,"x":348,"y":36,"id":1077,"sizeY":24},{"sizeX":24,"x":396,"y":36,"id":1078,"sizeY":24},{"sizeX":24,"x":444,"y":36,"id":1079,"sizeY":24},{"sizeX":24,"x":486,"y":36,"id":1080,"sizeY":24},{"sizeX":24,"x":552,"y":180,"id":1161,"sizeY":24},{"sizeX":24,"x":552,"y":216,"id":1162,"sizeY":24},{"sizeX":24,"x":60,"y":144,"id":1163,"sizeY":24},{"sizeX":24,"x":624,"y":36,"id":1165,"sizeY":24},{"sizeX":24,"x":288,"y":420,"id":1169,"sizeY":24},{"sizeX":24,"x":324,"y":420,"id":1170,"sizeY":24},{"sizeX":24,"x":660,"y":0,"id":1171,"sizeY":24},{"sizeX":24,"x":696,"y":0,"id":1173,"sizeY":24},{"sizeX":24,"x":732,"y":0,"id":1174,"sizeY":24},{"sizeX":24,"x":768,"y":0,"id":1175,"sizeY":24},{"sizeX":24,"x":804,"y":0,"id":1176,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1192,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1193,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1194,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1195,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1196,"sizeY":24},{"sizeX":24,"x":660,"y":144,"id":1206,"sizeY":24},{"sizeX":24,"x":696,"y":144,"id":1207,"sizeY":24},{"sizeX":24,"x":360,"y":420,"id":1287,"sizeY":24},{"sizeX":24,"x":840,"y":360,"id":1297,"sizeY":24},{"sizeX":24,"x":840,"y":396,"id":1307,"sizeY":24},{"sizeX":24,"x":216,"y":420,"id":1366,"sizeY":24},{"sizeX":24,"x":204,"y":276,"id":1425,"sizeY":24},{"sizeX":24,"x":252,"y":276,"id":1438,"sizeY":24},{"sizeX":24,"x":300,"y":276,"id":1455,"sizeY":24},{"sizeX":24,"x":696,"y":36,"id":1479,"sizeY":24},{"sizeX":24,"x":588,"y":72,"id":1492,"sizeY":24},{"sizeX":24,"x":588,"y":36,"id":1523,"sizeY":24},{"sizeX":24,"x":552,"y":288,"id":1608,"sizeY":24},{"sizeX":24,"x":552,"y":324,"id":1609,"sizeY":24},{"sizeX":24,"x":60,"y":180,"id":1610,"sizeY":24},{"sizeX":24,"x":60,"y":216,"id":1611,"sizeY":24},{"sizeX":24,"x":552,"y":360,"id":1616,"sizeY":24},{"sizeX":24,"x":552,"y":252,"id":1618,"sizeY":24},{"sizeX":24,"x":660,"y":36,"id":1619,"sizeY":24},{"sizeX":24,"x":252,"y":420,"id":1644,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1780,"sizeY":24},{"sizeX":24,"x":552,"y":0,"id":1816,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1859,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1860,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":1861,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":1881,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1882,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1883,"sizeY":24},{"sizeX":24,"x":624,"y":72,"id":1884,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1885,"sizeY":24},{"sizeX":24,"x":552,"y":36,"id":1886,"sizeY":24},{"sizeX":24,"x":660,"y":72,"id":1889,"sizeY":24},{"sizeX":24,"x":804,"y":72,"id":1892,"sizeY":24},{"sizeX":24,"x":624,"y":0,"id":1895,"sizeY":24},{"sizeX":24,"x":156,"y":72,"id":1934,"sizeY":24},{"sizeX":24,"x":72,"y":312,"id":2080,"sizeY":24},{"sizeX":24,"x":732,"y":36,"id":2151,"sizeY":24},{"sizeX":24,"x":768,"y":36,"id":2152,"sizeY":24}],"lineID":16,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Coins, Coins, Coins","icon":{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"These quests will guide you to use your Coins wisely and buy some useful or fancy stuff.\nZoom out using mousewheel to see all the amazing things for sale!"}},"order":16},{"quests":[{"sizeX":24,"x":240,"y":0,"id":1416,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1417,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":1418,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1419,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1420,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":1421,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":1422,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":1423,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":2025,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":2028,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":2029,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":2030,"sizeY":24},{"sizeX":24,"x":384,"y":96,"id":2031,"sizeY":24},{"sizeX":24,"x":384,"y":48,"id":2032,"sizeY":24},{"sizeX":24,"x":384,"y":0,"id":2033,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":2034,"sizeY":24},{"sizeX":24,"x":264,"y":144,"id":2035,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":2036,"sizeY":24},{"sizeX":24,"x":120,"y":144,"id":2037,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2038,"sizeY":24},{"sizeX":24,"x":408,"y":144,"id":2039,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":2040,"sizeY":24},{"sizeX":24,"x":432,"y":72,"id":2049,"sizeY":24},{"sizeX":24,"x":432,"y":24,"id":2053,"sizeY":24},{"sizeX":24,"x":192,"y":192,"id":2054,"sizeY":24}],"lineID":17,"properties":{"betterquesting":{"visibility":"NORMAL","name":"GT++ ","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""},"bg_image":"","bg_size":256,"desc":"GT++ adds new functionality to GT, including high speed multiblocks - Under Construction"}},"order":17},{"quests":[{"sizeX":24,"x":48,"y":48,"id":576,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":577,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":578,"sizeY":24},{"sizeX":24,"x":48,"y":336,"id":580,"sizeY":24},{"sizeX":24,"x":168,"y":264,"id":581,"sizeY":24},{"sizeX":24,"x":204,"y":168,"id":582,"sizeY":24},{"sizeX":24,"x":204,"y":264,"id":583,"sizeY":24},{"sizeX":24,"x":240,"y":264,"id":584,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":585,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":586,"sizeY":24},{"sizeX":24,"x":204,"y":300,"id":588,"sizeY":24},{"sizeX":24,"x":168,"y":120,"id":589,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":590,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":591,"sizeY":24},{"sizeX":24,"x":168,"y":204,"id":592,"sizeY":24},{"sizeX":24,"x":240,"y":228,"id":593,"sizeY":24},{"sizeX":24,"x":276,"y":228,"id":594,"sizeY":24},{"sizeX":24,"x":312,"y":228,"id":595,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":994,"sizeY":24},{"sizeX":24,"x":336,"y":12,"id":1115,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":1214,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1215,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1216,"sizeY":24},{"sizeX":24,"x":132,"y":264,"id":1217,"sizeY":24},{"sizeX":24,"x":132,"y":228,"id":1218,"sizeY":24},{"sizeX":24,"x":132,"y":192,"id":1219,"sizeY":24},{"sizeX":24,"x":96,"y":228,"id":1220,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":2051,"sizeY":24},{"sizeX":24,"x":132,"y":144,"id":2052,"sizeY":24},{"sizeX":24,"x":96,"y":180,"id":2055,"sizeY":24},{"sizeX":24,"x":336,"y":60,"id":2083,"sizeY":24},{"sizeX":24,"x":372,"y":108,"id":2084,"sizeY":24},{"sizeX":24,"x":372,"y":12,"id":2085,"sizeY":24},{"sizeX":24,"x":300,"y":60,"id":2107,"sizeY":24},{"sizeX":24,"x":372,"y":156,"id":2121,"sizeY":24},{"sizeX":24,"x":372,"y":60,"id":2122,"sizeY":24},{"sizeX":24,"x":426,"y":12,"id":2124,"sizeY":24},{"sizeX":24,"x":426,"y":156,"id":2125,"sizeY":24},{"sizeX":24,"x":474,"y":156,"id":2126,"sizeY":24},{"sizeX":24,"x":426,"y":108,"id":2127,"sizeY":24},{"sizeX":24,"x":474,"y":12,"id":2128,"sizeY":24},{"sizeX":24,"x":522,"y":12,"id":2129,"sizeY":24},{"sizeX":24,"x":570,"y":12,"id":2130,"sizeY":24},{"sizeX":24,"x":522,"y":60,"id":2131,"sizeY":24},{"sizeX":24,"x":570,"y":60,"id":2132,"sizeY":24},{"sizeX":24,"x":522,"y":156,"id":2133,"sizeY":24},{"sizeX":24,"x":570,"y":156,"id":2134,"sizeY":24},{"sizeX":24,"x":570,"y":204,"id":2135,"sizeY":24},{"sizeX":24,"x":474,"y":108,"id":2256,"sizeY":24},{"sizeX":24,"x":522,"y":108,"id":2257,"sizeY":24},{"sizeX":24,"x":372,"y":204,"id":2263,"sizeY":24}],"lineID":18,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Forestry and Multi-farms","icon":{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Automated Farms, tree breeding, and more....."}},"order":18},{"quests":[{"sizeX":24,"x":48,"y":0,"id":1116,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1117,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":1118,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":1119,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1120,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":1121,"sizeY":24},{"sizeX":24,"x":192,"y":48,"id":1122,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":2153,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":2154,"sizeY":24},{"sizeX":24,"x":288,"y":48,"id":2155,"sizeY":24},{"sizeX":24,"x":240,"y":0,"id":2156,"sizeY":24},{"sizeX":24,"x":240,"y":48,"id":2157,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":2158,"sizeY":24},{"sizeX":24,"x":24,"y":24,"id":2159,"sizeY":24},{"sizeX":24,"x":288,"y":144,"id":2162,"sizeY":24},{"sizeX":24,"x":240,"y":144,"id":2163,"sizeY":24},{"sizeX":24,"x":192,"y":144,"id":2164,"sizeY":24},{"sizeX":24,"x":240,"y":240,"id":2165,"sizeY":24},{"sizeX":24,"x":288,"y":240,"id":2166,"sizeY":24},{"sizeX":24,"x":336,"y":240,"id":2167,"sizeY":24},{"sizeX":24,"x":288,"y":192,"id":2168,"sizeY":24},{"sizeX":24,"x":240,"y":192,"id":2169,"sizeY":24},{"sizeX":24,"x":192,"y":192,"id":2170,"sizeY":24},{"sizeX":24,"x":336,"y":48,"id":2171,"sizeY":24},{"sizeX":24,"x":336,"y":288,"id":2172,"sizeY":24},{"sizeX":24,"x":288,"y":288,"id":2173,"sizeY":24},{"sizeX":24,"x":240,"y":336,"id":2174,"sizeY":24},{"sizeX":24,"x":240,"y":288,"id":2175,"sizeY":24},{"sizeX":24,"x":192,"y":336,"id":2176,"sizeY":24},{"sizeX":24,"x":144,"y":336,"id":2177,"sizeY":24},{"sizeX":24,"x":144,"y":384,"id":2178,"sizeY":24},{"sizeX":24,"x":192,"y":288,"id":2179,"sizeY":24},{"sizeX":24,"x":144,"y":288,"id":2180,"sizeY":24},{"sizeX":24,"x":96,"y":288,"id":2181,"sizeY":24},{"sizeX":24,"x":240,"y":432,"id":2182,"sizeY":24},{"sizeX":24,"x":192,"y":432,"id":2183,"sizeY":24},{"sizeX":24,"x":144,"y":432,"id":2184,"sizeY":24},{"sizeX":24,"x":144,"y":240,"id":2185,"sizeY":24},{"sizeX":24,"x":336,"y":432,"id":2186,"sizeY":24},{"sizeX":24,"x":288,"y":432,"id":2187,"sizeY":24},{"sizeX":24,"x":288,"y":480,"id":2188,"sizeY":24},{"sizeX":24,"x":240,"y":480,"id":2189,"sizeY":24},{"sizeX":24,"x":240,"y":384,"id":2190,"sizeY":24},{"sizeX":24,"x":192,"y":384,"id":2191,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":2192,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":2193,"sizeY":24},{"sizeX":24,"x":336,"y":144,"id":2194,"sizeY":24},{"sizeX":24,"x":384,"y":96,"id":2195,"sizeY":24},{"sizeX":24,"x":336,"y":192,"id":2196,"sizeY":24},{"sizeX":24,"x":384,"y":192,"id":2197,"sizeY":24},{"sizeX":24,"x":384,"y":144,"id":2198,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":2199,"sizeY":24},{"sizeX":24,"x":384,"y":288,"id":2200,"sizeY":24},{"sizeX":24,"x":288,"y":384,"id":2201,"sizeY":24},{"sizeX":24,"x":336,"y":384,"id":2202,"sizeY":24},{"sizeX":24,"x":384,"y":384,"id":2203,"sizeY":24},{"sizeX":24,"x":336,"y":528,"id":2204,"sizeY":24},{"sizeX":24,"x":384,"y":528,"id":2205,"sizeY":24},{"sizeX":24,"x":288,"y":528,"id":2206,"sizeY":24},{"sizeX":24,"x":240,"y":576,"id":2207,"sizeY":24},{"sizeX":24,"x":240,"y":528,"id":2208,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":2209,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":2211,"sizeY":24},{"sizeX":24,"x":600,"y":144,"id":2212,"sizeY":24},{"sizeX":24,"x":504,"y":0,"id":2213,"sizeY":24},{"sizeX":24,"x":600,"y":48,"id":2214,"sizeY":24},{"sizeX":24,"x":552,"y":48,"id":2215,"sizeY":24},{"sizeX":24,"x":552,"y":0,"id":2216,"sizeY":24},{"sizeX":24,"x":552,"y":144,"id":2217,"sizeY":24},{"sizeX":24,"x":552,"y":96,"id":2218,"sizeY":24},{"sizeX":24,"x":648,"y":144,"id":2219,"sizeY":24},{"sizeX":24,"x":744,"y":288,"id":2220,"sizeY":24},{"sizeX":24,"x":696,"y":336,"id":2221,"sizeY":24},{"sizeX":24,"x":696,"y":240,"id":2222,"sizeY":24},{"sizeX":24,"x":696,"y":192,"id":2223,"sizeY":24},{"sizeX":24,"x":744,"y":192,"id":2224,"sizeY":24},{"sizeX":24,"x":744,"y":240,"id":2225,"sizeY":24},{"sizeX":24,"x":744,"y":336,"id":2226,"sizeY":24},{"sizeX":24,"x":696,"y":288,"id":2227,"sizeY":24},{"sizeX":24,"x":696,"y":48,"id":2228,"sizeY":24},{"sizeX":24,"x":744,"y":48,"id":2229,"sizeY":24},{"sizeX":24,"x":792,"y":48,"id":2230,"sizeY":24},{"sizeX":24,"x":696,"y":96,"id":2231,"sizeY":24},{"sizeX":24,"x":648,"y":192,"id":2232,"sizeY":24},{"sizeX":24,"x":696,"y":0,"id":2233,"sizeY":24},{"sizeX":24,"x":744,"y":0,"id":2234,"sizeY":24},{"sizeX":24,"x":792,"y":0,"id":2235,"sizeY":24},{"sizeX":24,"x":744,"y":384,"id":2236,"sizeY":24},{"sizeX":24,"x":696,"y":384,"id":2237,"sizeY":24},{"sizeX":24,"x":792,"y":336,"id":2238,"sizeY":24},{"sizeX":24,"x":504,"y":48,"id":2239,"sizeY":24},{"sizeX":24,"x":504,"y":96,"id":2240,"sizeY":24},{"sizeX":24,"x":840,"y":336,"id":2241,"sizeY":24},{"sizeX":24,"x":888,"y":336,"id":2242,"sizeY":24},{"sizeX":24,"x":504,"y":192,"id":2243,"sizeY":24},{"sizeX":24,"x":696,"y":144,"id":2244,"sizeY":24},{"sizeX":24,"x":744,"y":144,"id":2245,"sizeY":24},{"sizeX":24,"x":792,"y":144,"id":2246,"sizeY":24},{"sizeX":24,"x":840,"y":144,"id":2247,"sizeY":24},{"sizeX":24,"x":840,"y":96,"id":2248,"sizeY":24},{"sizeX":24,"x":840,"y":48,"id":2249,"sizeY":24},{"sizeX":24,"x":840,"y":0,"id":2250,"sizeY":24},{"sizeX":24,"x":48,"y":336,"id":2251,"sizeY":24},{"sizeX":24,"x":96,"y":336,"id":2252,"sizeY":24},{"sizeX":24,"x":384,"y":240,"id":2254,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":2258,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":2269,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":2270,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":2271,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2272,"sizeY":24},{"sizeX":24,"x":48,"y":192,"id":2273,"sizeY":24},{"sizeX":24,"x":504,"y":240,"id":2274,"sizeY":24},{"sizeX":24,"x":552,"y":240,"id":2275,"sizeY":24},{"sizeX":24,"x":600,"y":240,"id":2276,"sizeY":24},{"sizeX":24,"x":696,"y":432,"id":2277,"sizeY":24},{"sizeX":24,"x":648,"y":432,"id":2278,"sizeY":24},{"sizeX":24,"x":600,"y":432,"id":2279,"sizeY":24},{"sizeX":24,"x":552,"y":432,"id":2280,"sizeY":24},{"sizeX":24,"x":504,"y":432,"id":2281,"sizeY":24},{"sizeX":24,"x":552,"y":384,"id":2282,"sizeY":24},{"sizeX":24,"x":600,"y":480,"id":2283,"sizeY":24},{"sizeX":24,"x":552,"y":480,"id":2284,"sizeY":24},{"sizeX":24,"x":648,"y":480,"id":2285,"sizeY":24},{"sizeX":24,"x":552,"y":288,"id":2287,"sizeY":24},{"sizeX":24,"x":504,"y":288,"id":2288,"sizeY":24},{"sizeX":24,"x":600,"y":288,"id":2289,"sizeY":24},{"sizeX":24,"x":96,"y":240,"id":2290,"sizeY":24},{"sizeX":24,"x":48,"y":240,"id":2291,"sizeY":24},{"sizeX":24,"x":0,"y":240,"id":2292,"sizeY":24}],"lineID":19,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Be(e) Breeding","icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Mate":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergy","UID0":"gregtech.bee.speciesEnergy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]},"Health":60,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergy","UID0":"gregtech.bee.speciesEnergy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Breeding Bees for Better Bling (experimental, may cause honey leakage)"}},"order":19},{"quests":[{"sizeX":24,"x":0,"y":84,"id":500,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":501,"sizeY":24},{"sizeX":24,"x":72,"y":120,"id":502,"sizeY":24},{"sizeX":24,"x":114,"y":84,"id":503,"sizeY":24},{"sizeX":24,"x":156,"y":120,"id":504,"sizeY":24},{"sizeX":24,"x":204,"y":84,"id":505,"sizeY":24},{"sizeX":24,"x":108,"y":192,"id":506,"sizeY":24},{"sizeX":24,"x":156,"y":156,"id":507,"sizeY":24},{"sizeX":24,"x":108,"y":228,"id":508,"sizeY":24},{"sizeX":24,"x":36,"y":228,"id":509,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":510,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":511,"sizeY":24},{"sizeX":24,"x":0,"y":228,"id":512,"sizeY":24},{"sizeX":24,"x":156,"y":228,"id":513,"sizeY":24},{"sizeX":24,"x":72,"y":156,"id":514,"sizeY":24},{"sizeX":24,"x":36,"y":156,"id":515,"sizeY":24},{"sizeX":24,"x":0,"y":156,"id":516,"sizeY":24},{"sizeX":24,"x":72,"y":228,"id":517,"sizeY":24},{"sizeX":24,"x":72,"y":192,"id":518,"sizeY":24},{"sizeX":24,"x":342,"y":336,"id":519,"sizeY":24},{"sizeX":24,"x":90,"y":336,"id":520,"sizeY":24},{"sizeX":24,"x":162,"y":336,"id":521,"sizeY":24},{"sizeX":24,"x":54,"y":336,"id":522,"sizeY":24},{"sizeX":24,"x":18,"y":336,"id":523,"sizeY":24},{"sizeX":24,"x":270,"y":336,"id":524,"sizeY":24},{"sizeX":24,"x":126,"y":336,"id":525,"sizeY":24},{"sizeX":24,"x":198,"y":336,"id":526,"sizeY":24},{"sizeX":24,"x":306,"y":336,"id":527,"sizeY":24},{"sizeX":24,"x":234,"y":336,"id":528,"sizeY":24},{"sizeX":24,"x":72,"y":84,"id":992,"sizeY":24},{"sizeX":24,"x":72,"y":48,"id":993,"sizeY":24},{"sizeX":24,"x":108,"y":48,"id":995,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":996,"sizeY":24},{"sizeX":24,"x":204,"y":156,"id":1111,"sizeY":24},{"sizeX":24,"x":36,"y":120,"id":1112,"sizeY":24},{"sizeX":24,"x":114,"y":120,"id":1113,"sizeY":24},{"sizeX":24,"x":204,"y":192,"id":1114,"sizeY":24},{"sizeX":24,"x":252,"y":192,"id":1123,"sizeY":24},{"sizeX":24,"x":156,"y":48,"id":1367,"sizeY":24},{"sizeX":24,"x":36,"y":84,"id":1511,"sizeY":24},{"sizeX":24,"x":156,"y":84,"id":1512,"sizeY":24},{"sizeX":24,"x":204,"y":228,"id":1513,"sizeY":24},{"sizeX":24,"x":252,"y":228,"id":1514,"sizeY":24},{"sizeX":24,"x":300,"y":228,"id":1515,"sizeY":24},{"sizeX":24,"x":252,"y":264,"id":1516,"sizeY":24},{"sizeX":24,"x":252,"y":156,"id":2089,"sizeY":24},{"sizeX":24,"x":156,"y":192,"id":2090,"sizeY":24},{"sizeX":24,"x":300,"y":192,"id":2091,"sizeY":24},{"sizeX":24,"x":300,"y":156,"id":2092,"sizeY":24},{"sizeX":24,"x":348,"y":156,"id":2093,"sizeY":24},{"sizeX":24,"x":348,"y":192,"id":2094,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":2106,"sizeY":24},{"sizeX":24,"x":252,"y":84,"id":2108,"sizeY":24},{"sizeX":24,"x":252,"y":120,"id":2109,"sizeY":24},{"sizeX":24,"x":204,"y":264,"id":2255,"sizeY":24}],"lineID":20,"properties":{"betterquesting":{"visibility":"NORMAL","name":"How to be(e)","icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A non-tiered quest set that is meant as an in game, quest based tutorial and guide to bees. Since they are a really helpful tool to advance forward."}},"order":20},{"quests":[{"sizeX":24,"x":144,"y":0,"id":1954,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":2081,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":2082,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":2088,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":2095,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":2096,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":2097,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":2098,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":2099,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":2100,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":2101,"sizeY":24},{"sizeX":24,"x":216,"y":72,"id":2102,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":2103,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2104,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":2110,"sizeY":24}],"lineID":21,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Slice and splice","icon":{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"An introduction to using Binnie's Genetics mod for bees, trees, and Botany flowers. (under construction)"}},"order":21},{"quests":[{"sizeX":24,"x":216,"y":0,"id":224,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":225,"sizeY":24},{"sizeX":24,"x":396,"y":72,"id":226,"sizeY":24},{"sizeX":24,"x":312,"y":72,"id":227,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":229,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":230,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":231,"sizeY":24},{"sizeX":24,"x":432,"y":72,"id":232,"sizeY":24},{"sizeX":24,"x":84,"y":144,"id":233,"sizeY":24},{"sizeX":24,"x":432,"y":144,"id":234,"sizeY":24},{"sizeX":24,"x":360,"y":108,"id":235,"sizeY":24},{"sizeX":24,"x":396,"y":108,"id":236,"sizeY":24},{"sizeX":24,"x":360,"y":180,"id":237,"sizeY":24},{"sizeX":24,"x":360,"y":216,"id":238,"sizeY":24},{"sizeX":24,"x":312,"y":216,"id":239,"sizeY":24},{"sizeX":24,"x":312,"y":180,"id":240,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":241,"sizeY":24},{"sizeX":24,"x":84,"y":252,"id":242,"sizeY":24},{"sizeX":24,"x":180,"y":252,"id":243,"sizeY":24},{"sizeX":24,"x":288,"y":336,"id":244,"sizeY":24},{"sizeX":24,"x":360,"y":372,"id":245,"sizeY":24},{"sizeX":24,"x":432,"y":336,"id":246,"sizeY":24},{"sizeX":24,"x":288,"y":408,"id":247,"sizeY":24},{"sizeX":24,"x":432,"y":408,"id":248,"sizeY":24},{"sizeX":24,"x":288,"y":372,"id":249,"sizeY":24},{"sizeX":24,"x":432,"y":372,"id":250,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":251,"sizeY":24},{"sizeX":24,"x":312,"y":252,"id":252,"sizeY":24},{"sizeX":24,"x":312,"y":144,"id":253,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":254,"sizeY":24},{"sizeX":24,"x":240,"y":144,"id":255,"sizeY":24},{"sizeX":24,"x":240,"y":180,"id":256,"sizeY":24},{"sizeX":24,"x":312,"y":108,"id":257,"sizeY":24},{"sizeX":24,"x":432,"y":252,"id":258,"sizeY":24},{"sizeX":24,"x":396,"y":252,"id":259,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":610,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":798,"sizeY":24},{"sizeX":24,"x":180,"y":216,"id":1002,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1070,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1071,"sizeY":24},{"sizeX":24,"x":360,"y":72,"id":1096,"sizeY":24},{"sizeX":24,"x":432,"y":180,"id":1100,"sizeY":24},{"sizeX":24,"x":468,"y":180,"id":1101,"sizeY":24},{"sizeX":24,"x":504,"y":180,"id":1103,"sizeY":24},{"sizeX":24,"x":468,"y":216,"id":1104,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1106,"sizeY":24},{"sizeX":24,"x":84,"y":36,"id":1158,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":1159,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":1177,"sizeY":24},{"sizeX":24,"x":240,"y":216,"id":1286,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":1368,"sizeY":24},{"sizeX":24,"x":240,"y":108,"id":1369,"sizeY":24},{"sizeX":24,"x":276,"y":108,"id":1370,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":1565,"sizeY":24},{"sizeX":24,"x":276,"y":72,"id":1778,"sizeY":24},{"sizeX":24,"x":132,"y":36,"id":1837,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1838,"sizeY":24},{"sizeX":24,"x":396,"y":216,"id":1912,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":1995,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1996,"sizeY":24},{"sizeX":24,"x":144,"y":216,"id":1997,"sizeY":24},{"sizeX":24,"x":432,"y":216,"id":1998,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":2042,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2046,"sizeY":24},{"sizeX":24,"x":312,"y":36,"id":2050,"sizeY":24},{"sizeX":24,"x":132,"y":0,"id":2059,"sizeY":24},{"sizeX":24,"x":312,"y":288,"id":2060,"sizeY":24},{"sizeX":24,"x":342,"y":288,"id":2061,"sizeY":24},{"sizeX":24,"x":342,"y":324,"id":2062,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":2063,"sizeY":24},{"sizeX":24,"x":240,"y":36,"id":2065,"sizeY":24},{"sizeX":24,"x":276,"y":36,"id":2066,"sizeY":24},{"sizeX":24,"x":468,"y":252,"id":2067,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":2146,"sizeY":24},{"sizeX":24,"x":120,"y":108,"id":2147,"sizeY":24},{"sizeX":24,"x":396,"y":288,"id":2259,"sizeY":24}],"lineID":22,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Novice Thaumaturge","icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Magic lies beyond. Great achievements, but also a lot of work. I shall be your guide. Follow my instructions, and you shall become a great wizard, like me."}},"order":22},{"quests":[{"sizeX":24,"x":132,"y":96,"id":260,"sizeY":24},{"sizeX":24,"x":408,"y":132,"id":261,"sizeY":24},{"sizeX":24,"x":408,"y":96,"id":262,"sizeY":24},{"sizeX":24,"x":360,"y":132,"id":263,"sizeY":24},{"sizeX":24,"x":276,"y":120,"id":264,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":265,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":266,"sizeY":24},{"sizeX":24,"x":276,"y":192,"id":267,"sizeY":24},{"sizeX":24,"x":276,"y":156,"id":268,"sizeY":24},{"sizeX":24,"x":276,"y":36,"id":269,"sizeY":24},{"sizeX":24,"x":276,"y":0,"id":270,"sizeY":24},{"sizeX":24,"x":276,"y":72,"id":271,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":272,"sizeY":24},{"sizeX":24,"x":408,"y":204,"id":273,"sizeY":24},{"sizeX":24,"x":408,"y":168,"id":274,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":275,"sizeY":24},{"sizeX":24,"x":96,"y":168,"id":276,"sizeY":24},{"sizeX":24,"x":96,"y":132,"id":277,"sizeY":24},{"sizeX":24,"x":132,"y":216,"id":278,"sizeY":24},{"sizeX":24,"x":504,"y":168,"id":279,"sizeY":24},{"sizeX":24,"x":540,"y":168,"id":280,"sizeY":24},{"sizeX":24,"x":576,"y":168,"id":281,"sizeY":24},{"sizeX":24,"x":576,"y":132,"id":282,"sizeY":24},{"sizeX":24,"x":504,"y":204,"id":283,"sizeY":24},{"sizeX":24,"x":504,"y":252,"id":284,"sizeY":24},{"sizeX":24,"x":504,"y":132,"id":285,"sizeY":24},{"sizeX":24,"x":540,"y":96,"id":286,"sizeY":24},{"sizeX":24,"x":540,"y":132,"id":287,"sizeY":24},{"sizeX":24,"x":468,"y":132,"id":288,"sizeY":24},{"sizeX":24,"x":576,"y":96,"id":289,"sizeY":24},{"sizeX":24,"x":96,"y":288,"id":290,"sizeY":24},{"sizeX":24,"x":228,"y":252,"id":291,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":292,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":293,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":294,"sizeY":24},{"sizeX":24,"x":168,"y":288,"id":295,"sizeY":24},{"sizeX":24,"x":132,"y":288,"id":296,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":297,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":298,"sizeY":24},{"sizeX":24,"x":168,"y":252,"id":299,"sizeY":24},{"sizeX":24,"x":228,"y":288,"id":300,"sizeY":24},{"sizeX":24,"x":96,"y":252,"id":301,"sizeY":24},{"sizeX":24,"x":168,"y":132,"id":302,"sizeY":24},{"sizeX":24,"x":360,"y":168,"id":303,"sizeY":24},{"sizeX":24,"x":360,"y":204,"id":304,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":305,"sizeY":24},{"sizeX":24,"x":204,"y":132,"id":306,"sizeY":24},{"sizeX":24,"x":468,"y":96,"id":833,"sizeY":24},{"sizeX":24,"x":204,"y":36,"id":877,"sizeY":24},{"sizeX":24,"x":324,"y":168,"id":878,"sizeY":24},{"sizeX":24,"x":204,"y":72,"id":879,"sizeY":24},{"sizeX":24,"x":324,"y":204,"id":887,"sizeY":24},{"sizeX":24,"x":132,"y":48,"id":1055,"sizeY":24},{"sizeX":24,"x":132,"y":12,"id":1097,"sizeY":24},{"sizeX":24,"x":168,"y":12,"id":1098,"sizeY":24},{"sizeX":24,"x":96,"y":12,"id":1099,"sizeY":24},{"sizeX":24,"x":408,"y":48,"id":1102,"sizeY":24},{"sizeX":24,"x":408,"y":0,"id":1105,"sizeY":24},{"sizeX":24,"x":324,"y":132,"id":1191,"sizeY":24},{"sizeX":24,"x":48,"y":216,"id":1382,"sizeY":24},{"sizeX":24,"x":48,"y":168,"id":1383,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1401,"sizeY":24},{"sizeX":24,"x":444,"y":168,"id":1402,"sizeY":24},{"sizeX":24,"x":60,"y":12,"id":1875,"sizeY":24},{"sizeX":24,"x":204,"y":168,"id":1992,"sizeY":24},{"sizeX":24,"x":240,"y":132,"id":1993,"sizeY":24},{"sizeX":24,"x":240,"y":168,"id":1994,"sizeY":24},{"sizeX":24,"x":336,"y":72,"id":2020,"sizeY":24},{"sizeX":24,"x":378,"y":72,"id":2021,"sizeY":24},{"sizeX":24,"x":336,"y":36,"id":2022,"sizeY":24},{"sizeX":24,"x":48,"y":252,"id":2064,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":2068,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":2267,"sizeY":24},{"sizeX":24,"x":444,"y":48,"id":2268,"sizeY":24}],"lineID":23,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Adept Thaumaturgy","icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"orichalcum","rod":"neutronium_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":2000,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Warp included."}},"order":23},{"quests":[{"sizeX":24,"x":144,"y":0,"id":307,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":309,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":310,"sizeY":24},{"sizeX":24,"x":192,"y":180,"id":311,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":312,"sizeY":24},{"sizeX":24,"x":192,"y":108,"id":313,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":314,"sizeY":24},{"sizeX":24,"x":192,"y":144,"id":315,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":316,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":317,"sizeY":24},{"sizeX":24,"x":192,"y":72,"id":318,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":319,"sizeY":24},{"sizeX":24,"x":96,"y":72,"id":320,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":321,"sizeY":24},{"sizeX":24,"x":48,"y":180,"id":322,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":323,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":324,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":325,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":326,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":327,"sizeY":24},{"sizeX":24,"x":288,"y":72,"id":328,"sizeY":24},{"sizeX":24,"x":96,"y":36,"id":329,"sizeY":24},{"sizeX":24,"x":96,"y":180,"id":330,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":331,"sizeY":24},{"sizeX":24,"x":48,"y":36,"id":1109,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1110,"sizeY":24}],"lineID":24,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Kaaami, Haaaami, ... HA!","icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Ultimate (magical) POWER!!!"}},"order":24},{"quests":[{"sizeX":24,"x":132,"y":0,"id":1372,"sizeY":24},{"sizeX":24,"x":132,"y":36,"id":1373,"sizeY":24},{"sizeX":24,"x":84,"y":36,"id":1374,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1375,"sizeY":24},{"sizeX":24,"x":228,"y":36,"id":1376,"sizeY":24},{"sizeX":24,"x":132,"y":72,"id":1377,"sizeY":24},{"sizeX":24,"x":228,"y":72,"id":1378,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1380,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":1381,"sizeY":24},{"sizeX":24,"x":84,"y":72,"id":1384,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":1385,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1386,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":1387,"sizeY":24},{"sizeX":24,"x":84,"y":144,"id":1388,"sizeY":24},{"sizeX":24,"x":84,"y":180,"id":1389,"sizeY":24},{"sizeX":24,"x":132,"y":108,"id":1390,"sizeY":24},{"sizeX":24,"x":132,"y":180,"id":1391,"sizeY":24},{"sizeX":24,"x":180,"y":180,"id":1392,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1393,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1394,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1395,"sizeY":24},{"sizeX":24,"x":228,"y":180,"id":1396,"sizeY":24},{"sizeX":24,"x":228,"y":216,"id":1397,"sizeY":24},{"sizeX":24,"x":276,"y":216,"id":1398,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1399,"sizeY":24},{"sizeX":24,"x":276,"y":108,"id":1400,"sizeY":24}],"lineID":25,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Focus on Wand Foci","icon":{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Did you know which wand focus is useful and which not?"}},"order":25},{"quests":[{"sizeX":24,"x":42,"y":42,"id":1332,"sizeY":24},{"sizeX":24,"x":210,"y":42,"id":1333,"sizeY":24},{"sizeX":24,"x":252,"y":42,"id":1334,"sizeY":24},{"sizeX":24,"x":0,"y":42,"id":1335,"sizeY":24},{"sizeX":24,"x":42,"y":84,"id":1336,"sizeY":24},{"sizeX":24,"x":0,"y":84,"id":1337,"sizeY":24},{"sizeX":24,"x":42,"y":126,"id":1338,"sizeY":24},{"sizeX":24,"x":186,"y":0,"id":1339,"sizeY":24},{"sizeX":24,"x":168,"y":42,"id":1340,"sizeY":24},{"sizeX":24,"x":234,"y":0,"id":1341,"sizeY":24},{"sizeX":24,"x":210,"y":84,"id":1342,"sizeY":24},{"sizeX":24,"x":294,"y":0,"id":1343,"sizeY":24},{"sizeX":24,"x":294,"y":42,"id":1344,"sizeY":24},{"sizeX":24,"x":294,"y":84,"id":1345,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":1346,"sizeY":24},{"sizeX":24,"x":336,"y":42,"id":1347,"sizeY":24},{"sizeX":24,"x":336,"y":84,"id":1348,"sizeY":24},{"sizeX":24,"x":126,"y":0,"id":1349,"sizeY":24},{"sizeX":24,"x":126,"y":42,"id":1350,"sizeY":24},{"sizeX":24,"x":126,"y":84,"id":1351,"sizeY":24},{"sizeX":24,"x":84,"y":84,"id":1352,"sizeY":24},{"sizeX":24,"x":42,"y":0,"id":1353,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":1354,"sizeY":24},{"sizeX":24,"x":294,"y":126,"id":1355,"sizeY":24},{"sizeX":24,"x":294,"y":168,"id":1356,"sizeY":24},{"sizeX":24,"x":84,"y":42,"id":1357,"sizeY":24},{"sizeX":24,"x":168,"y":84,"id":1358,"sizeY":24},{"sizeX":24,"x":168,"y":126,"id":1359,"sizeY":24},{"sizeX":24,"x":210,"y":126,"id":1360,"sizeY":24},{"sizeX":24,"x":378,"y":0,"id":1361,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1362,"sizeY":24},{"sizeX":24,"x":378,"y":42,"id":2260,"sizeY":24},{"sizeX":24,"x":378,"y":84,"id":2261,"sizeY":24},{"sizeX":24,"x":378,"y":126,"id":2262,"sizeY":24}],"lineID":26,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Electro Magic","icon":{"id":"EMT:electricCloud","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This Tab focus on Electro Magic Tools and Thaumic Energistics. These are some nice mods, that will help you with machinery and magic."}},"order":26},{"quests":[{"sizeX":24,"x":66,"y":36,"id":332,"sizeY":24},{"sizeX":24,"x":156,"y":180,"id":333,"sizeY":24},{"sizeX":24,"x":168,"y":72,"id":334,"sizeY":24},{"sizeX":24,"x":396,"y":288,"id":335,"sizeY":24},{"sizeX":24,"x":210,"y":162,"id":336,"sizeY":24},{"sizeX":24,"x":204,"y":108,"id":337,"sizeY":24},{"sizeX":24,"x":588,"y":444,"id":338,"sizeY":24},{"sizeX":24,"x":348,"y":384,"id":339,"sizeY":24},{"sizeX":24,"x":300,"y":360,"id":340,"sizeY":24},{"sizeX":24,"x":264,"y":384,"id":341,"sizeY":24},{"sizeX":24,"x":276,"y":420,"id":342,"sizeY":24},{"sizeX":24,"x":324,"y":246,"id":343,"sizeY":24},{"sizeX":24,"x":456,"y":240,"id":344,"sizeY":24},{"sizeX":24,"x":336,"y":312,"id":345,"sizeY":24},{"sizeX":24,"x":456,"y":312,"id":346,"sizeY":24},{"sizeX":24,"x":480,"y":276,"id":347,"sizeY":24},{"sizeX":24,"x":360,"y":222,"id":348,"sizeY":24},{"sizeX":24,"x":324,"y":408,"id":349,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1554,"sizeY":24},{"sizeX":24,"x":108,"y":84,"id":1555,"sizeY":24},{"sizeX":24,"x":24,"y":204,"id":1556,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1557,"sizeY":24},{"sizeX":24,"x":48,"y":156,"id":1558,"sizeY":24},{"sizeX":24,"x":108,"y":120,"id":1559,"sizeY":24},{"sizeX":24,"x":24,"y":36,"id":1560,"sizeY":24},{"sizeX":24,"x":120,"y":156,"id":1561,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1562,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":1563,"sizeY":24},{"sizeX":24,"x":324,"y":132,"id":1564,"sizeY":24},{"sizeX":24,"x":372,"y":156,"id":1566,"sizeY":24},{"sizeX":24,"x":396,"y":204,"id":1567,"sizeY":24},{"sizeX":24,"x":84,"y":168,"id":1568,"sizeY":24},{"sizeX":24,"x":36,"y":120,"id":1569,"sizeY":24},{"sizeX":24,"x":444,"y":360,"id":1570,"sizeY":24},{"sizeX":24,"x":384,"y":336,"id":1571,"sizeY":24},{"sizeX":24,"x":456,"y":456,"id":1572,"sizeY":24},{"sizeX":24,"x":408,"y":384,"id":1573,"sizeY":24},{"sizeX":24,"x":396,"y":432,"id":1574,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":1575,"sizeY":24},{"sizeX":24,"x":516,"y":408,"id":1576,"sizeY":24},{"sizeX":24,"x":588,"y":396,"id":1577,"sizeY":24},{"sizeX":24,"x":648,"y":432,"id":1578,"sizeY":24},{"sizeX":24,"x":708,"y":468,"id":1579,"sizeY":24},{"sizeX":24,"x":684,"y":324,"id":1580,"sizeY":24},{"sizeX":24,"x":600,"y":348,"id":1581,"sizeY":24},{"sizeX":24,"x":792,"y":492,"id":1582,"sizeY":24},{"sizeX":24,"x":732,"y":528,"id":1583,"sizeY":24},{"sizeX":24,"x":540,"y":600,"id":1584,"sizeY":24},{"sizeX":24,"x":540,"y":480,"id":1585,"sizeY":24},{"sizeX":24,"x":504,"y":528,"id":1586,"sizeY":24},{"sizeX":24,"x":492,"y":576,"id":1587,"sizeY":24},{"sizeX":24,"x":576,"y":492,"id":1588,"sizeY":24},{"sizeX":24,"x":504,"y":492,"id":1589,"sizeY":24},{"sizeX":24,"x":456,"y":624,"id":1590,"sizeY":24},{"sizeX":24,"x":540,"y":528,"id":1591,"sizeY":24},{"sizeX":24,"x":540,"y":672,"id":1592,"sizeY":24},{"sizeX":24,"x":504,"y":636,"id":1593,"sizeY":24},{"sizeX":24,"x":588,"y":660,"id":1594,"sizeY":24},{"sizeX":24,"x":576,"y":624,"id":1595,"sizeY":24},{"sizeX":24,"x":468,"y":672,"id":1596,"sizeY":24},{"sizeX":24,"x":588,"y":576,"id":1597,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1645,"sizeY":24},{"sizeX":24,"x":306,"y":282,"id":1646,"sizeY":24},{"sizeX":24,"x":216,"y":456,"id":1647,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1648,"sizeY":24},{"sizeX":24,"x":120,"y":0,"id":1649,"sizeY":24},{"sizeX":24,"x":180,"y":12,"id":1650,"sizeY":24},{"sizeX":24,"x":204,"y":48,"id":1651,"sizeY":24}],"lineID":27,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Look to the edges","icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Granny Weatherwax would approve."}},"order":27},{"quests":[{"sizeX":24,"x":0,"y":0,"id":161,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":164,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":177,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":407,"sizeY":24},{"sizeX":24,"x":156,"y":72,"id":408,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":409,"sizeY":24},{"sizeX":24,"x":276,"y":0,"id":410,"sizeY":24},{"sizeX":24,"x":240,"y":120,"id":411,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":412,"sizeY":24},{"sizeX":24,"x":276,"y":96,"id":413,"sizeY":24},{"sizeX":24,"x":312,"y":72,"id":414,"sizeY":24},{"sizeX":24,"x":312,"y":120,"id":415,"sizeY":24},{"sizeX":24,"x":108,"y":120,"id":1325,"sizeY":24}],"lineID":28,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Paying the highest price","icon":{"id":"AWWayofTime:blankSlate","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"When regular magic just won't cover it, pay demons to do it for you! The cost might scare some people... But no risk no fun!"}},"order":28},{"quests":[{"sizeX":24,"x":336,"y":36,"id":228,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":416,"sizeY":24},{"sizeX":24,"x":72,"y":168,"id":417,"sizeY":24},{"sizeX":24,"x":0,"y":168,"id":418,"sizeY":24},{"sizeX":24,"x":36,"y":168,"id":419,"sizeY":24},{"sizeX":24,"x":372,"y":0,"id":420,"sizeY":24},{"sizeX":24,"x":300,"y":0,"id":421,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":422,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":423,"sizeY":24},{"sizeX":24,"x":300,"y":72,"id":424,"sizeY":24},{"sizeX":24,"x":336,"y":72,"id":425,"sizeY":24},{"sizeX":24,"x":300,"y":108,"id":426,"sizeY":24},{"sizeX":24,"x":372,"y":108,"id":427,"sizeY":24},{"sizeX":24,"x":372,"y":72,"id":428,"sizeY":24},{"sizeX":24,"x":300,"y":168,"id":429,"sizeY":24},{"sizeX":24,"x":264,"y":168,"id":430,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":431,"sizeY":24},{"sizeX":24,"x":216,"y":168,"id":432,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":433,"sizeY":24},{"sizeX":24,"x":144,"y":168,"id":434,"sizeY":24},{"sizeX":24,"x":180,"y":168,"id":435,"sizeY":24},{"sizeX":24,"x":108,"y":168,"id":436,"sizeY":24},{"sizeX":24,"x":216,"y":108,"id":437,"sizeY":24},{"sizeX":24,"x":336,"y":108,"id":438,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":463,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":926,"sizeY":24},{"sizeX":24,"x":264,"y":72,"id":927,"sizeY":24}],"lineID":29,"properties":{"betterquesting":{"visibility":"NORMAL","name":"More blood, more stuff","icon":{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Advanced Blood Magic? My veins feel weird..."}},"order":29},{"quests":[{"sizeX":24,"x":0,"y":72,"id":406,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":700,"sizeY":24},{"sizeX":24,"x":252,"y":72,"id":701,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":702,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":703,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":704,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":706,"sizeY":24},{"sizeX":24,"x":288,"y":36,"id":707,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":708,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":709,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":710,"sizeY":24},{"sizeX":24,"x":324,"y":36,"id":711,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":712,"sizeY":24},{"sizeX":24,"x":288,"y":72,"id":713,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":714,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":715,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":928,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":929,"sizeY":24}],"lineID":30,"properties":{"betterquesting":{"visibility":"NORMAL","name":"They are coming...","icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The spirits that I've called... Demon invasions and beyond. Really deep into dark magic!"}},"order":30},{"quests":[{"sizeX":24,"x":108,"y":42,"id":1745,"sizeY":24},{"sizeX":24,"x":90,"y":0,"id":1746,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1747,"sizeY":24},{"sizeX":24,"x":60,"y":60,"id":1748,"sizeY":24},{"sizeX":24,"x":156,"y":24,"id":1749,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":1750,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1751,"sizeY":24},{"sizeX":24,"x":60,"y":24,"id":1752,"sizeY":24},{"sizeX":24,"x":60,"y":144,"id":1753,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1754,"sizeY":24},{"sizeX":24,"x":30,"y":144,"id":1755,"sizeY":24},{"sizeX":24,"x":186,"y":144,"id":1756,"sizeY":24},{"sizeX":24,"x":126,"y":0,"id":1757,"sizeY":24},{"sizeX":24,"x":156,"y":60,"id":1758,"sizeY":24},{"sizeX":24,"x":108,"y":102,"id":1759,"sizeY":24},{"sizeX":24,"x":90,"y":144,"id":1760,"sizeY":24},{"sizeX":24,"x":138,"y":216,"id":1761,"sizeY":24},{"sizeX":24,"x":126,"y":144,"id":1762,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1763,"sizeY":24},{"sizeX":24,"x":198,"y":216,"id":1764,"sizeY":24},{"sizeX":24,"x":108,"y":270,"id":1765,"sizeY":24},{"sizeX":24,"x":126,"y":312,"id":1766,"sizeY":24},{"sizeX":24,"x":162,"y":312,"id":1767,"sizeY":24},{"sizeX":24,"x":54,"y":312,"id":1768,"sizeY":24},{"sizeX":24,"x":90,"y":312,"id":1769,"sizeY":24},{"sizeX":24,"x":18,"y":312,"id":1771,"sizeY":24},{"sizeX":24,"x":162,"y":348,"id":1772,"sizeY":24},{"sizeX":24,"x":126,"y":348,"id":1773,"sizeY":24},{"sizeX":24,"x":90,"y":348,"id":1774,"sizeY":24},{"sizeX":24,"x":54,"y":348,"id":1775,"sizeY":24},{"sizeX":24,"x":18,"y":348,"id":1776,"sizeY":24},{"sizeX":24,"x":72,"y":270,"id":1777,"sizeY":24}],"lineID":31,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Open Computers","icon":{"id":"OpenComputers:item","Count":1,"Damage":103,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The magical world of ingame programming!"}},"order":31},{"quests":[{"sizeX":24,"x":72,"y":0,"id":1989,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1990,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1991,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1999,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":2000,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":2001,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":2002,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":2003,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":2004,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":2009,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":2010,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2011,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":2012,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":2013,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2015,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":2016,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2017,"sizeY":24},{"sizeX":24,"x":72,"y":-36,"id":2019,"sizeY":24}],"lineID":32,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Stacy's Factory Manager","icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Right? Right."}},"order":32},{"quests":[{"sizeX":24,"x":132,"y":0,"id":490,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":666,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":667,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":668,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":669,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":670,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":671,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":672,"sizeY":24},{"sizeX":24,"x":408,"y":36,"id":674,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":675,"sizeY":24},{"sizeX":24,"x":384,"y":72,"id":676,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":677,"sizeY":24},{"sizeX":24,"x":216,"y":96,"id":866,"sizeY":24},{"sizeX":24,"x":132,"y":48,"id":874,"sizeY":24},{"sizeX":24,"x":264,"y":0,"id":1181,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":1182,"sizeY":24},{"sizeX":24,"x":312,"y":0,"id":1183,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":1184,"sizeY":24},{"sizeX":24,"x":408,"y":0,"id":1185,"sizeY":24},{"sizeX":24,"x":168,"y":96,"id":1186,"sizeY":24},{"sizeX":24,"x":216,"y":168,"id":1187,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":1188,"sizeY":24},{"sizeX":24,"x":264,"y":168,"id":1189,"sizeY":24},{"sizeX":24,"x":312,"y":168,"id":1190,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":1379,"sizeY":24},{"sizeX":24,"x":216,"y":216,"id":1810,"sizeY":24}],"lineID":33,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Transportation","icon":{"id":"minecraft:activator_rail","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"From four legged steeds to iron horses"}},"order":33},{"quests":[{"sizeX":24,"x":384,"y":336,"id":204,"sizeY":24},{"sizeX":24,"x":384,"y":372,"id":205,"sizeY":24},{"sizeX":24,"x":120,"y":0,"id":809,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":810,"sizeY":24},{"sizeX":24,"x":36,"y":60,"id":811,"sizeY":24},{"sizeX":24,"x":120,"y":60,"id":812,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":813,"sizeY":24},{"sizeX":24,"x":84,"y":96,"id":814,"sizeY":24},{"sizeX":24,"x":204,"y":96,"id":815,"sizeY":24},{"sizeX":24,"x":252,"y":132,"id":816,"sizeY":24},{"sizeX":24,"x":252,"y":96,"id":817,"sizeY":24},{"sizeX":24,"x":288,"y":132,"id":818,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":819,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":820,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":821,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":822,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":823,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":824,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":827,"sizeY":24},{"sizeX":24,"x":336,"y":132,"id":828,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":829,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":830,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":831,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":832,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1067,"sizeY":24},{"sizeX":24,"x":72,"y":252,"id":1068,"sizeY":24},{"sizeX":24,"x":168,"y":252,"id":1072,"sizeY":24},{"sizeX":24,"x":36,"y":336,"id":1371,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1426,"sizeY":24},{"sizeX":24,"x":300,"y":252,"id":1427,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1428,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1429,"sizeY":24},{"sizeX":24,"x":300,"y":216,"id":1430,"sizeY":24},{"sizeX":24,"x":336,"y":216,"id":1431,"sizeY":24},{"sizeX":24,"x":252,"y":252,"id":1432,"sizeY":24},{"sizeX":24,"x":252,"y":168,"id":1433,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":1434,"sizeY":24},{"sizeX":24,"x":288,"y":168,"id":1435,"sizeY":24},{"sizeX":24,"x":384,"y":168,"id":1436,"sizeY":24},{"sizeX":24,"x":204,"y":252,"id":1437,"sizeY":24},{"sizeX":24,"x":132,"y":336,"id":1439,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":1440,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":1441,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":1445,"sizeY":24},{"sizeX":24,"x":300,"y":372,"id":1446,"sizeY":24},{"sizeX":24,"x":336,"y":408,"id":1447,"sizeY":24},{"sizeX":24,"x":228,"y":468,"id":1448,"sizeY":24},{"sizeX":24,"x":336,"y":372,"id":1449,"sizeY":24},{"sizeX":24,"x":384,"y":408,"id":1450,"sizeY":24},{"sizeX":24,"x":420,"y":408,"id":1451,"sizeY":24},{"sizeX":24,"x":420,"y":372,"id":1452,"sizeY":24},{"sizeX":24,"x":300,"y":408,"id":1453,"sizeY":24},{"sizeX":24,"x":300,"y":540,"id":1454,"sizeY":24},{"sizeX":24,"x":336,"y":468,"id":1456,"sizeY":24},{"sizeX":24,"x":264,"y":468,"id":1457,"sizeY":24},{"sizeX":24,"x":384,"y":468,"id":1458,"sizeY":24},{"sizeX":24,"x":420,"y":468,"id":1459,"sizeY":24},{"sizeX":24,"x":192,"y":468,"id":1460,"sizeY":24},{"sizeX":24,"x":336,"y":252,"id":1462,"sizeY":24},{"sizeX":24,"x":300,"y":576,"id":1463,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":1464,"sizeY":24},{"sizeX":24,"x":228,"y":300,"id":1465,"sizeY":24},{"sizeX":24,"x":228,"y":336,"id":1466,"sizeY":24},{"sizeX":24,"x":264,"y":300,"id":1467,"sizeY":24},{"sizeX":24,"x":336,"y":300,"id":1468,"sizeY":24},{"sizeX":24,"x":264,"y":336,"id":1469,"sizeY":24},{"sizeX":24,"x":228,"y":372,"id":1470,"sizeY":24},{"sizeX":24,"x":264,"y":372,"id":1471,"sizeY":24},{"sizeX":24,"x":384,"y":252,"id":1472,"sizeY":24},{"sizeX":24,"x":156,"y":468,"id":1473,"sizeY":24},{"sizeX":24,"x":342,"y":540,"id":1530,"sizeY":24},{"sizeX":24,"x":384,"y":576,"id":1531,"sizeY":24},{"sizeX":24,"x":342,"y":576,"id":1532,"sizeY":24},{"sizeX":24,"x":342,"y":624,"id":1535,"sizeY":24},{"sizeX":24,"x":300,"y":624,"id":1723,"sizeY":24},{"sizeX":24,"x":228,"y":624,"id":1724,"sizeY":24},{"sizeX":24,"x":204,"y":564,"id":1725,"sizeY":24},{"sizeX":24,"x":96,"y":624,"id":1726,"sizeY":24},{"sizeX":24,"x":216,"y":720,"id":1727,"sizeY":24},{"sizeX":24,"x":156,"y":552,"id":1728,"sizeY":24},{"sizeX":24,"x":192,"y":648,"id":1729,"sizeY":24},{"sizeX":24,"x":192,"y":600,"id":1730,"sizeY":24},{"sizeX":24,"x":216,"y":528,"id":1731,"sizeY":24},{"sizeX":24,"x":426,"y":540,"id":1732,"sizeY":24},{"sizeX":24,"x":426,"y":576,"id":1733,"sizeY":24},{"sizeX":24,"x":384,"y":540,"id":1734,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1742,"sizeY":24},{"sizeX":24,"x":372,"y":300,"id":1743,"sizeY":24},{"sizeX":24,"x":168,"y":288,"id":1840,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2072,"sizeY":24}],"lineID":34,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Space Race","icon":{"id":"GalaxySpace:item.Tier6Rocket","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A guide to help you start Galacticraft and reach the Moon"}},"order":34},{"quests":[{"sizeX":24,"x":228,"y":48,"id":178,"sizeY":24},{"sizeX":24,"x":228,"y":12,"id":179,"sizeY":24},{"sizeX":24,"x":468,"y":48,"id":180,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":181,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":182,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":183,"sizeY":24},{"sizeX":24,"x":192,"y":72,"id":184,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":185,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":203,"sizeY":24},{"sizeX":24,"x":468,"y":96,"id":1253,"sizeY":24},{"sizeX":24,"x":468,"y":144,"id":1254,"sizeY":24},{"sizeX":24,"x":516,"y":48,"id":1255,"sizeY":24},{"sizeX":24,"x":516,"y":96,"id":1256,"sizeY":24},{"sizeX":24,"x":516,"y":144,"id":1257,"sizeY":24},{"sizeX":24,"x":144,"y":288,"id":1258,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1259,"sizeY":24},{"sizeX":24,"x":264,"y":180,"id":1260,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1290,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":1291,"sizeY":24},{"sizeX":24,"x":228,"y":96,"id":1292,"sizeY":24},{"sizeX":24,"x":228,"y":144,"id":1293,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1294,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1295,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":1296,"sizeY":24},{"sizeX":24,"x":144,"y":252,"id":1298,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":1299,"sizeY":24},{"sizeX":24,"x":144,"y":216,"id":1300,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1301,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1302,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1303,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1304,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1305,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1306,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1308,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1309,"sizeY":24},{"sizeX":24,"x":312,"y":48,"id":1310,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":1311,"sizeY":24},{"sizeX":24,"x":312,"y":144,"id":1312,"sizeY":24},{"sizeX":24,"x":360,"y":48,"id":1313,"sizeY":24},{"sizeX":24,"x":360,"y":96,"id":1314,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":1315,"sizeY":24},{"sizeX":24,"x":396,"y":48,"id":1316,"sizeY":24},{"sizeX":24,"x":396,"y":96,"id":1317,"sizeY":24},{"sizeX":24,"x":396,"y":144,"id":1318,"sizeY":24},{"sizeX":24,"x":432,"y":96,"id":1319,"sizeY":24},{"sizeX":24,"x":312,"y":180,"id":1326,"sizeY":24},{"sizeX":24,"x":264,"y":48,"id":1327,"sizeY":24},{"sizeX":24,"x":264,"y":12,"id":1328,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":1329,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":1330,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1331,"sizeY":24},{"sizeX":24,"x":192,"y":36,"id":2119,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":2120,"sizeY":24},{"sizeX":24,"x":192,"y":108,"id":2136,"sizeY":24},{"sizeX":24,"x":264,"y":144,"id":2137,"sizeY":24}],"lineID":35,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Applied Energistics","icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"tag":{},"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"AE2 focuses on creating a compact, easily accessible, considerably extendible storage system called an ME Network. "}},"order":35},{"quests":[{"sizeX":24,"x":0,"y":0,"id":2005,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2006,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":2007,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":2008,"sizeY":24}],"lineID":36,"properties":{"betterquesting":{"visibility":"NORMAL","name":"An Age of Tech","icon":{"id":"tectech:gt.blockcasingsTT","Count":1,"Damage":9,"OreDict":""},"bg_image":"","bg_size":256,"desc":"I've been keeping a watchful eye on your technological advance - it's time to see the dreams of a technological future! I shall guide you to a whole new complicated series of machinery. Be wary though, these machines will test your resolve (and energy limits) to the extreme. (under construction)"}},"order":36},{"quests":[{"sizeX":24,"x":336,"y":132,"id":537,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":900,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":901,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":902,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":903,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":904,"sizeY":24},{"sizeX":24,"x":240,"y":0,"id":905,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":906,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":907,"sizeY":24},{"sizeX":24,"x":384,"y":0,"id":908,"sizeY":24},{"sizeX":24,"x":444,"y":132,"id":909,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":910,"sizeY":24},{"sizeX":24,"x":372,"y":132,"id":911,"sizeY":24},{"sizeX":24,"x":408,"y":132,"id":912,"sizeY":24},{"sizeX":24,"x":228,"y":132,"id":913,"sizeY":24},{"sizeX":24,"x":264,"y":132,"id":914,"sizeY":24},{"sizeX":24,"x":300,"y":132,"id":915,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":916,"sizeY":24},{"sizeX":24,"x":408,"y":96,"id":917,"sizeY":24},{"sizeX":24,"x":0,"y":60,"id":918,"sizeY":24},{"sizeX":24,"x":48,"y":60,"id":919,"sizeY":24},{"sizeX":24,"x":96,"y":60,"id":920,"sizeY":24},{"sizeX":24,"x":144,"y":60,"id":921,"sizeY":24},{"sizeX":24,"x":192,"y":60,"id":922,"sizeY":24},{"sizeX":24,"x":240,"y":60,"id":923,"sizeY":24},{"sizeX":24,"x":288,"y":60,"id":924,"sizeY":24},{"sizeX":24,"x":336,"y":60,"id":925,"sizeY":24},{"sizeX":24,"x":192,"y":132,"id":985,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":2073,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":2074,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":2075,"sizeY":24},{"sizeX":24,"x":48,"y":132,"id":2076,"sizeY":24},{"sizeX":24,"x":0,"y":132,"id":2077,"sizeY":24},{"sizeX":24,"x":96,"y":132,"id":2078,"sizeY":24},{"sizeX":24,"x":48,"y":168,"id":2079,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":2111,"sizeY":24}],"lineID":37,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Kill all the things","icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This world is full of nasty things. Time to kill some and improve your reputation."}},"order":37},{"quests":[{"sizeX":24,"x":0,"y":0,"id":600,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":601,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":602,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":603,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":605,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":606,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":607,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":986,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":2286,"sizeY":24}],"lineID":38,"properties":{"betterquesting":{"visibility":"NORMAL","name":"To grind, or not to grind","icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"That is the question. Do you want good tools? Well, then go grind stuff! The rewards of these quests are worth it, trust me."}},"order":38},{"quests":[{"sizeX":24,"x":252,"y":72,"id":308,"sizeY":24},{"sizeX":24,"x":204,"y":72,"id":350,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":351,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":352,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":353,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":354,"sizeY":24},{"sizeX":24,"x":96,"y":36,"id":355,"sizeY":24},{"sizeX":24,"x":156,"y":36,"id":356,"sizeY":24},{"sizeX":24,"x":96,"y":72,"id":357,"sizeY":24},{"sizeX":24,"x":96,"y":108,"id":358,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":359,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":360,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":361,"sizeY":24}],"lineID":39,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Quests","icon":{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary quest-line with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":39},{"quests":[{"sizeX":24,"x":0,"y":32,"id":362,"sizeY":24},{"sizeX":24,"x":32,"y":32,"id":363,"sizeY":24},{"sizeX":24,"x":64,"y":32,"id":364,"sizeY":24},{"sizeX":24,"x":96,"y":32,"id":365,"sizeY":24},{"sizeX":24,"x":160,"y":32,"id":366,"sizeY":24},{"sizeX":24,"x":128,"y":32,"id":367,"sizeY":24},{"sizeX":24,"x":192,"y":32,"id":368,"sizeY":24},{"sizeX":24,"x":224,"y":32,"id":369,"sizeY":24},{"sizeX":24,"x":256,"y":32,"id":370,"sizeY":24},{"sizeX":24,"x":288,"y":32,"id":371,"sizeY":24},{"sizeX":24,"x":320,"y":32,"id":372,"sizeY":24},{"sizeX":24,"x":352,"y":32,"id":373,"sizeY":24},{"sizeX":24,"x":384,"y":32,"id":374,"sizeY":24},{"sizeX":24,"x":64,"y":64,"id":375,"sizeY":24},{"sizeX":24,"x":96,"y":64,"id":376,"sizeY":24},{"sizeX":24,"x":384,"y":64,"id":377,"sizeY":24},{"sizeX":24,"x":352,"y":64,"id":378,"sizeY":24},{"sizeX":24,"x":320,"y":64,"id":379,"sizeY":24},{"sizeX":24,"x":288,"y":64,"id":380,"sizeY":24},{"sizeX":24,"x":256,"y":64,"id":381,"sizeY":24},{"sizeX":24,"x":224,"y":64,"id":382,"sizeY":24},{"sizeX":24,"x":192,"y":64,"id":383,"sizeY":24},{"sizeX":24,"x":160,"y":64,"id":384,"sizeY":24},{"sizeX":24,"x":128,"y":64,"id":385,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":386,"sizeY":24},{"sizeX":24,"x":0,"y":64,"id":387,"sizeY":24},{"sizeX":24,"x":32,"y":64,"id":388,"sizeY":24},{"sizeX":24,"x":224,"y":128,"id":389,"sizeY":24},{"sizeX":24,"x":192,"y":128,"id":390,"sizeY":24},{"sizeX":24,"x":256,"y":128,"id":391,"sizeY":24},{"sizeX":24,"x":32,"y":96,"id":392,"sizeY":24},{"sizeX":24,"x":64,"y":96,"id":393,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":394,"sizeY":24},{"sizeX":24,"x":128,"y":96,"id":395,"sizeY":24},{"sizeX":24,"x":160,"y":128,"id":396,"sizeY":24},{"sizeX":24,"x":288,"y":128,"id":397,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":464,"sizeY":24}],"lineID":40,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Tier X","icon":{"id":"DraconicEvolution:chaosCrystal","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary quest-line with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":40},{"quests":[{"sizeX":24,"x":0,"y":0,"id":398,"sizeY":24},{"sizeX":24,"x":0,"y":32,"id":399,"sizeY":24},{"sizeX":24,"x":0,"y":64,"id":400,"sizeY":24},{"sizeX":24,"x":32,"y":0,"id":401,"sizeY":24},{"sizeX":24,"x":64,"y":32,"id":402,"sizeY":24},{"sizeX":24,"x":64,"y":0,"id":403,"sizeY":24},{"sizeX":24,"x":64,"y":64,"id":404,"sizeY":24},{"sizeX":24,"x":32,"y":32,"id":405,"sizeY":24}],"lineID":41,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Infinity","icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary questline with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":41},{"quests":[{"sizeX":24,"x":36,"y":0,"id":439,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":441,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":443,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":445,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":447,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":449,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":564,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":565,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":566,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":567,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":568,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":569,"sizeY":24},{"sizeX":24,"x":72,"y":48,"id":570,"sizeY":24},{"sizeX":24,"x":108,"y":48,"id":571,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":572,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":573,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":574,"sizeY":24},{"sizeX":24,"x":180,"y":96,"id":575,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":678,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":679,"sizeY":24},{"sizeX":24,"x":72,"y":192,"id":680,"sizeY":24},{"sizeX":24,"x":144,"y":192,"id":681,"sizeY":24},{"sizeX":24,"x":180,"y":192,"id":682,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1690,"sizeY":24}],"lineID":42,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Reward Area","icon":{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":44,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Upgrade your loot bags!"}},"order":42}],"questSettings":{"betterquesting":{"livesMax":10,"pack_name":"GT-New-Horizons","home_anchor_y":0,"livesDef":3,"home_anchor_x":0.5,"hardcore":0,"home_image":"dreamcraft:textures/gui/gtnh_title.png","party_enable":1,"pack_version":2075,"editMode":0,"home_offset_x":-128,"home_offset_y":0}}} diff --git a/src/Server/SampleData/DefaultQuests-2.0.7.6d-dev-cleaned-minified.json b/src/Server/SampleData/DefaultQuests-2.0.7.6d-dev-cleaned-minified.json deleted file mode 100644 index e906203..0000000 --- a/src/Server/SampleData/DefaultQuests-2.0.7.6d-dev-cleaned-minified.json +++ /dev/null @@ -1 +0,0 @@ -{"format":"2.0.0","questDatabase":[{"questID":0,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§d§3§2§1§lYour first night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first task will be to find food, and a shelter for the night. The nights will be cruel, as this pack has hardcore darkness. It probably would be a good idea to collect some food now...\n\n§lNote: You don't need to keep this book, you can use tilde to open quests without the book.\n§5§5§o§o§n§m§m§n§n§l§n§e§d§c§b§a§9§8§8§7§6§5§4§r\nWe also maintain a wiki at §e§a§6§4https://gtnh.miraheze.org/wiki/Main_Page §rbe sure to check it out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1,"preRequisites":[2],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lWhere is the flint?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you might have noticed, while collecting gravel, no flint dropped for you. Well, there is a... recipe for that. Look up flint in NEI and craft some!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSticks 'n Stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This book has a built-in reading light, lucky you! Most probably you will read this text while you are waiting for the night to be over. Once it is, go out and collect some gravel and wood. Keep in mind that you need food, so look for Pam's Harvestcraft gardens. (And save some of the vegetables for seeds!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gravel","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":2,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:torch","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":3,"preRequisites":[4],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lStorage for days","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've unlocked 3x3 crafting, it's about time to make some storage for your goods. Take some of your wood, and craft a chest. You will need 4 wood, 4 planks and 1 flint."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:muttoncookedItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":4,"preRequisites":[1204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"questbook:ItemQuestBook","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMain Quests and Secondary Quests","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have made it this far notice the two new quests. See how these two quests look different? The quest with a crown is a main quest and is linked to other main quests by a thick line. You must complete the main quests to unlock the next tier. The other quest is an optional quest, and is not needed to unlock new tiers. However, optional quests often introduce you to useful items or processes.\n\nNot all main quests have a connecting line to guide you through your adventure because of book size. If there is not an obvious linked main quest at any point, try completing some of the other main quests available to you to progress."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":5,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":56,"Head":3,"HeadEXP":0,"BaseAttack":3,"Built":1,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":3,"Broken":0,"Shoddy":0,"RenderHandle":3,"Accessory":3,"MiningSpeed":400,"RenderAccessory":3,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":56},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lTools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've got a shelter, crafting table, and a place to store your items, you should make some tools. (Unless you'd like to continue punching trees with your bare hand...)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood"}},"Damage":4,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":2,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":6,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":8,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":6,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wheat_seeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lYou reap...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You won't always get food rewards from this book, so it might be a good idea to take care of that problem. As you've created a hoe already, go and find some water nearby and make a field. With this modpack you can only make farmland within range of water. Let's trade some sticks for a carrot, so you can start your own farm.\n\nTo get other wheat, use a hoe on grass away from water. You'll get Witchery seeds too, save those for later. Start planting a cotton field, it's a key early game resource."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:stick","Count":8,"Damage":0,"OreDict":"woodStick"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:carrot","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":7,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:carrot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§l...what you sow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you, by chance, did read the previous quest and planted the carrot I gave you, then you're fine. Meanwhile, you should turn some more fruits and vegetables into seeds, and increase the size of your farm to get a steady supply of food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:carrot","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potato","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":8,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:cobblestone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lGet that stone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Look at you, with your shiny flint pickaxe! Time to mine some cobblestone. Yay! (And maybe you can improve this dirt-hut too...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":9,"preRequisites":[8],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFire, fire, Grandpa!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to burn some stuff, isn't it? You can't make charcoal in it, but you sure will find some usage for it soon(tm)."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":10,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lRest in pieces","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's GLOPPing time! Go kill some pigs to gather meat. (And yes, they will drop cooked porkchops. Now isn't that useful...)"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":10,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"Saddle":0,"FallDistance":0,"InLove":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":10,"id":"Pig","Age":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-3998212785627166700,"Health":10,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14197274275598,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":5,"taskID":"bq_standard:hunt","target":"Pig","subtypes":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":11,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSharpness: Over... 5...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's about time to craft something more useful: A sword!\n\nNow that you have a sword, you will get credit for monster kills in the Kill all the things tab. Watch out, monsters in this world will chew you up and spit you out!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":12,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFluffy and red","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epic quest: Kill some sheep! (And try to get some wool, for a bed, obviously...)"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":8,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.23000000417232513,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"InLove":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":8,"id":"Sheep","Age":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":8005527541666259000,"Health":8,"Color":0,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14240014886935,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"Sheared":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":6,"taskID":"bq_standard:hunt","target":"Sheep","subtypes":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":13,"preRequisites":[12,7,444,10],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSO...TIRED...MUST...SLEEP...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sleepy time, and the end of Tier 0. Congratulations, you've built your first hideout, and you should have a steady supply of food by now. See you again in tier 1!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":14,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§5§lWhat is that...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've seen a lot of trees, but there are a few that look really special. You are sure that these trees are much more than just wood to build your home with or used to get charcoal.\nThe best place to find them is in a Magical Forest, but if you can't find them there you can try a Garden or Cherry Wood Grove.\nIf you have trouble finding them, you can build a special compass in LV to help you locate the biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":15,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"SpiceOfLife:lunchbag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lReady, set, go!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably should have a home by now. A steady supply of food is a fundamental requirement at all times. Take this journal to keep track of the things you've eaten. You will have to travel far in this tier, better be prepared!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"SpiceOfLife:lunchbag","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":16,"preRequisites":[84],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"irontank:ironTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lBetter Tank... Iron Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Storing more than 16 buckets of fluid in one tank? Sure! Just make an iron tank or upgrade the Buildcraft tank.\nDiamond tanks carry up to 64 buckets and obsidian ones are blast proof."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"irontank:ironTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":17,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSand: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In a strange vision you saw a big structure which would allow you to make charcoal. Finally some torches! According to your calculations, you will need a lot of sand for that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":128,"Damage":0,"OreDict":"sand"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:sand","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:leekbaconsoupItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":18,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBasic processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most things are unavailable at the moment, so let's begin with something simple. Take some of your cobblestone and smelt it into regular stone. Since this modpack is evil, you'll need to use wood for that. How much fun is that?!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:stone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:chisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":19,"preRequisites":[18],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lMaceration v0.1 Alpha","isGlobal":0,"lockedProgress":0,"ignoreNBT":1,"autoClaim":0,"isSilent":0,"desc":"This fancy little device works (almost...) like a macerator. Some people say it's even better, since it does not require power, yay! You only need to craft one for this quest, but you probably should make some more if you can..."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":"craftingToolMortar"}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":20,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGravel: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tools will eventually lose durability. You think it would be a good idea to collect more gravel in order to provide yourself with flint for more tools. Try searching near water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gravel","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:gravel","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:baconcheeseburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":21,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:clay_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lClay: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While bored, you thought that it might be a good idea to take up pottery. You should go and find some clay, the riverbanks should have some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:clay_ball","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:clay_ball","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32233,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":22,"preRequisites":[23],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:cactus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFinite water!?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finite water is a problem, that's for sure. Last night, you had an idea. If you can drink cacti, you should also be able make water out of 8 cacti and use that for most recipes that require water. How cool is that? So what about another trade? 10 wood for... 3 cacti so you can setup a farm. Deal?\n\nTo automate the farm, place a string next to the cactus and a sand on top of the string. Now when the cactus grows, it will automatically break! You can stack this horizontally and vertically to make a very efficient cactus farm. Use water to redirect the cactus to a convenient pickup location or to above a hopper.\n\nFirst player to make a base running off of only cactus water gets a cape!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":10,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cactus","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":23,"preRequisites":[21,19],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IguanaTweaksTConstruct:clayBucketUnfired","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSomething to carry liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You tried to move water with your bare hands, which didn't work at all. Luckily, you remember how to make a bucket out of clay dust.\n\nPut it in a mortar to get small clay dust which can be crafted to clay dust."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IguanaTweaksTConstruct:clayBucketUnfired","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:peanutbuttercookiesItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:raisincookiesItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":24,"preRequisites":[25,17],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lGetting (char)coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to get yourself some charcoal. For that, we're going to build a coke oven. Good that you just collected a lot of resources! (What a coincidence...)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":26,"Damage":7,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":25,"preRequisites":[26],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:brick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnother brick in the wall","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your vision becomes more clear, you'll need bricks for your first multiblock structure. You think that 104 bricks should be enough. However, the bricks you'll need are somewhat special. Make sure to craft the correct ones!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredCokeOvenBrick","Count":104,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CokeOvenBrick","Count":104,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:baconmushroomburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":26,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lForming press v0.1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you may have noticed, you cannot turn clay into bricks directly. Well, to be fair, it wasn't a good recipe anyway. You'll probably end up with something bread-shaped. So in order to make bricks, you need a form. Get yourself a knife and a blank pattern, and cut a brick sized piece out. It's as easy as that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood","Damage":100}},"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":27,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finally, some power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a coke oven, you can start producing charcoal. The more, the better. Don't worry about the creosote oil; I have another deal for you..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:coal","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:maplecandiedbaconItem","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":28,"preRequisites":[27],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"ExtraUtilities:curtains","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper sky, Iron curtain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your newly acquired fuel source, you are now ready to process more advanced materials than stone or clay; Iron or copper, for example. Just in case you don't know, they spawn in rather large veins. Use the following quests to locate the most important veins."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":29,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8538,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnother fuel source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lignite and regular coal are the fuel sources you'll definitely need. The latter can be turned into coal coke, which is a superior fuel source to smelt your first large batch of ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":8538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":30,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11035,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Copper ingots can be created by smelting copper, chalcopyrite, or malachite ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":11035,"OreDict":"ingotAnyCopper"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:zucchinibreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:footlongItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":31,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11057,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tin ingots can be created by smelting Tin, Cassiterite, or Cassiterite Sand ore. Tin and Cassiterite ores are only found at high altitudes, but Cassiterite Sand ore is plentiful near the surface.\n\n§5§4Tip: If you get lucky and find a high altitude Tin/Cassiterite vein, save one of the Cassiterite ore to find your Mica vein later on using the ore finder wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11057,"OreDict":"ingotTin"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Natura:berryMedley","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":32,"preRequisites":[23],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:paper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBook parts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you found a way to move water around, you had another brilliant idea: Paper! Paper is no longer made with sugarcane, you will now need wood pulp. You will need a lot of wood to craft wood pulp, so better grab your axe and go chop some trees."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2809,"OreDict":"dustWood"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:paper","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:blankPattern","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":33,"preRequisites":[32],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTinker-time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While using your flint tools is fun in terms of killing pigs and cows, they are not very good, and can't be repaired. You discovered how to craft tools that could be repaired and upgraded, but for that you definitely need a more advanced crafting technique."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":34,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:GravelOre","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAluminini...um...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"However it is spelled, you will need it. You can find it in chunks of gravel on the surface.\n\nUse as little as possible and save the rest for when you get a macerator in Steam age."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:GravelOre","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32233,"OreDict":""},{"id":"TConstruct:GravelOre","Count":16,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":35,"preRequisites":[31,30],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2300,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking bronze","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've found copper and tin, you should make yourself some bronze. Use your macer... mortar to grind up some copper and tin ingots, and mix them together!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2300,"OreDict":"dustBronze"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11300,"OreDict":"ingotBronze"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:curryItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":36,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lImportant tools","isGlobal":0,"lockedProgress":0,"ignoreNBT":1,"autoClaim":0,"isSilent":0,"desc":"In order to craft even basic machines, you'll need new tools. Most of them can be replaced by machines later. For now, you should become familiar with each of their recipes, as you will need a lot of these tools, starting today.\n\nYour new tools can also be used to make Railcraft water tanks, a very useful multiblock considering the finite water feature.\n\nYou want to make the non-electric versions of the screwdriver and wrench."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":12,"OreDict":"craftingToolHardHammer"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":16,"OreDict":"craftingToolWrench"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":18,"OreDict":"craftingToolFile"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":22,"OreDict":"craftingToolScrewdriver"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":10,"OreDict":"craftingToolSaw"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":20,"OreDict":"craftingToolCrowbar"}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""},{"id":"harvestcraft:zucchinibakeItem","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":37,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGetting iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron can be found in multiple veins. \nMagnetite veins (y 30-180), \nchalcopyrite veins (y 5-60), \nand limonite veins (y 10-40) all contain iron ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":72,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:pumpkin_pie","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":38,"preRequisites":[30,1866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":356,"Head":14,"HeadEXP":0,"BaseAttack":4,"Built":1,"ToolEXP":0,"HarvestLevel":3,"Attack":4,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":356},"display":{"Name":"Bronze Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking better tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With aluminium and copper, you can create a pretty durable material \"Aluminum Brass\", which can be used to cast better tools. These can be used to mine some more advanced ores.\n\nBut first you need a smeltery. See the Multiblock Goals chapter in this book, or find smeltery blocks in a village nearby."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:shovelHead","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":39,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBetter storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While standard chests are good for your basic items and goods, they are not ideal for storing a large amount of ore. You should build yourself some barrels in order to keep things organized."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:fullDrawers1","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":40,"preRequisites":[35,36,1738],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou shall proceed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you've gathered and crafted all materials and tools you need for your basic steam machinery, you may now proceed to the next tier. Keep in mind that you'll need mountains of resources in order to craft even the simplest things, so you probably should stock up on all ores in this tier. But that's up to you."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17300,"OreDict":"plateBronze"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredClayBrick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:brick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:brick_block","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":17032,"OreDict":"plateIron"},{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5121,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":41,"preRequisites":[43],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.OvenGlove","Count":1,"tag":{"Durability":1000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lDon't burn your fingers!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have decided it's time to make some tasty pizza, but your fingers got burned badly. Reading an ancient cookbook you discovered a pair of magical items that would allow you to carry anything hot, even lava in a bucket.\n\n§6§5The gloves have to be placed in the Baubles ring slots of Thaumcraft.\n\n§rFor the protection effect, the hot item has to be in your active slot. I wonder if there is some way to carry more than a few buckets at a time?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":6,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.OvenGlove","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.OvenGlove","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":42,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§r§2§lCow Tipper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you had to kill some pigs and sheep to complete quests. Now it's time to kill some cows and hopefully get some leather. If you are lucky and get a cow trophy you may never need to kill another cow in the future."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":6,"taskID":"bq_standard:hunt","target":"Cow","subtypes":1}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":43,"preRequisites":[42],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Natura:barleyFood","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cotton, cotton and more cotton","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You find out that cotton is very useful, it can be used to make string, wool, and some other useful items too. Make a small cotton plantation to get tons of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:barleyFood","Count":5,"Damage":3,"OreDict":""},{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:barley.seed","Count":10,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":44,"preRequisites":[40],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWelcome to Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome, and well done so far! This tier is all about your first machines, getting more stuff from your ores and making bronze ingots in a more efficient manner.\n\nFor water, check out the Water Siding Tank multiblock in the Multiblock goals tab.\n\nTo connect up your boilers, be sure to provide water from the bottom. Wooden pipes are fine for this. Make sure you never run out of water - adding water to a hot boiler will cause it to explode!\n\nSteam will come out from the sides. Remember, steam is hot! It will destroy wooden pipes. And it can burn you if you walk on bronze pipes full of steam. Cover them with wooden planks or paper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":2,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":8538,"OreDict":""}]}]},{"questID":45,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMultiblock tanks... Railcraft tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"576 buckets of fluid, that should be enough to store all the creosote you have accumulated thus far. If that isn't enough you can make this tank bigger. The smallest tanks are 3x4x3 while the biggest are 9x8x9.\n\nHint: Fluid will auto-output (without any pumps) if you place a valve on the bottom side of the tank. You can color the tank with Buildcraft paintbrushes and the GT spray can.\n\nUse only Buckets to move fluids because cells get destroyed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":30,"Damage":0,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":2,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:machine.beta","Count":1,"Damage":1,"OreDict":""},{"id":"Railcraft:machine.beta","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:oreBerries","Count":5,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":46,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":118,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMore advanced alloys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your smeltery does a great job mixing metals into alloys, but it's not very efficient, and limited in its complexity. You need something new, so why not put your steam to some use? \n\nIt might also come in handy when processing raw rubber. You should keep an eye on recipes to see when machines offer better options to make items...\n\n§4NOTE: Like all steam machines, the output port doubles as a steam outlet when recipes complete. It must not be blocked. Also, steam is hot, remember? Change the output sideby whacking with a wrench. The 3x3 grid will show you which side the output will move to when you whack it."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":118,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":47,"preRequisites":[46],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":119,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: High speed alloys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like most machines, there is a more advanced version of the alloy smelter. Keep in mind that this machine uses a lot of steam, so you better get some more boilers first. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":119,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":48,"preRequisites":[46],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11308,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA very important alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The most important alloy (until you reach a higher tier) is undoubtedly red alloy. Fortunately, you have an alloy smelter, so grab some redstone and combine it with copper to get yourself a handful of that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":11308,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11308,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":49,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe hell is that?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get more machines, you'll need pistons. But not those amateurish ones, you need special ones, and I shall guide you in the making of them."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17308,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:fence","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":7,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":6,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:sticky_piston","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":50,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMacerator v1.0!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally you are able to make a device that will replace your mortar. However, the \"no-durability\" feature of this device comes with a cost: You need 2 diamonds for the grinding heads.\n\nThe macerator will double your ore output. Put ores through it instead of smelting directly.\n\nNOTE: Remember, don't block the output port and don't stand behind it."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":106,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:jellybeansItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":51,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":109,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lExtracting stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you'll need rubber later to make cables from wires, you should get yourself a steam extractor. You can also use this machine to get more dyes from flowers, or process different fruits into juice."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":109,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":52,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§4§3§lA clear view","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you still living in your dirt hut/cobble hovel? How about letting in some sunlight? Grind up some sand and flint and craft some glass dust. Put it in your smeltery and pour it into a casting basin to make clear glass.\n\n§4Hint: In order to use it for recipes, you have to chisel it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2939,"OreDict":"dustQuartzSand"},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":802,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2890,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:GlassBlock","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"chisel:chisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:glass","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":53,"preRequisites":[694],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":112,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHammer time v2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using 6 ingots to craft a hammer seems pretty wasteful, as this tool has durability. How nice would it be to have a machine that does the same but without having durability and using three ingots to make two plates? Guess what, there is one! And you should totally get one."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":112,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_ingot","Count":6,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":54,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lCompressing stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This rather simple device does a very important job: compression. It's main function is to press 9 ingots into a block, but it's also useful for a variety of recipes, for example making firm tofu."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":115,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":55,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":116,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lUpgrade: A better compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam compressor. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":116,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spicymustardporkItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":56,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":113,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Forge hammer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam forge hammer. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":113,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:gummybearsItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":57,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Extractor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam extractor. Uses more steam, but is almost twice as fast. You probably want to craft this, as the extractor does also extract your nerves... (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":110,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:stuffedpepperItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":58,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":107,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Better macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam macerator. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":107,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:softpretzelandmustardItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":59,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.GregTech_FluidDisplay","Count":1,"tag":{"mFluidDisplayAmount":0,"mFluidDisplayHeat":375,"mFluidState":1},"Damage":48,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSteam alternatives","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There is more than one way to get steam for your machines. This completely optional quest shows you some alternative methods for producing steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11300,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":60,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Coal boiler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This is basically just an upgrade to your current coal boiler, however it produces more than twice as much steam. Something you should consider building if you're planning to get some of the upgraded machines."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":101,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:zeppoleItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":61,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAnother use for Java, I mean Lava","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a more durable steel casing, you can use lava to make steam."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":102,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberryjellysandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":62,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe power of the sun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sun has quite a bit of power, so why not use it to produce steam? \n\nFill it with water on the bottom side to produce steam. Unlike the other boilers, this only outputs steam on the output port side.\n\n§4Hint: The solar boiler calcifies and becomes less efficient over time."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":105,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:papayajellysandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":63,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUsing steam to cook things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A rather slow process, but it's more efficient than using a regular furnace."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":103,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:lamingtonItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":64,"preRequisites":[63],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":104,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Better furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam furnace. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":104,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fairybreadItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":65,"preRequisites":[53,44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBlastoff!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's about time to make some steel. Look in the Multiblock Goals quest tab and build a Bricked Blast Furnace. Return here when you made at least 8 steel ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:breadedporkchopItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:iron_ore","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":66,"preRequisites":[67,871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32700,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lTime for some logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good news! You are now able to advance to the next tier! Bad news: You still have to craft a lot of things before you can begin. Fear not mortal, I shall guide you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":1360,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":26308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32012,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:turkeycookedItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":67,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lWired, weird?!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the very basic materials which you should memorize how to craft are wires and cables. Basically you just cut a plate into a wire with your wire cutter. Not very efficient, but there will be a better way later."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":2000,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":7,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":7,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fruitcrumbleItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":68,"preRequisites":[66,67,834,835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lYour first electronic circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steam machines are quite stupid, they just do one thing over and over again. As you advance into the electrical age, you've decided that you want the machines to have more features, like automatic output in order to create some automation. For that, you need electronic circuits."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:icecreamItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":69,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWire-Wrap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing wires without insulation seems to be a bad idea. Now that you have an extractor to extract raw rubber out of sticky resin and an alloy smelter to further process it using sulphur, you should work on getting some insulating rubber sheets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":120,"Damage":2896,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":2022,"OreDict":"dustSulfur"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":11880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:onionsoupItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":70,"preRequisites":[71,72,68],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSteam-a-licious!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You almost made it. One last crafting step is required in order to advance to Tier 2. Keep going!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberrybarItem","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":71,"preRequisites":[67,69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Motors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Motors are little devices that can turn electrical power into rotational energy. Very useful for all kind of machines, and not that difficult to craft. The pattern is always the same, only the materials change with tiers. For now you can use redstone to magnetize your iron rod. Later on you will build an Electromagnetic Polarizer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23354,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32600,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:melonsmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":72,"preRequisites":[73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Rotors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rotors are also crafted using an identical pattern with different materials. A bit annoying to craft at the moment, but you don't need a lot of them anyway."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28057,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21057,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:strawberrysmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":73,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Casings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All machines need a hull to keep their private parts together. Good news is: They are crafted in the same way for every tier, only the materials change."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:poachedpearItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":74,"preRequisites":[18],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Smeltery","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§6§a§9§8§7§6§5§4§3§2§1§0§3§f§k§f§l§6§lYou are not prepared!!!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time for something really big: A smeltery! There's a lot to craft, so better gather some resources...\n\nThe aluminium oreberries can be planted on cropsticks, and macerated to get small quantites of aluminium for molds if you cannot find aluminium gravel.\n\nNote: The book says a 3x3 base, but you can make a smeltery with a smaller base. Taller/wider smelteries can do more items at one time, conserving fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":123,"Damage":0,"OreDict":"sand"},{"id":"minecraft:gravel","Count":123,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":82,"Damage":2805,"OreDict":"dustClay"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:CraftedSoil","Count":162,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredSearedBrick","Count":162,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":162,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":28,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":7,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:LavaTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":8,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:SearedBlock","Count":2,"Damage":1,"OreDict":""},{"id":"TConstruct:CastingChannel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":9,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":2,"Damage":1,"OreDict":""},{"id":"TConstruct:SearedBlock","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":10,"consume":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":11,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:SearedBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":75,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThe water dilemma","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finite water is a problem. But fear not, there are solutions! I shall guide you to a steady supply of water. The Railcraft water siding tanks provides enough water to last the early game.\n\nThe humidity of a biome is very important and will increase the base fill rate.\n\nIf it is raining, the tank will fill much quicker.\n\nAt least one block of the water siding tank must see sky for the maximum output.\n\nThe best part is that you don't need a pump to extract water. Tanks and pipes placed next to it will be autofilled by the water siding tank.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockRubSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemTreetap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemHarz","Count":26,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":52,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:planks","Count":130,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":26,"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":10,"Damage":5101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":76,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to get some steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need steel? Uhh... fine. Let's get busy...\n\nHint: The bricked blast furnace can share walls with other ones, just like most GT multi blocks. How will this affect the air quality though...\n\nIf you are short on Stone Dust, you can get more by macerating cobblestone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:clay_ball","Count":720,"Damage":0,"OreDict":""},{"id":"minecraft:cobblestone","Count":24,"Damage":0,"OreDict":""},{"id":"minecraft:flint","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":28,"Damage":17032,"OreDict":"plateIron"},{"id":"minecraft:furnace","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMachine","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":144,"Damage":2805,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2299,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2939,"OreDict":"dustQuartzSand"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredClayBrick","Count":432,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:brick","Count":432,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":108,"Damage":2625,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":108,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":32110,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":8,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":32111,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":9,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2934,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":10,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":36,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":11,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":2,"choices":[{"id":"TConstruct:oreBerries","Count":10,"Damage":5,"OreDict":""},{"id":"TConstruct:oreBerries","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:oreBerries","Count":10,"Damage":1,"OreDict":""}]}]},{"questID":77,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§r§6§l§5§l§o§l§r§6§lEBF-Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get alumin(i)um ingots, you need an electric blast furnace. It's another very important step towards victory, so let's get started.\n\nGetting the heating coils might be a little tricky...\n\n§4(You need 2 LV hatches with 4A of 32V total, or 3 LV hatches with MOOOORE power if the multiblock is not fully repaired)\n\n§rA few recipes produce CO2/SO2 as fluid. You can put an output fluid hatch to the top layer of the EBF to collect it otherwise it gets auto voided. It depends on the muffler hatch how much fluid you can recover. Max muffler recovers = 78 percent.\n\nMoron always says - Make Muffler Moint Mup. Or point up, anyways.\n\nIf you want a really fancy EBF, you can add more input fluid hatches and store different fluids in each one.\n\n§4If the pollution gets really bad, check in GT++ Multiblocks for a pollution scrubber."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":11,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":71,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":81,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":91,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":41,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":128,"Damage":1341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":75,"Damage":0,"OreDict":""}]}]},{"questID":78,"preRequisites":[77,81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #1: More heat - Kanthal Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better materials need higher temperatures. You can just exchange the old coils with the new ones. Kanthal coils let you reach 2700 K. You can even reuse the old coils in other machines, how fancy is that!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":79,"preRequisites":[78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #2: Higher tier - Nichrome Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach the 3600k heat capacity of your EBF, so you can process high-tier materials like tungsten, you need nichrome heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":80,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCompress all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Martin's (DreamMasterXXL) favourite machine. Compress ALL the things! With explosives, of course. Boom today!\n\nNote: You might want to put this far from your living quarters, the pollution can get high really fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:cobblestone_compressed","Count":1,"Damage":3,"OreDict":""},{"id":"ExtraUtilities:cobblestone_compressed","Count":1,"Damage":11,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":81,"preRequisites":[940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1002,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAt the end of...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...the universe everything freezes eventually. But waiting for the heat death of the universe might take too long. Therefore we present you the vacuum freezer. It should be good enough to cool your hot stuff. You will need a minimum of 16 frost proof machine casings, the rest depends on your setup.\n\nYou will need to make EV circuits in a cleanroom to build this machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1002,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":21,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:neapolitanicecreamItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":82,"preRequisites":[684,698],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:tile.Charcoal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§7§6§lAn unexpected Bonus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Because we're nice developers, we decided to add a little bonus if you happen to compress charcoal. Not only does it allow you to process more than 16 steel at a time (not in the bricked blast furnace), it also yields 10 times the burn time of a piece of charcoal. So one charcoal for free. This bonus only occurs on the first compression step. (But for fanciness, you should definitely get a quintuple one!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:tile.QuintupleCompressedCharcoal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":10,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":10,"Damage":2,"OreDict":""}]}]},{"questID":83,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHigh speed charcoal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, those coke ovens are nice, but they aren't even remotely fast enough to keep up with a large steam boiler. Luckily, there is an upgrade available! The creosote oil will not be produced, but the process will speed up dramatically. Who needs that nasty yellowish flammable stuff anyway..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:netherbrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HotNetherrackBrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CokeOvenBrick","Count":68,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.InfernalBrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.AdvancedCokeOvenBrick","Count":136,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":34,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockgem3","Count":10,"Damage":4,"OreDict":""},{"id":"minecraft:coal_block","Count":10,"Damage":0,"OreDict":""},{"id":"Railcraft:cube","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":84,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWhere I can put all the liquids?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your brand new alloy smelter you are able to combine two materials. What happens if you mix some obsidian dust and thickened glass? Obsidian glass, great. Your first tank that you can make would be a Buildcraft tank. This tank can carry up 16 buckets of a single fluid. It's possible to upgrade those tanks so they can hold up to 64 buckets.\nYou can also stack the tanks to increase capacity."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28032,"OreDict":"ringIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":"screwIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:GlassBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2804,"OreDict":"dustObsidian"},{"id":"ExtraUtilities:decorativeBlock2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"ExtraUtilities:decorativeBlock2","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":85,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1003,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Smelt all the things stack wise...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...with this great invention! Uses power to smelt up to 2 stacks of items at once! Can't go any faster! \n\nHint: Parallel smelting depends on coils, consult your local doctor before use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1003,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":12,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":86,"preRequisites":[79],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #3: Upgrade tier 4 - Tungstensteel Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like enderium, enriched naquadah or niobium-titanium you need more than 3600K. Time to upgrade your EBF... again."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":87,"preRequisites":[45,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":64,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSteel multiblock tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to have tanks that can hold double the amount of the iron ones? Go ahead and make a steel tank. All sizes allowed from 3x4x3 to 9x8x9 blocks (X and Z must be the same, and odd). Just like the iron tanks, the Buildcraft paintbrush and GT spray can colorize tanks for identification. Get started on that tank farm full of lube!\n\nHint: Fluid will auto-output (without any pumps) if you place a valve on the bottom side of the tank - valves cannot be on an edge!\n\nOnly use buckets or large fluid cells because 1000L GT cells get destroyed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":30,"Damage":13,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":15,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:machine.beta","Count":1,"Damage":14,"OreDict":""},{"id":"Railcraft:machine.beta","Count":1,"Damage":15,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":88,"preRequisites":[70],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§r§5§lWelcome to Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why, hello there! Seems you've made it into the electrical age. Don't be so quick to throw away your steam machines, you'll probably want to use them until you reach tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:bananasplitItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":89,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1121,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Steam Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to use steam in MV tier then it's time to build a steam turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1121,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":90,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":351,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDamn you, wire cutter!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enough is enough. No more wasting gazillions of ingots just for a couple of wires. Now that you have power, you should go for a wiremill!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":351,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":91,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32630,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first item you'll need a lot of. If you want to pull items out of chests or barrels you'll need one. \n\nHint: Goes pretty well with item pipes or GT machines, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32630,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":92,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fourth item you'll need a lot of, and is also a pain to craft. Arguably the most painful item ever. \n\n§4Hint: Works like a conveyor but can work with selected item slots, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":93,"preRequisites":[88,95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second item you'll need a lot. When you want to get fluid out of tanks you'll need one. \n\nHint: Attach to fluid pipes or GT machines. Adjust the direction and redstone behavior with a screwdriver. Place it on the side facing the tank or machine. When looking at a pipe or machine, you can use the grid to place it on a side already touching another thing. You can use the grid with a screwdriver to adjust a cover on that side as well.\n\nWhen a GT pipe or machine has any cover, including a pump cover, wrenching the machine back into an item keeps the cover on that machine. The cover stays with the machine in the same N S E W direction when it is placed down again. This way you can arrange pump and conveyor covers on a machine outside a tight spot and place it there. To remove covers, use the crowbar.\n\nIt can also be further upgraded into a fluid regulator that allows precise control of fluid transfer speed."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":94,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":301,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectric macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is highly recommended to get one of these, as the efficiency in terms of coal/steam used to macerate something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":301,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":95,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32640,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A piston, but more .. \"electrical\". The third item you are going to craft a lot of in the future."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32640,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":96,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":551,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSaving redstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of using 4 redstone for one magnetic iron rod? Well, good news for you! The polarizer doesn't need redstone, just a little bit of power. You don't need to attach this machine to a permanent power source, it runs fine on battery power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":551,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":97,"preRequisites":[92],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAvengers, assemble!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An absolute must have for fans of the movie. Oh, and to make all the things, of course.\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":98,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":291,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNo more filing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why waste a full ingot to make a rod by using a tool which loses durability and takes even MORE ingots? With this little device, all your rod-needs shall be fulfilled (for now)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":291,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":99,"preRequisites":[97,529],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bzzz... Whoom... (Defunct do not complete)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making some flawless crystals requires a precision laser engraver.\nAt MV level the precision laser engraver becomes more important."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":591,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":100,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":601,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPress all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the basic forming press you can make different food items, glass arrows and some Project Red components. \n\nAt MV/HV stage you can make rotors, various AE components and make copies of your molds and extruder shapes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":101,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMjolnir!!! (electric forge hammer)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not really required, but it is a lot faster than the steam one and it can be automated. If you feel like ore washing is too slow, use this hammer. There are no recipes that require anything more than steam level to hammer something."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":102,"preRequisites":[540],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":251,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCutting things apart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An absolutely mandatory machine to have. It will cut rods into bolts, plates into casings, logs into planks, and all of that will be done with the highest possible efficiency. Totally worth it! \n\n§4Hint: Just add water. Later on lubricant will help it run faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":251,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":103,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGet ready for Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to proceed forward, you need to get aluminium. A lot of it. But for now, eight is enough to unlock this quest. Probably the best source for aluminium is clay or hardened clay from canyons, however you need an MV machine for that. So you need to find an alternative until you have enough dusts for your initial setup. Check back in your Tier 0.5 quests for hints.\nOnce you have the dusts, you will need to do the EBF quest in Multiblock Goals to turn the dusts into ingots.\nAlso check the Armor and Jetpacks tab for new unlocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11019,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":104,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYour magic progression","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are able to produce aluminium, you may dig into magic. If you haven't unlocked basic thaumaturgy, try to find a silverwood and a greatwood sapling."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":105,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":221,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThe missing one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It was once said... But ffs, add a plate bender to the LV tier book ...and then it popped into existence."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":221,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":106,"preRequisites":[91,92,579,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockCartAssembler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, probably not the first, but definitely something big! You will need a cart assembler first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockCartAssembler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":107,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Power Coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar, or lava. But for now you have to use a simple coal engine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":108,"preRequisites":[106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockCargoManager","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated (un-)loading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can fill and empty your cart manually, but it's a lot more convenient to automate item transfer, isn't it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockCargoManager","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":109,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Farming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unfortunately, the basic farmer can't farm anything besides wheat, carrots and potatoes. It's not expensive at all, and probably the cheapest solution to give your automated food production a nice boost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":110,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A basic cart can't hold any items, so you need to attach special chests to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":111,"preRequisites":[106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A simple cart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to create or customize your cart you need a hull to attach your desired upgrades to. The wooden one can be used for really simple applications, but to farm wheat or wood, you need at least an iron one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":38,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":112,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Wood cutter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic wood cutter will break after a while, but you never have to replace it. It can easily be repaired with diamonds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":113,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:pipes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport pipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These pipes are rather simple and won't do anything on their own. But in combination with transfer nodes, you'll soon find out how great they are. Also, given the correct upgrades, they even surpass most other transfer systems."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:pipes","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:pipes","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":114,"preRequisites":[113],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport: Items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to transfer items, you need so called \"nodes\". There are some for pushing items into a pipe system, and later you'll have access to nodes that are able to pull items from attached inventories."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":115,"preRequisites":[113],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport: Fluids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like item nodes, liquid nodes transfer... liquids. But probably the best thing: They can all utilize the same transfer pipe!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":116,"preRequisites":[70,88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":201,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAlloy smelter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your steam alloy smelter to an LV one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":201,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:food","Count":2,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":117,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGotta catch 'em all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, you can use wheat/potatoes/carrots to make animals follow you back to your base, but that can be tedious. A golden lasso is a proper solution for animal transportation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":118,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:chandelier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic monster protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spawning monsters in or near your base can be annoying. Especially if you happen to get infernal creepers. Luckily, there is a good way to prevent them from spawning at all."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:chandelier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":119,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA quite different storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular chests can fill up rather quickly if you happen to collect mob drops like swords and/or armor. By using a cabinet, you can store up to 270 items of the same type. Also, it doesn't need a dolly - you can break it normally and it will retain contents. \nPerfect for storing ic2 crops, Forestry saplings, or bees!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":120,"preRequisites":[121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lProtect your base; Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One needs proper protection for ones home. So why not get some turrets for safety? At the moment, 2 Turrets are available: \"Potato\" and \"disposable item\". I assume you can guess what they do and how they work..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:sensorTierOneItem","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierOne","Count":3,"Damage":0,"OreDict":""},{"id":"openmodularturrets:chamberTierOne","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":121,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPassive defence","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A more \"passive\" approach to base defence are walls and fences. But seriously, where is the fun in that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:hardWallTierOne","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:fenceTierOne","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":122,"preRequisites":[120],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierWood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lTurret base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Turrets must be placed on top of a turret base. Only the player who initially placed the base can access and configure the turret. So don't worry about people taking your ammunition."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierWood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":123,"preRequisites":[122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:disposeItemTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lWho needs that dirt anyway","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably have a ton of items floating around in your base. So why not use them to kill your enemies?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:disposeItemTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Forestry:canWater","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":124,"preRequisites":[122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:potatoCannonTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDon't play with your food!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use it to kill zombies instead. Does only a little damage, but hey, who cares?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:potatoCannonTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":125,"preRequisites":[124,123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:expanderInvTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lUpgrading intensifies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your turrets probably need more space to hold more ammunition, so why not get an upgrade for that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:expanderInvTierOne","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BuildCraft|Core:engineBlock","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":126,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lElectrolysing all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collected a lot of dusts since you started with macerating, washing and centrifuging ores? Until now you couldn't separate them. It's time to get all the pure and valuable materials out of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":127,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Project red beginning","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to Project Red!\n\nThis quest will teach you the basics of Projectred and show you how to set up a Ghetto AE system.\n\nThe Ghetto AE system will be really useful for sorting all of your first items\n\nFirst of all there are different types of pipes: \n\nItem Transport pipes are the most basic pipes, classified as Null-logic. They don't do anything besides connect other pipes together.\nItem Transport pipes only have the ability to take items that enter it and pass them along to another connected pipe. They will NOT connect to inventories at all. In a junction where there is more than 1 possible direction, item payloads will travel in a randomly selected direction.\n \nRouted pipes are the most advanced. These pipes 'communicate' with one-another to form pipe networks, in order to allow for incredibly complicated demand driven systems, with absolutely no redstone circuitry required.\n \nPressurized pipes are pipes that use a pressure based routing system where the payload travels to the closest inventory that can accept it. Finding the closest inventory is influenced by both distance and Pressure Resistance Pipes (which, to the path finder, are 1000 blocks long), but the actual path that items take is only influenced by distance.\n\nHowever, in order to control the logic of the routed pipes you will need special circuit chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":128,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockEnderIo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIO, IO, it's off to EnderIO we go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've probably used EnderIO before. It's quite useful for a lot of things. But a lot of stuff has changed here, so let's start from scratch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11365,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11369,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11378,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11369,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11378,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11365,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":129,"preRequisites":[1835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMachine chassis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All EnderIO machines still require the basic chassis, and it's almost the same recipe as before; Except that you need plates instead of ingots. But that shouldn't be a problem at all..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMachinePart","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""},{"id":"EnderIO:itemMachinePart","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":130,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPortable tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Until now, you had to use buildcraft tanks to carry liquids around. Which can be a pain to do. These little tanks from EnderIO are able to push and pull liquids by themselves, as they have a built-in pump which is powered by some magic energy source. How convenient.\n\n§4Just be careful, because it will eat water cells instead of returning them.\n\nPressurized tanks are twice as large."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":131,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockStirlingGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple RF power: Solid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By simply burning coal as fuel, this machine produces RF power. Enough for a basic machine setup. This machine will also accept compressed and multiple-compressed blocks. Want to burn for 250+ days? Also, with double or octadic capacitors the output will increase and efficiency will improve. GT wiring can convert EU to RF, but EnderIO machines can be left safely out in the rain. \n\nMight be useful for Genetics machines since they consume excessive power when attached to GT wiring - Forestry and EnderIO machines work fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockStirlingGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":132,"preRequisites":[130],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCombustionGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple RF power: Liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This generator requires both water as coolant, and a burnable liquid as fuel. The amount of power it produces depends on the type of liquid used."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockCombustionGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":133,"preRequisites":[129,1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThe power of enderman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elevators are nice, but they are limited to vertical teleportation, and their range is also somewhat limited. Travel anchors do not have that limitation. You can teleport from one anchor to any other within range. You can name them and even set them as private. They have a 2s cooldown."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockTravelAnchor","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":134,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemPowerConduit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lConduits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Probably the most awesome way to transport just anything in multiple different ways. Get some conduits of each type. Higher tiers of each exist."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemItemConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemLiquidConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemRedstoneConduit","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemItemConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemLiquidConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemRedstoneConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":135,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemYetaWrench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYet another wrench","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Yeta Wrench is more than just a regular wrench. While holding it, you are able to switch between conduit types, eventually allowing you to remove one specific conduit type from a bundle of many. Ctrl-Mousewheel will switch modes, also Shift-Leftclick allows you to open the configuration interface even if you don't have access to that side of the conduit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemYetaWrench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":136,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemBasicFilterUpgrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lImproving conduits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Conduits on their own are pretty awesome, but you can do better. By using filters and speed upgrades, you gain even more control over what they do and how fast they work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemExtractSpeedUpgrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicFilterUpgrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:itemItemConduit","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":137,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockPainter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMaking things pretty","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While conduits on their own are already awesome, you can also hide them if you want. There are 2 types of facades, basic and hardened. While basic ones are simple and easy, the reinforced ones are able to withstand explosions and mining with tools. You have to use your Yeta Wrench to remove it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":128,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemConduitFacade","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:itemConduitFacade","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:blockPainter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemConduitFacade","Count":64,"Damage":1,"OreDict":""},{"id":"EnderIO:itemConduitFacade","Count":64,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":138,"preRequisites":[128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemAlloy","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lCome to the dark side...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...we have cookies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemAlloy","Count":32,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":139,"preRequisites":[138,692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Luke, I'm your father","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With that dark steel you got, you may now craft yourself a new set of armor. While pretty basic at first, it can be upgraded later to unlock powerful features."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11364,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":140,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDark steel tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are also tools made of dark steel. Each of them can receive upgrades. Hold shift to get the tooltip which will explain what you need in order to upgrade them.\n\nThese tools can also be enchanted like vanilla tools.\n\nThe Ender will increase wither skull and ender pearl drops. It can be upgraded to teleport the player.\n\nDark shears can be empowered, and then will shear a large area, including leaves. Handy for clearing away that giant redwood! Maybe you will find other uses for it.\n\nThe axe, once empowered, can be recharged wirelessly while in farming station.\n\nThe pick? Well, it can mine cobalt I guess if you haven't gotten a tool capable of that yet. You could keep it around to use for base decorations if your normal pick is too fast, I supose."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_axe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemAlloy","Count":4,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":141,"preRequisites":[989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMaterial","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lVibrant Crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vibrant capacitor banks also need this magical crystal. Armor and tools can be upgraded too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":8,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:exp_bottle_consistent","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":142,"preRequisites":[132],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockVat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBrewing liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine is not only capable of brewing more powerful burnable liquids, it can also be used to brew nutrient distillation, which might have further usage soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockVat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":143,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockAlloySmelter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSmelting all-joy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This combination smelter allows you to produce fused quartz and quite clear glass of all variants."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockAlloySmelter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":144,"preRequisites":[146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCrafter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAutomated crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You know, yet another automated crafting solution...\nThe left grid sets the recipe. The center box on the left will show the output. The right item grid is where you place resources. The output products will show up on the right center box.\nThis machine supports automation.\nYou can upgrade the machine with a Double-Layer or Octadic capacitor to increase power usage and speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockCrafter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":145,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSagMill","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOre processing kind of...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The endless ware between macerators and SAG mills rages on eternal, so why does it matter which one you choose?\n\nHV Macerators are still required for the final byproducts on many ore chains, but a SAG mill still shines through with\nupgraded grinding heads! SAG mills are perfect machine for getting the most from your ores without using bees and crops.\nYou can get bonus outputs with tungsten grinding heads, but that doesn't mean you can dupe materials (like ingots) with it.\n\nPlus for many of them you'll get the final output directly without any need for further processing. Handy for processing Redstone to get Chrome!\n\nIt's great for lead, copper, tin, silver, nickel, redstone, ruby, lapis, certus quartz, and malachite ores. Other ores will give you better outputs as well if you use a good enough head.\n\nEven coal, charcoal,bones, wheat, ender pearls, and charcoal non-ores will give bonus outputs.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSagMill","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":146,"preRequisites":[166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSliceAndSplice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTorture device","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When the subjects don't want to cooperate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSliceAndSplice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":147,"preRequisites":[856],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:RocketFuelMixA","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRocket fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rocket fuel are used in the future for galacticraft rockets. It does generate a lot of Power in the rocket Engine. Use your centrifuge to make some. Will generate 30720000 eu per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30654,"OreDict":""},{"id":"miscutils:NitrogenTetroxide","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:RocketFuelMixA","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":148,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketNutrient_distillation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTasty...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yeah, that is... Well.. You are sure it will have an usage for something... some day... eventually... maybe..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketNutrient_distillation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":149,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketFire_water","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFirewater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not exactly what you think it is. Better to not consume that liquid. When used in the Combustion Generator, it will produce 80 RF/t."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketFire_water","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":150,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketHootch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHootch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The lowest tier of renewable, burnable fluid. Generates 60 RF/t, but can be automated for \"green\" infinite power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketHootch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":151,"preRequisites":[148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockKillerJoe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAutomated mob-farming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course... zombies love that... disgusting liquid. While using a small amount per hit, he will attack everything that is within his range. That also includes players, so be careful. Rumors are there might be a weapon that will never break when used in this \"machine\"..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockKillerJoe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":152,"preRequisites":[151],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:ethericsword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAnd it will never break","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using an etheric sword, your killer joe will run.. forever. Proper enchantments are a requirement for it to be efficient, but that shouldn't be a problem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:ethericsword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":153,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Translocator:translocator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple item transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Translocators can only transfer items over a distance of 1 block. But they're quite cheap, and a good solution to build compact machine setups. They include a free simple item filter which can be enabled on the input or output side. And they support multiple inputs and outputs! Glowstone will make it transfer faster - try investigating other upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Translocator:translocator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Translocator:diamondNugget","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":154,"preRequisites":[153],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Translocator:translocator","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple fluid transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like the item translocators, the fluid ones transfer... fluids. Same restrictions apply, 1 block distance. These can also be upgraded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Translocator:translocator","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Translocator:diamondNugget","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":155,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierTwo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHarder, stronger, faster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No, actually not faster. But more durable than tier 1."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierTwo","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierTwo","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":156,"preRequisites":[155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierTwo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lProtect your base: Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slightly better protection. Now with a real gun. No more wasting food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierTwo","Count":1,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierTwo","Count":1,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierTwoItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":157,"preRequisites":[156],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierOneBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTier 2 turret base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nothing to see here. Proceed..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierOneBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":158,"preRequisites":[157],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:machineGunTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSometimes, a bullet will do","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They hit hard. You have been warned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:machineGunTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"openmodularturrets:bulletCraftable","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":159,"preRequisites":[157],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:incendiaryTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBurn them. Burn them all!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hmmm, crispy bacon. What would happen if you enable neutral mobs as targeting...?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:incendiaryTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"openmodularturrets:blazingClayCraftable","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":160,"preRequisites":[753,750,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTier 4§7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first hull as usual..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":161,"preRequisites":[241,240,239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paying the highest price","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When regular magic just isn't enough, you need something... stronger. Which is paid with blood. Your blood, and maybe others.\n\nIn tier 1 you only need to place the blood altar. Plan for the configuration to grow in size"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":162,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimensional goal: Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HV is the age where you should focus on reaching the Moon, as soon as possible. You will need titanium in large quantities. \n\n§4Hint: more info will be found in the Space Race quest tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":22,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":163,"preRequisites":[169],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockInventoryPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lI see everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The inventory panel is an alternative to your (hopefully?) existing project red storage system. Just like project red, you have to connect every chest/barrel with an item conduit. In addition to that, you also have to install a \"remote awareness\" upgrade into every conduit side you want the panel to see."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockInventoryPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemFunctionUpgrade","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:itemFunctionUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"EnderIO:itemItemConduit","Count":16,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":4,"Damage":4,"OreDict":""},{"id":"EnderIO:itemFunctionUpgrade","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":164,"preRequisites":[177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:weakBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Portable battery...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not exactly a \"battery\", more a portable access point for your life points, aka blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":165,"preRequisites":[146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSoulBinder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSoul eater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wouldn't it be great to actually make use of the intelligence or abilities a certain creature has? For example: enderman teleportation or brain capacity of a zombie for simple logic? (He doesn't use it anyway...) With this machine, you are able to bind a captured soul to an item, which can then be used in machines to improve their functionality."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSoulBinder","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":166,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11379,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lA new alloy Soularium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are some... \"Darker\" uses for machines. Stuff that might be considered \"magic\". Anyway, for that you need a new alloy: Soularium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11379,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":167,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockExperienceObelisk","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lExperience storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dying is painful, isn't it? As your precious experience is lost. But fear not, there is a solution! By using an experience obelisk, you are now able to store all your collected experience in a safe location."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockExperienceObelisk","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":168,"preRequisites":[165],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lA soul vessel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new machine, you need something to actually capture souls from monsters. The soul vials are reusable vessels. Just right-click any living entity to steal its soul."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemSoulVessel","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.6000000238418579,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.7999999523162842,"HungerOverhaulCheck":5},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27127316897707,"UUIDLeast":182634832621765120,"Amount":0.012908903102869372,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":1.8,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":26,"id":"Thaumcraft.TaintedCreeper","Fuse":30,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-1910302092572580900,"Health":26,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[10,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27127316341783,"CustomName":"\"\"","Pos":[222,4,1471],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"ExplosionRadius":3,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.5,"ezModsApp":1,"smi":1,"WITCInitialHeight":0.800000011920929,"HungerOverhaulCheck":4},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":6,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.4,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27178571439803,"UUIDLeast":-4879626912252909000,"Amount":-0.03553818567513433,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":2.7,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":6,"id":"Thaumcraft.TaintedChicken","Motion":[0,0,0],"Leashed":0,"UUIDLeast":2120839428921693200,"Health":6,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[167,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27178571304768,"CustomName":"\"\"","Pos":[223,4,1473],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.8999999761581421,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.2999999523162842,"HungerOverhaulCheck":8},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":36,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.27,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27170415539521,"UUIDLeast":55055077136148616,"Amount":0.05541744393087603,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":5.4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":36,"id":"Thaumcraft.TaintedCow","Motion":[0,0,0],"Leashed":0,"UUIDLeast":7340828040503510000,"Health":36,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[-124,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27170415457974,"CustomName":"\"\"","Pos":[220,4,1475],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.6000000238418579,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.7999999523162842},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.3,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27159316027577,"UUIDLeast":3351821129110176000,"Amount":-0.02643265509317006,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":3.6,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":26,"id":"Thaumcraft.TaintedVillager","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5486064703714104000,"Health":26,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[153,-23],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27159315945153,"CustomName":"\"\"","Pos":[221,4,1475],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":169,"preRequisites":[165,141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockPoweredSpawner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThe creation of life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By utilizing large amounts of energy, you're able to re-activate those broken spawners you may have found in the past. If you haven't, you should get one of them now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBrokenSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockPoweredSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":170,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSpecific enchantments","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanting books is, just as it is for items, random. And that is annoying if you need a specific enchantment on your tool or armor. Now there is a way to actually select enchantments, for a price, obviously."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":171,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierThree","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAlmost like steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next-gen protection against nasty zombies, creepers and other \"stuff\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierThree","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierThree","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":172,"preRequisites":[171],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierThree","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lProtect your base: Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we're talking: Grenades! The next in big badda boom hardware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierThree","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierThree","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierThreeItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":173,"preRequisites":[172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierTwoBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTier 3 base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More storage, more power, and a lot more slots for possible upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierTwoBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":174,"preRequisites":[173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:relativisticTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThis is relatively useful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For... some things... maybe... At least it is fun to watch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:relativisticTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":175,"preRequisites":[173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:grenadeTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFire in the hole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah, there is nothing like an explosion and the certainty that your enemies have been blasted into tiny pieces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:grenadeTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"openmodularturrets:grenadeCraftable","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":176,"preRequisites":[160,860,1014,1612,1231,1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main goal here is to get a tier 2 rocket, and reach Mars. You also might want to rethink your power setup, as more and more machines will be upgraded. This quest set will teach you about a couple of options you have regarding power production.\n\nMultiblock goals includes quests for the large gas turbine, large combustion engine, and multiblock ore drill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":177,"preRequisites":[161],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:sacrificialKnife","Count":1,"tag":{"sacrifice":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"*Poke*","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get some blood. You will have to start with your own..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sacrificialKnife","Count":1,"tag":{"sacrifice":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":178,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It's storage time!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've reached the High Voltage age, you might consider starting to work on your applied energistics system. It might be small, and it might be tricky to power it at first, but it's really worth the effort. You should start by getting all 4 different inscriber patterns."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":13,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":14,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":19,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":179,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find them all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a lot of asteroids on the surface, but there are more underground. In order to find those, you need a compass. The compass will only tell you the chunk has an asteroid in it, with your ancient ore finder wand, you can get a better idea where in the chunk the meteor is hiding.\n\nFor more details on AE2, check out https://tinyurl.com/GTNH-AE2"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":180,"preRequisites":[1316,1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.16k","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Middle tier storage cell, which can contain 16,384 bytes of storage. 16,384 bytes of storage can hold 2,032 stacks of a single item, or 1,040 stacks, while holding 63 different items. The 16k storage cell uses 128 bytes of data to store a single type. When placed inside a drive or chest will consume 1.5 ae/t. Must be in an ME Drive or ME chest to be usable. You can remove the 16k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.16k","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":181,"preRequisites":[1290],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluix crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not \"flux\"! Even if the color is the same. You need to add redstone and netherquartz to a charged certus crystal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":64,"Damage":0,"OreDict":"dustRedstone"},{"id":"minecraft:quartz","Count":64,"Damage":0,"OreDict":"crystalNetherQuartz"},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":128,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":182,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockMolecularAssembler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Applied crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting can be a pain. So why not automate it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockMolecularAssembler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""},{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":52,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":183,"preRequisites":[178],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting your first circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making the circuits is quite different from what you're used to, so it's advised to check NEI for the new recipes. Get 8 of each circuit for now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":23,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":24,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":184,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To have access to your applied energistics network from your entire base, you'll need cables. A lot of them. For now, the basic ones will do, but eventually, you'll end up using dense cables and p2p channels. Glass and Covered cables are functionally identical, just different in looks. Each can carry 8 channels. Quartz fibers don't carry channels but can carry energy. This is useful for providing power from your main network to independant subnetworks.\n\nYou can also color your cables - cables with different colors will not connect, so those can be used to expand network capacity by running parallel cables. Only fluix colored cables connect to all other colors. Later it will probably be more efficient to use P2P channels to jam a bunch of channels into 1.\n\nAnchors are like covers, keeping things from connecting when you don't want them to."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":64,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":24,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":185,"preRequisites":[1290],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":380,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Terminals everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME Terminal is a HID which gives you access to an ME network's networked storage.\n\nIt has the ability to sort and search, as well as filter by using a view cell. It requires a channel to function.\n\nCan be upgraded into an ME crafting terminal.\n\nThe ME crafting terminal is the upgraded version of the ME terminal which has an integrated crafting grid with access to an ME network's networked storage.\n\nLike the ME terminal it also requires a channel to function.\n\nGives remote access to all interface pattern slots on your network separated by which type of machine they are on. It will show the type of machine in the terminal, however you can name the ME interface in the inscriber or an anvil to alter the name displayed in the ME interface terminal.\n\nCombined with the fact that you can toggle if the interface shows up at all this gets you control over your interface terminal's display."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":380,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":360,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":480,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":360,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":480,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":186,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDimensional goal: Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mars has many new ores you need to find like tungsten, uranium and plutonium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.mars","Count":8,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":187,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§k§l§r§a§lDimensional goal: Phobos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A smaller goal, as the main goal is Mars. But you'll find different ores on this moon also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":1,"OreDict":""},{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":188,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDimensional goal: Deimos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A smaller goal, as the main goal is Mars. But you'll find different ores on this moon also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:deimosblocks","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:deimosblocks","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":189,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lHEV Mark III protective system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some things are dirty, and some things are even dangerous. You'll play with nasty stuff here, so better prepare yourself for the worst.\n\nSome items will give you a Radiation debuff without protection. How fast you get it depends on the item. Some items will give you enormous amounts of time with it, which will kill you because there is no way to get rid of it. \n\nOther items will give you a general sickness with many debuffs, but not Radiation. That can be removed the normal ways, Milk, Terrawart, Aqua bees, etc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemArmorRubBoots","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":190,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lAppropriate power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Whether you used magic, steam, oil or biogas for power until now, you will run into problems as you advance to higher tiers. So you need to upgrade your power grid, at least for your blast furnaces. So let's start with something more powerful: A nuclear reactor!\n\n§4Hint:\nThe multiplier is set to 10x in this pack. That means your nuclear reactor is 10 times more efficient.\n\nFor some ideas on nuke setups, check out https://tinyurl.com/GTNH-Nukes"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},{"id":"IC2:itemFuelRod","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":191,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumSimple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 2 fuel: Uranium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just \"regular\" uranium fuel, nothing special about it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumSimple","Count":2,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":192,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXSimple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 3 fuel: MOX","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highly radioactive, the most powerful fuel rod you can get. Burns twice as fast as uranium, but produces massive amounts of power. Rumors are, that peaks up to 11k EU/t are possible..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXSimple","Count":2,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":193,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 1 fuel: Thorium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The weakest of all rods, but very easy to produce, very easy to keep cool and runs twice as long as uranium. A perfect \"fission and forget\" power source.\n\nHint:\nAfter they are used up you can recycle them to get Lutetium which is used for make americium in the fusion reactor.\nAmericium is needed for top tier materials later, so start stockpiling now. Plus, you get power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Thoriumcell","Count":4,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":194,"preRequisites":[195],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMonitoring your reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's important to monitor your reactor (Or just fancy to have a big screen somewhere...). So now that you've gained knowledge about the available fuel rods, you can start to build yourself a power plant. Here is something to help you out.\n\nUse the sensor kit on the block you want to monitor, then put the sensor card in the display panel. Next select which lines of information you want to display."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},{"id":"IC2NuclearControl:blockNuclearControlMain","Count":5,"Damage":5,"OreDict":""},{"id":"IC2NuclearControl:ItemRemoteSensorKit","Count":1,"Damage":0,"OreDict":""},{"id":"IC2NuclearControl:ItemUpgrade","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":195,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockReactorChamber","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lIncreasing the capacity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To unleash the full potential of your reactor, you have to attach six reactor chambers to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockReactorChamber","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":196,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMove the heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reactors heat up, well the rods do, so you need to \"move the heat away\" to somewhere else. You should get one of each, and try to figure out what each individual heat exchanger does, in order to figure out a good setup."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:reactorHeatSwitch","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchCore","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchSpread","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"tag":{},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:reactorHeatSwitch","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchCore","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchSpread","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchDiamond","Count":2,"tag":{},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":197,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorVentDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lVenting heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can't just move the heat around, eventually you need to get rid of it. Just like the exchangers, there are different types of vents, each of them has a certain usage you'll need to find out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:reactorVent","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentCore","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentGold","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentDiamond","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentSpread","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:reactorVent","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentCore","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentGold","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentSpread","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":198,"preRequisites":[192],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXDual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":199,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuit exhaling dusts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The QED is used for stuff like the ender quarry (yay!) and advanced mob-protection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:endConstructor","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":200,"preRequisites":[199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:magnumTorch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lAdvanced mob-protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like the chandelier, the magnum torch prevents monsters from spawning. However, its range is quite big, so a single one might be enough for your entire base.\n\n§4Don't forget, monsters can still follow you home!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:magnumTorch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":201,"preRequisites":[199,1412,1680,1213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAutomated mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The QED enables you to assemble the most convenient device for mining: The ender quarry.\n\nAs 0lafe says, \"This small black box is life-changing\" and \"Sympathy for the amount of dense obsidian plates you need.\"\n\nGuess you better get compressing!\n\n§4NOTE: It's best to place your quarry and markers on orevein boundaries. This way you start getting ores right away, especially from planets and the deep dark dimension."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":202,"preRequisites":[201],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If an ender quarry won't satisfy your needs for MOOORE. A speed upgrade is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":203,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":460,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bundled AE channels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"P2P tunnels. You will need a lot of them! These are fancy fluid/item pipes that will transport fluids or items from one \"point\" to \"another\". Items transportered will not show up on crafting terminals etc, they just use the network as transport.\n\nThey can also pack up to 32 channels into 1 bundle and transport those to the destination p2p bus. Each P2P tunnel requires 1 free channel. The network carrying the P2P must be separate from the network with the channels. These P2P connections cannot be nested, but one transport cable can carry multiple P2P connections.\n\nA nice online guide can be found at https://tinyurl.com/GTNH-AE2 under P2P tunnels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":2,"Damage":460,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":204,"preRequisites":[186,205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Load and unload the rocket","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What use has an automated rocket, if you can't load and unload it with automation?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":205,"preRequisites":[186,1449],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cargo rocket: For the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No need to fly to distant planets on your own, just to grab ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":3,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":206,"preRequisites":[199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockMolecularTransformer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTurning A into B with C","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Molecular transforming at its finest! The most important recipe here is sunnarium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockMolecularTransformer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":207,"preRequisites":[208],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierThreeBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTurret base tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Even more range, power and upgrade slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierThreeBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":208,"preRequisites":[211],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierFour","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lProtect your base: Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The small parts for the powerful turrets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierFour","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierFour","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierFourItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":209,"preRequisites":[207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:teleporterTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMake love, not war","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For those who don't want to kill things. Just teleport them away, however this takes a large amount of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:teleporterTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":210,"preRequisites":[207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:rocketTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWhy grenades...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when you can use rockets? Yes, rockets! They search and destroy, and go off with a huge boom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:rocketTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"openmodularturrets:rocketCraftable","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":211,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierFour","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 4 fence and walls","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another upgrade for your walls. One more to go!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierFour","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierFour","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":212,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MoonStoneDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPulverize the Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Literally. You can grind the rock of most planets, to get a chance for higher tier metal dusts. Does consume quite a bit of power, but can really help you out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MoonStoneDust","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2081,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":213,"preRequisites":[176,861,1251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§b§l§1§2§3§4§5§4§6§7§8§9§a§b§c§d§e§c§b§lTier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"IV-Level. You will need tungstensteel for machines. Suggested planets and moons to visit: Mars, Phobos, Deimos. \n\nMake sure to get a set of Tungstensteel coils for your EBF.\n\nYou should've learned \"how to gregtech\" by now, if not go clean up the machine craters in your base...\n\nGT++ multiblock processing machines unlock at this tier. Make sure you have an Alloy Blast Smelter from EV tier ready to go."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":214,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:end_portal_frame","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lThis is the end.... ?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Basically the \"end\" of the conventional tiered game play. However! This is just the start of your journey, as you'll have access to even more powerful and awesome stuff. You have proven yourself worthy, and mastered the challenges up to this Tier. Congratulations!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":2,"OreDict":""},{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":215,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOn your way to Asteriods and other Tier 3 DIMs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier is defined as \"Asteroids-Dimension\" and \"8192 EU/t machines\". The machines now reached their full potential, and some asteroids may contain precious ores to improve your power generation."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Reach asteroid belt","range":-1,"index":0,"dimension":30,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.asteroidsBlock","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":216,"preRequisites":[1665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1191,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l\"Clean\" energy..?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a reliable and powerful source of energy for your base. And why waste your time with a 2k generator? Go for a 8k one! \n\n§4Hint: It's probably a good idea to wear your hazmat suit before claiming your reward..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1191,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":23326,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":217,"preRequisites":[214,218],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"utilityworlds:uw_portal_void","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"§b§lFinal choice: Personal Dimension","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of mobs in your base? Want to build somewhere... different? Probably in a personal dimension? Then this is your chance. But choose wisely; You can only pick one option."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"utilityworlds:uw_portal_void","Count":1,"Damage":0,"OreDict":""},{"id":"utilityworlds:uw_portal_garden","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":218,"preRequisites":[214,217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"§b§lFinal choice: Loot","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Don't need a personal dimension, eh? Well, then you'll probably be happy with some extra loot. Choose wisely; You can only pick one."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":10,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":10,"Damage":8,"OreDict":""},{"id":"Thaumcraft:blockLootCrate","Count":10,"Damage":2,"OreDict":""},{"id":"DraconicEvolution:dezilsMarshmallow","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":219,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierFive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lAlmost unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Probably not required any more, but you made so many walls. So why not to get the best ones?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierFive","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierFive","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":220,"preRequisites":[219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierFive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lProtect your base: Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tough materials, for tough weapons. Railguns, and lasers, and... stuff. I assume you want a lot of those soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierFive","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierFive","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierFiveItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":221,"preRequisites":[220],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierFourBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lTurret base Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last one, I promise. Used for the most powerful turrets available. You wonder if they might help you take out some more... \"Dangerous\" enemies?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierFourBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":222,"preRequisites":[221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:laserTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPewPew!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Requires no ammo, but still does a ton of damage. All you need to do is feed it power, a lot of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:laserTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":223,"preRequisites":[221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:railGunTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lRailguns, what else","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Massive power, and a wonderful sound when they fire. I recommend to use upgrades to increase range and damage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:railGunTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"openmodularturrets:ferroSlug","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":224,"preRequisites":[14],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Strange things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You came across those weird trees, they seem to be more than just plants. You felt something... different. There is something going on, but you are not sure what exactly yet. But you're sure you'll find out very soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":225,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Searching for answers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Last night you had a dream. A dimension, so strange and different, exactly like the sapling you found. You decided to go there and look for answers.\n\nFirst you need a portal crystal to open it up. And no, a diamond is not enough."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Twilight arrival","range":-1,"index":1,"dimension":7,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":226,"preRequisites":[1096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemThaumometer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See the unseen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Everything is made of 6 primal aspects. Those aspects can be combined to form compound aspects, but in the end, there are only 6. Like the infused shards you found. You noticed that those shards start to vibrate when you bring them next to something that is made of the respective aspect. Maybe you can create a device to actually \"scan\" items, and reveal their compounds? This could be very useful later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemThaumometer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":227,"preRequisites":[1778],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockTable","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tables to work on","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Indeed, the idea with the bookshelf did work. Now you need a nice table to do some research on, and probably something to infuse items with vis while crafting. Maybe you should try to smite a table with your wand."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:blockTable","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":228,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:waterSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloody water","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By sacrificing some blood to the water spirits, they'll grant you some of their precious element."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:waterSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":229,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":541,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This whole place here is filled with magic. No matter where you look at, it's just everywhere. You wonder what happens to regular stone if it's exposed to large amounts of magic for such a long time. Maybe it's time to go mining?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":543,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":542,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":545,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":541,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":544,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":540,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":230,"preRequisites":[225,224],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are sure that this place will give you all the answers you are looking for! To continue, you need something to handle the magic energy called \"vis\". Guess it's time to craft your first wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:oakStick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TwilightForest:item.nagaScale","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"ordo":0,"perditio":0,"aer":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":98,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":231,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemThaumonomicon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tome of knowledge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All the things you've discovered so far, you need to write them down. But you are lazy, and you have a wand, so why not try a magical way to \"write down\" your research? You wonder if you could enchant a book with your wand, so that it will keep track of your progress... You should try that on a bookshelf!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemThaumonomicon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":232,"preRequisites":[226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Improving your wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wand does a great job in storing and releasing vis as you please. However, those iron caps are... Weak. If you don't pay enough attention to it, it might hurt the node. Maybe you should try to improve it with caps made out of a more valuable material. Like.. gold, perhaps?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":233,"preRequisites":[229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you found all six primal types of infused stone, you need to break those up in order to get the shards. The easiest way to do that, is to throw these stones in your Forge Hammer. Later when you have a Sifter, you can sift purified ores for more shards. An autoclave can turn shard dust into a shard. Maybe there is a magical way to do the same thing?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":16,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":234,"preRequisites":[232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A \"greater\" wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While doing all your research and mining of these infused stones, you had an idea how to actually use the wood of a Greatwood tree to make a new wand. Actually, it turned out to be pretty simple, but you lacked one important thing back then: vis!. The vis makes sure the wood doesn't lose it's magical conductivity while forming the rod."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":235,"preRequisites":[232,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unfortunately, your aluminium screws don't work with the greatwood rod. Somehow, the wood seems to repel the material. Luckily, you already have a blast furnace, so you can get a better material than aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":236,"preRequisites":[232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LichBone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A more powerful \"scale\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The naga scales are weak, they can only hold a very limited amount of vis. You need a better, more powerful component to store vis in your wand. You've heard rumors about an evil wizard in the Twilight Forest. Maybe he has... something... that can be used?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LichBone","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":237,"preRequisites":[798],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Stores 50 vis\" wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now combine your new wand, and be more powerful than before! You have a feeling, that this new wand will come in handy very soon(tm).\nMake sure you use the NEI 'U' command on the gold caps to find the correct GT:NH recipe for the wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"cap":"gold","rod":"greatwood","ordo":0,"perditio":0,"aer":0},"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":4,"Damage":95,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":238,"preRequisites":[239,237,240],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fuuuuuu...(sion)!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your arcane table does a great job with infusing primal vis into items while crafting. However, you feel that there must be more. What if you could infuse items with all kinds of magic aspects? The possibilities are endless..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockStoneDevice","Count":6,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":239,"preRequisites":[251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Yet another brick in the wall...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A magical one this time. You are on your way to infusion, and you need 8 of those in total."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":240,"preRequisites":[255,256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia cooking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get essentia, you need to dissolve items. Obviously, you only want to dissolve those items you don't really need, and only those with essentia you need to craft things.\n\nMake sure you keep your furnace as empty as possible. If it fills up with essentia, it can cause a large TPS drop."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockJar","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":241,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not for soup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At least not for edible soup, but for essentia slurry. Get yourself a Cauldron and give it a solid whack with your wand. Place the netherrack under the crucible and set it on fire with the flint and steel. Now you need to fill it with water (works with pipes too = auto refill)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":242,"preRequisites":[233,1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Balanced shards sdrahs decnalaB","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining all six primal aspects in a crucible, you are able to make balanced shards. They can be ground up into \"Salis Mundus\", an absolutely crucial thing to have, trust me!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":10,"Damage":6,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":10,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":243,"preRequisites":[242],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crystal clusters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You, as a Thaumaturge, like shiny things. And what could be more shiny than a cluster made of those shards? You totally should get one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":244,"preRequisites":[245,246,247,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"ignis"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"ignis"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":245,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockAiry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The choice...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By now, you should've collected a few (or a lot) of locations for aura nodes to get vis from. You might also have noticed, that you probably are low on a certain aspect, like ordo or ignis. Well, good news. In exchange for some crystal clusters, I will give you one of my old nodes. They are all pale, but they will help you out. You may only choose one, so think twice before you make your decision."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":6,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":246,"preRequisites":[245,244,247,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"terra"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Terra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"terra"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":247,"preRequisites":[245,244,246,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"perditio"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Perditio","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"perditio"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":248,"preRequisites":[245,244,246,247,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"ordo"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Ordo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"ordo"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":249,"preRequisites":[245,244,246,247,248,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"aqua"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Aqua","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"aqua"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":250,"preRequisites":[245,244,246,247,248,249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"aer"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"aer"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":251,"preRequisites":[243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not just for decoration","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, they look pretty, but they serve a much more important purpose: Channeling vast amounts of vis and essentia. This might be useful soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":92,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":252,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:cake","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"This is the end...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...of your apprenticeship. You have mastered all 6 primal aspects, you mastered the weak and strong infusion of essentia and vis, and you've already made your adept wand. But be warned, young one. The further you progress, the more darkness, and evil will tempt you to follow the forbidden ways of magic. I have seen things... weather changing, random teleportation, or even a Wither tearing its way into our universe right next to someone. Be careful, my friend..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":253,"preRequisites":[254,240],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockBoiler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Turning liquids into essentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What a simple idea. So many people wasted tons of buckets just to get aqua from water, or sano from milk. Why didn't they just dissolve the liquid itself? Stupid ones..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockBoiler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":254,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia filtering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This nifty little device will filter out essentia. Once it has received a single unit of any type, it will only accept this type until it is completely empty. How convenient. You can place more than one on top of an alchemical furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":255,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An alternative to torches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And lava! It's an excellent magical heat source."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":256,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Way better. To be fair, it's a waste to use coal itself, but it also works with charcoal and lignite dust. And it speeds up the dissolving of items in an alchemical furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":257,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Save the squids, we must","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A very convenient way to make PETA activists happy and get ink at the same time. \n\nHint: The essentia in those roses might be useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32414,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":258,"preRequisites":[259],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite... lava?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, it does need some ignis centi-vis, but hey, it's free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:everburnUrn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":259,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:everburnUrn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite water!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The struggle is over. You finally discovered a way to get infinite amounts of water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":260,"preRequisites":[252],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Adept thaumaturgy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have mastered the basics. Master warned me about forbidden magic, but it sounds so promising. I think a bit of forbidden stuff can't hurt..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":261,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.fieryTears","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An awesome magic conductor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These tears, WOW! I've never felt something so strong. Could it be? Could I use those to actually finalize my Silverwood wand?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.fieryTears","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":262,"preRequisites":[263,266],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":10000,"terra":10000,"ignis":10000,"cap":"thaumium","rod":"silverwood","ordo":10000,"perditio":10000,"aer":10000},"Damage":54,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An even better conductor?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More... I want MOOORE! There must be something even stronger than the hydra. Something older, more ancient."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":263,"preRequisites":[266],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.fieryBlood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It doesn't work","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I tried to combine the lich bones I had with this new wand rod. The result: A pile of ashes. It crumbled to dust within seconds. I need a better conductor. The hydra in the Twilight Forest has the ability to regrow an entire head! Her blood must contain a large amount of magic. I guess I need a bit of that for my next wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:misc","Count":1,"tag":{"display":{"Lore":["It crumbled to dust within seconds..."],"Name":"Lich Bone"}},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":264,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Obsidian rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using obsidian and some earth clusters, I'm able to create a magical infused rod, that will slowly recharge its own terra vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":265,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Creating a better wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This greatwood wand is nice, but it can only store 50 vis. Not enough to move nodes. My tries to use silverwood failed, but I've come across other mundane materials that I could use to make a new wand core."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":266,"preRequisites":[264,860,271,269,270,268,267],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27028,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"More durable screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Those stainless steel screws don't work on these rods. Due to the huge amounts of vis those wands can carry, the screws somehow \"melt\" away. I need a more durable material. I guess I will try titanium next."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"tag":{"display":{"Lore":["It.. melted..?!"],"Name":"Stainless Steel screw"}},"Damage":9306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":267,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quartz rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using nether quartz and some order clusters, I'm able to create a magical infused rod, that will slowly recharge its own ordo vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":268,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reed rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using sugar cane and some air clusters, I'm able to create a magical infused rod, that will slowly recharge its own aer vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":269,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blazing rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using a blaze rod and some fire clusters, I'm able to create a magical infused rod, that will slowly recharge its own ignis vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":270,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Icy rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using hardened ice and some water clusters, I'm able to create a magical infused rod, that will slowly recharge its own aqua vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":271,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bone rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forbidden? Pah. I don't care about headaches. By using bone and entropy clusters, I'm able to create an infused rod, that will slowly recharge its own perditio vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":272,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Best wand caps ever","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course! Thaumium! What could conduct vis better than... a magical metal?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":273,"preRequisites":[274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SnowQueenBlood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"She let go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This blood seems pretty common, but she had advanced magic abilities. I'm sure I can use this as a medium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SnowQueenBlood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27083,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":274,"preRequisites":[261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.carminite","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reactor material","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This stuff is interesting... Maybe I can use it as a wand conductor?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.carminite","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27030,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":275,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Centi-vis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many advanced machines require vis in order to do what they're supposed to. But using a wand as some sort of battery to transfer vis from a node to your machine didn't work as expected. What if you could rip open a node?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":276,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bring it home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably have a nice collection of bookmarked nodes. But running around to recharge your wand(s) isn't really the way an adept thaumaturge should get his required vis. Moving nodes is not that hard, but without doubt, you need something to protect them from each other."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":277,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated wand-recharge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So you found a way to gather nodes now. What about automated wand recharge? Wouldn't that be extremely convenient?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":278,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Centi-vis stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You totally should get yourself some centi-vis things to transport and use the vis from stabilized nodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockMetalDevice","Count":8,"Damage":14,"OreDict":""},{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":279,"preRequisites":[280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockLootCrate","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The dark realm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We found the way... my precious. We found it! Only need 4 tasty eyes, and some magic to open the door. The secret door, they didn't see it. Hehehe! All the time. It was there... Aaaall the time!"}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Visit \"Outer Lands\"","range":-1,"index":0,"dimension":50,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":280,"preRequisites":[281],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"They see me, they watch me","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eyes. Yes. Eyes! I need eyes, my precious. Not spidery ones, no. Nasty hairy things. Don't taste good. Eldritch eyes! I will rip those from their bodies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":281,"preRequisites":[282],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Really (Really!) dark magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fools. FOOLS I say! They know nothing! This book will guide me, yes. Yes it will, my precious. It will lead us to even more POWER!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":282,"preRequisites":[289],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetCultistRobe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secrets","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I can feel it. Yess. Yeeeess. We will gain more power nigh. Nigh! Yes. My precious. The voices gave me a hint, there is a dimension filled with unbelievable sources of magic energy. I must go there. I must! The crimson people know the secret. I will rip them aparrrt.. They will tell me!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":4,"taskID":"bq_standard:hunt","target":"Thaumcraft.CultistKnight","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":283,"preRequisites":[279],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find the key","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No, nooo! They have hidden it! Must find the keeey. Must find it! We need the tablet to open the door my precious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":284,"preRequisites":[283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of creation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What... What am I doing here? Where am I?! What is this place?! Oh those headaches... (It seems that the pulsating pearl you just found cured your brain from... something. Something old, probably some kind of trap to keep away unworthy ones.)\n\n/iskamiunlocked will tell you if you have successfully unlocked Kami. If not, try researching the Thaumium Crowbar and the Cursed Spirits Blade."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:blockLootCrate","Count":5,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":285,"preRequisites":[252],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":17,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Concentrated darkness","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For some reason, you decided to infuse darkness into a seed. It appeared to be promising. For what? You don't know..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":286,"preRequisites":[287],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetVoidFortress","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Armor\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This new metal, it's so... appealing. You feel comfortable while holding it, so why not get yourself some armor? What could go wrong? It sure will protect you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemHelmetVoidFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemChestplateVoidFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsVoidFortress","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":4,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":287,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockEssentiaReservoir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What could possibly go wrong?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"256 essentia in one block! Now that is what I call storage. Does make weird sounds, but I guess it's nothing special..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockEssentiaReservoir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":288,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.something","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Let's try this","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mortals. Pah. What do they know about REAL power. The voices tell me I need to focus on alienis and tenebrae if I want to advance. So what about food?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.something","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":289,"preRequisites":[286],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusHellbat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An appropriate weapon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"My new armor needs an appropriate weapon to go along with. I should make something to fire creatures of the nether at enemies!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusHellbat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemSpawnerEgg","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":290,"preRequisites":[272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetFortress","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Improved armor: Ninja style","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get some decent armor. With this, those infernal monsters won't be as much of a pain as they are now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemHelmetFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemChestplateFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":4,"id":34},{"lvl":2,"id":154}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":291,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Little helpers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A state of the art thaumaturge doesn't work any more. He has little helpers. Golems can and will do all the things for you, just as you command them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"tag":{"gadomancy":{}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":292,"preRequisites":[291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Slightly better","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wood is somewhat better than straw. They are still to be considered weak, but an ideal little cutie for farms."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":293,"preRequisites":[292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sticks and stones...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...will break your bones! These guys are hard as rock (Insert audience laugh here) and will protect your claim as good as possible."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":294,"preRequisites":[293],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The best of all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highly durable, can carry a lot of items and is considered the \"top tier\" golem. But you are sure there is more...\n\nYou'll need to chisel a thaumium block to get the right kind you need for the golem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"tag":{"gadomancy":{}},"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":295,"preRequisites":[291,272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, you could just go with gazillions of jars, but it's way more convenient to store essentia in a chest or barrel. Isn't it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""},{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemPlacer","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":296,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ordo"}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The basic elements","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course you know where and how to get the basic essentia types. Do you..?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ordo"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"aqua"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"terra"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ignis"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"aer"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"perditio"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"radio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"superbia"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"alienis"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"nebrisum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"strontio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"tempus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"luxuria"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ira"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"spiritus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"mortuus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"venenum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"infernus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"tenebrae"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"corpus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"exanimis"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"nebrisum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"superbia"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"strontio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"luxuria"}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":297,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia transmission","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What if... you could send essentia from a different location to your infusion matrix? You could finally get rid of all those jars around your altar. Also, there might be an additional use for those mirrors.\n\nYou have an intuition that a more energetic metal would allow for very interesting uses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":298,"preRequisites":[297,299],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockEssentiaLocusAggregator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"(Almost) automated essentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining the essentia locus, the essentia mirror and an essentia aggregator, you are now able to transmit essentia from almost anywhere. Fancy essentia-storage facility incomming!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockEssentiaLocusAggregator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalEye","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockJar","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":299,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:crystalEye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia monitoring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Manually checking your jars can be tedious, especially if you want to infuse a bunch of stuff at once. Luckily, the essentia locus can help you with that, as it monitors all jars that have been targeted with a crystalline eye."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockEssentiaLocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalEye","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":300,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:TaintShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cleaning the goo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you do more and more infusions, you're getting tired of removing all the flux that's generated. The shovel of the purifier will help you cleaning up flux, and is a must-have."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:TaintShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":301,"preRequisites":[272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:fireFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"One does not simply...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...play with magic. Be warned, these fires are very dangerous! But who doesn't want a patch of snow in the nether?\n\n�4Fire spread is disabled in the configs of servers to prevent massive lag and world destruction."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:fireChaos","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireAir","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireFire","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireEarth","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireWater","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicTinkerer:fireOrder","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":302,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Useful plant life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While regular plants are mostly used to make food, you are wondering if you could get some... \"more useful\" plant life going..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:redlonSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"thaumicbases:lucriteSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"thaumicbases:lazulliaSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"thaumicbases:knoseSeed","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"thaumicbases:redlonSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:lucriteSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:lazulliaSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:knoseSeed","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":303,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:overchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pushing the limits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular enchantments have a limit, like III for Fortune. Utilizing magic, you should be able to bypass that limitation, at least a tiny bit; Eventually creating enchantments like Fortune IV. It comes with limitations, but your book shall tell you more about those."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:overchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":304,"preRequisites":[303],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:enchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanting like a pro","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a device where you can actually choose which enchantments you want to have. Powered by vis, it can create the most powerful combinations one could imagine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:enchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":305,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:cryingObsidian","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crying obsidian...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...it mourns the dead. This might come in handy for some cases. By placing 2 on top of each other, you're able to set your respawn point to that location, without the need for a bed. It's up to you to imagine the possibilities..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:cryingObsidian","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":306,"preRequisites":[302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Useful trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like plants, there are trees that will attract various friendly and \"not so friendly\" creatures. (No warranty when placed in desolated biome!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":307,"preRequisites":[284],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of gods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The pearl you've found has some interesting effects on you. Not only are the voices almost gone, somehow it has also expanded your perception. You can \"feel\" the magic around you. This is definitely worth some further investigation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":308,"preRequisites":[350],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":2000000000000},"Damage":32598,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The final goal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thanks to your help I have managed to create the ultimate energy source: An encased wormhole that drains energy from a synthesized pocket universe, to the point when it reaches heat death. I have no use for it, so you may have it. Thank you for making my dream come true!"}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":2000000000000},"Damage":32598,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":309,"preRequisites":[307],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Shards of opposite worlds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This morning, you just wanted to facepalm yourself to death. During your past journeys, you have already seen strangely colored shards. But unlike the primal shards you use every day, these seem to contain the raw essence of their dimension. Heaven and Hell... so to speak. Two opposite worlds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":310,"preRequisites":[311,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothHelmGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to the fullest extent, you'll have to unleash its hidden power. This is not an easy task; But it's worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothHelmGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":311,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable cowl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothHelm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":312,"preRequisites":[313,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothLegsGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothLegsGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":313,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothLegs","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable leggings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothLegs","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":314,"preRequisites":[315,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothChestGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothChestGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":315,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable robe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":316,"preRequisites":[309],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining ichor with enchanted fabric, you've created something that could be compared to mithril. Light as wool, but durable like steel. Also, it conducts magic energy like nothing else you've seen before. This seems to be an excellent material for a new type of armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":1,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":2,"OreDict":"ingotIchorium"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":317,"preRequisites":[318,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothBootsGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothBootsGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":318,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable boots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":319,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable axe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An axe made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":320,"preRequisites":[309],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused Thaumium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining ichor with some thaumium, the metal turned into something new; Something extremely durable but also soft. Its magic conductivity is incredible"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":5,"Damage":2,"OreDict":"ingotIchorium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":1,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":2,"OreDict":"ingotIchorium"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":321,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorSword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable Sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A sword made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorSword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":322,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A pickaxe made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":323,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable shovel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A shovel made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":324,"preRequisites":[321],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorSwordGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorSwordGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":325,"preRequisites":[323],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorShovelGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorShovelGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":326,"preRequisites":[319],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorAxeGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorAxeGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":327,"preRequisites":[322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPickGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPickGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":328,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPouch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hold all the foci","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hermione's first years bag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPouch","Count":1,"tag":{"Inventory":""},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":329,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Where do the items go?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's probably better not to ask..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:blockTalisman","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":330,"preRequisites":[331],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusRecall","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magical waystones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These are used to mark locations in order to teleport around"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusRecall","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":331,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:warpGate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why walk...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when you can teleport? This little device allows you to teleport around almost for free. Is it cheaty? Is it OP? Nope, it's a celestial gateway!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:warpGate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":332,"preRequisites":[241,1560],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fire burn and...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get started with your basic witchery needs, you need a witches oven. It requires anointing paste, which you will need an MV mixer to make.\n\nThe witches oven is used to get the most basic ingredients for your recipes - Fumes.\n\nThe oven is able to capture the by-products produced in the cooking process. Activating the oven to show the interface screen, you will see an additional slot to the right of the fuel slot. Clay jars must be placed in this slot. If there are clay jars present when something is cooked, there is a chance a by-product will be captured in one of the jars. These by-products are important ingredients in other recipes. If there are no clay jars in the oven when something is cooked, no by-products will be produced.\n\nUpgrading an Oven\n\nAn oven can be upgraded by placing either a Fume Funnel or a Filtered Fume Funnel to the left and right of it. Each Fume Funnel will increase the cooking speed by and additional 10 per cent (over a furnace) and increase the chance of a by-product being produced by and additional 25 per cent for a Fume Funnel or 30 per cent for a Filtered Fume Funnel.\nAn Oven can use at most two upgrades and they must have the same facing as the oven.\n\nA fully upgraded oven will therefore cook at 130 per cent speed (compared to a furnace) and have a chance of a by-product of 90 per cent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":153,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":20,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:sapling","Count":30,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":333,"preRequisites":[334,1575],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Offerings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For all your offering needs. And of course, it looks fancy!\n\nAn altar is created by placing six altar blocks in a 2x3 pattern; you will know it is correct when a red cloth appears over the top of the altar.\n\nActivating the altar by right-clicking on it will bring up a screen showing how much power the altar has collected, how much it can collect and its current recharge rate. It is important to check that there is sufficient available power to perform a given rite or use a distillery or kettle recipe.\n\nThe maximum amount of power available is determined by how many natural items are in the vicinity of the altar: dirt, grass, trees, plants, etc. all contribute; stone and sand do not. The important thing is to have a diverse mix of different plants, trees and crops (plants from other mods are supported to an extent as well).\n\nCertain objects (or foci), placed onto an altar, will boost the focusing capabilities of an altar, either improving the amount of magic it can focus, the rate at which it replenishes or the range it can distribute power. Only one of each type of item (skull, chalice, etc.) will have an effect. There may also be other less savory foci that dark magic practitioners could make use of."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"witchery:arthana","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":334,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"...Cauldron bubble","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second thing you'll need is a cauldron. It is used to craft most of the basic items, like mutandis.\n\nIt is made by placing a regular Cauldron in the world, and then using Anointing Paste on it.\n\nTo brew a potion, cast a ritual or create an item, the cauldron must first be filled with water. This can be achieved by using three buckets of water on it, pumping water into it using pipes, or by using a Dispenser containing a Brew of Endless Water.\n\nOnce a cauldron is full of water, it must boil. Lighting a fire beneath the cauldron is the only way for this to happen. Using a netherrack block will guarantee the fire does not go out, although if it does go out, it may be set to boil again without any consequences (unlike brewing in a Kettle!).\n\nWhen the water is boiling, ingredients may be added to the Cauldron (one after another), to create the desired effect. The book, Witches' Brews gives a complete overview of all ingredients and what they can do when added to a brew."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":335,"preRequisites":[1567],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't touch the needle!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While having not many recipes by itself, the few it has are rather important for your further witchery progression."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":20,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":336,"preRequisites":[333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Probably usable for soup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But its main purpose is to brew potions and infusions.\n\nA kettle must be set up in the correct way, before it may be used. \n\nFirstly, a fire must be set under the kettle (netherrack is best for this, but wood will do just as well). \n\nNext the kettle must be filled by using a Water-filled Bucket on it. \n\nThirdly, each of the six ingredients for the brew or infusion must be thrown into the kettle, one at a time (the liquid will change color according to the recipe being used). \n\nFinally, a glass bottle must be used on the kettle to bottle the resulting brew, this must be done multiple times depending on the recipe.\n\nIt is important to keep the fire going constantly while the recipe is being prepared, otherwise it will be ruined. Swirls coming from the kettle is a sign all is well, black smoke (and brown liquid) indicates the brew is ruined. When a brew is ruined, the kettle must be emptied with a glass bottle, or just filled with more water, and the whole process repeated.\n\nWhen a brew is complete, the liquid will be the color of the resulting brew and will splutter (in addition to white swirls).\n\nSome recipes will require magical energy from a nearby Altar before they are bottled. If the brew is bottled when insufficient energy is available, the brew will be ruined. Black swirls coming from the Kettle is a good sign there is not enough power. A kettle must be within 14 (to 16) blocks of an Altar in order to obtain power from it (it can obtain power only from a single altar)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":22,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":337,"preRequisites":[334],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:brew.fuel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't shake it too much","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike nitroglycerin, this stuff doesn't explode. But you still shouldn't shake it too much..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:brew.fuel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":3,"Damage":22,"OreDict":""},{"id":"witchery:seedsmandrake","Count":3,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":338,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Spirit coin transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Potion of Spirit can only made in the spirit world. Wondering how you can get your stuff like the Kettle, Spinning Wheel or Cauldron to the spirit world? Well you can bypass it probably on servers with the enderchets but for single player or a server without any enderchest you can transfer a few coins to the spirit world and buy some stuff. Don't claim the coins until you have already passed to the other side.\n\nYou have already collected a few coins in quests. Let's transfer them now and save it in a chest.\n\nIt's a repeatable quest so you can do it as long you have enough coins."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":339,"preRequisites":[1571],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Circle magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For circle magic, you need... a circle, obviously. There are 4 types of chalk you can use, and you'll need all of them to proceed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkheart","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkinfernal","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkotherwhere","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:circletalisman","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:ingredient","Count":10,"Damage":67,"OreDict":""},{"id":"witchery:ingredient","Count":5,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":340,"preRequisites":[339],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Portable power source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By infusing a stone with fiery magic you can create an \"Attuned Stone\". These stones can be used to link non-magical devices to the magical currents present..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":5,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":10,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":341,"preRequisites":[340],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":41,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying OINKment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You tried, it doesn't fly. And it also doesn't make any OINK sounds, sadly. But there might be some use for it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":41,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":342,"preRequisites":[341],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nimbus 1999","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not as good as its successor, the 2000'ish model, but still \"somehow\" useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":80,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":343,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Refined evil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Refined good was out of stock, sorry."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:taglockkit","Count":32,"Damage":0,"OreDict":""},{"id":"TConstruct:strangeFood","Count":32,"Damage":1,"OreDict":""},{"id":"witchery:glassgoblet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":344,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Witches hand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In case you don't like the infernal witches..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:gold_nugget","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:witchhand","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":345,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:seepingshoes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Seeping shoes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who needs an antidote? Now with free fertilizer!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":5,"taskID":"bq_standard:hunt","target":"witchery.demon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:seepingshoes","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":346,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:taglockkit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Taglock kits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Get a death protection poppet and get a stack of taglock kits. For all your trolling needs."}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:poppet","Count":1,"tag":{"WITCDamage":0},"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:taglockkit","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":347,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":39,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Drop of luck","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hard to get, even with that quest. But less of a grind..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"witchery.hellhound","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":39,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":348,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:canesword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: \"Cain\" sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Serves 2 purposes: Style. And... ah, yeah... Something useful for vampires."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblinmog","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblingulg","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:canesword","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":349,"preRequisites":[342],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:vampirehat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Be a vampire; Dress like a fancy person","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes it can be troublesome to get fancy clothing. However, if you prove yourself worthy, you get a set for free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:quiverofmog","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:gurdleofgulg","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:babashat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:vampirehat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampirecoat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampirelegs","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampireboots","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":350,"preRequisites":[354,356,357,359,361],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":17,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A few more things...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ok, I think I have everything I need to assemble the device. Can you assist me with some additional materials? I need to update most of my machines, as these exotic components you got me damaged most of them already. Don't worry, I have a list here.\n\nMost of my circuits burned to a crisp while I was trying to measure the conductivity of these soul and life shards. I need better ones.\n\nGood lord, these mysterious crystals have eaten away my diamond grinding head! How could that happen? Can you get me a better one?\n\nDo you see that pile of chrome over there? No? Neither do I. Because the machine was VAPORIZED! Good that you gave me 2 singularities, the first one... Well... Just get me a better casing, would you?\n\nIt seems, that the stabilizers need... stabilizing... But I'm out of field generators. Can you help me with this?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":10,"Damage":32088,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32723,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32672,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":351,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:writable_book","Count":1,"tag":{"pages":["Conceptual Device:\nThe Zero-Point-Module.\n\nHello my friend.\nI need you to help me with a pr"]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hello there","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've observed your pathway, and I have to say, I'm impressed. I might need your help soon, on a big project of mine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":10,"Damage":14,"OreDict":""},{"id":"GalacticraftMars:tile.mars","Count":10,"Damage":7,"OreDict":""},{"id":"GalaxySpace:ceresblocks","Count":10,"Damage":5,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":10,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":352,"preRequisites":[351],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":1000000000},"Damage":32599,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Power. So much power!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If only I could harness it... Well, hi there my friend. I need your help with a project of mine. I want to create an immense power source, but I have a few problems that I need to solve first. Will you help me? You will be rewarded."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":353,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.mars","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A problem that matters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need to open a wormhole. But for that, I need an immense gravitational field. One like those created upon the death of a massive star. But I can't really \"kill\" a sun for this. I need to compress matter somehow... \nBut... How?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":354,"preRequisites":[452],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Now that matters!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course! The matter condenser! How come I didn't think of that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":355,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I need a stabilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Opening the wormhole is one thing, but I need to stabilize it, so it doesn't harm anything. I guess I need something made of crystal. Why? Because I like it fancy. Find me a crystal-based, transparent material with immense power, would you?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":356,"preRequisites":[453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Shiny!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What in the world is this? This is amazing! I need more of these! They will be an amazing containment material for the wormhole!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":357,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I'm hungry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What... I work a lot! So get me some food please."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:creamofavocadosoupItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"harvestcraft:mintchocolatechipicemcreamItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":358,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It needs a power plug...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Given the fact that I will be able to craft this device, it needs some kind of \"plug\" to get the power out. I need something to conduct immense amounts of power. I thought about superconductors, but they don't fit with the crystal casing material I have in mind. I need 2 different crystals, one for positive and one for negative charge."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":359,"preRequisites":[454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Red and blue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Really? A red and blue crystal? How awesome is that! I think I will need 8 of each color, just to be sure."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":360,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"BiomesOPlenty:misc","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A casing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need something for the outer shell. Again, a crystal-based material would be best, because I like it shiny. I tested all crystals we know and none of them meet the requirements. I heard you have access to outer space? Can you try to find a suitable material while you're out there?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":361,"preRequisites":[455],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yes. Yes! That's it! Bring me more of this stuff! I probably need a lot of it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":362,"preRequisites":[464],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Beyond imagination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What is this? Draconium dust? I wonder if I could use this for something..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":363,"preRequisites":[362],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of dragons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey my friend. I got your sample, and I have to say, I'm amazed. This material has a lot of potential, but it's useless at the moment. I have an idea how to turn this into something useful, but I need you to help me with a few problems first.\n\nI need a good handful of that stuff for my research. Please get me some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":364,"preRequisites":[363],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First things first, we need a hull. I played around with your sample, and it seems that it reacts with every known material. It even attacks Iridium! It's completely harmless if it's in a box that is open, but as soon as I try to enclose it in something, poof. It breaks free. We need something stronger than iridium my friend."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":365,"preRequisites":[465],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense, denser, Neutronium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now look at this. This stuff is incredibly dense. Maybe this material will be sufficiently strong?\n\nThis looks promising. Send me some samples, and I will try my luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":366,"preRequisites":[457],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not a planet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This place is interesting. Maybe I should try to find new materials here..."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Pluto","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":367,"preRequisites":[365],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:tile.TFTowerTranslucent","Count":1,"tag":{"display":{"Lore":["Formerly known as Neutronium"],"Name":"Hull debris"}},"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Successful.. Or not?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Heh, neutronium. I didn't even know such a thing really exists. Unfortunately, the draconium dust was enclosed for... 5 seconds? But, it was a small success. \n\nOk let's travel to some planets and moons and look for the new material. I think we have to fly very far away for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:tile.TFTowerTranslucent","Count":16,"tag":{"display":{"Lore":["Formerly known as Neutronium"],"Name":"Hull debris"}},"Damage":5,"OreDict":""}]}]},{"questID":368,"preRequisites":[466],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Black Plutonium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This doesn't seem to be dense, but it's a material you haven't seen before. Maybe this could be the solution?\n\nBlack what? Huh, interesting. Send me some samples, I want to analyse it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":369,"preRequisites":[368],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We have a hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Surprisingly, this material is able to contain the draconium dust. It could be the radiation. Good job my friend!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":370,"preRequisites":[369],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:enderporter","Count":1,"tag":{"display":{"Lore":["The first sample. Wait.. Is that... a button?"],"Name":"Draconium Dust core"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconium Dust core","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've created a first sample of what I shall call \"Draconium Dust core\". Not quite the result I expected to be honest, but see for yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:enderporter","Count":1,"tag":{"display":{"Lore":["The first sample. Wait.. Is that... a button?"],"Name":"Draconium Dust core"}},"Damage":0,"OreDict":""}]}]},{"questID":371,"preRequisites":[370],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We need to control it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The problem is that the immense power of this dust is released all at once. We need something to control the vast amount of energies. I noticed that the dust starts to glow when it gets near an aura node. Maybe Thaumaturgy has the solution?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":372,"preRequisites":[458],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of primals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What else could control energies better than a focus of crystallized primal energy? With this little item, it should be possible to control the energies released from the dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":373,"preRequisites":[372],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mudball","Count":1,"tag":{"display":{"Lore":["A mix of draconium dust, a primordial pearl","and.. Is that a bone?"],"Name":"Primordial dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unforeseen consequences","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You haven't heard anything in a while from the technician. You have a feeling that something might have gone terrible wrong, so you went to his place to investigate. What you found was... nothing. A void. It seems that he tried to combine the pearl with the dust. What did he say? The dust reacts to aura nodes? Of course it does. It amplifies the energies by a thousand times. And giving it raw primal energy, good lord, what has he done. May he rest in peace..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:mudball","Count":1,"tag":{"display":{"Lore":["A mix of draconium dust, a primordial pearl","and.. Is that a bone?"],"Name":"Primordial dust"}},"Damage":0,"OreDict":""}]}]},{"questID":374,"preRequisites":[373],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I'm on my own now","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need to continue my research. I still think that this primordial pearl is the key to control the dust, but I'm not sure how. Maybe the pearl is just too strong? I should try to use something that's similar, but less powerful. It reacts to vis, so maybe.. I should try to make a wand focus with that pearl. That way, I could channel vis into the dust without actually combining both."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":375,"preRequisites":[376],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An interesting material","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This metal has quite interesting properties. It seems that it has absorbed some of the energy that exists in the End. While ender pearls are quite fragile, this metal is a lot more durable. However, the absorbed energy is not enough to teleport things around. But you might find a solution for this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":376,"preRequisites":[385],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gross, what is that...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's purple, and it smells like rotten eggs. But while staring at this unpleasant fluid, you had an idea. You can't reach the dust directly, but can you actually teleport something in and out the field? Might be worth a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":377,"preRequisites":[459],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An appropriate focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've tried a lot, and nothing was quite enough to activate the dust. Until now. You finally found a focus that is able to transmit enough power to cause a heavy reaction with the dust, but not enough to cause problems."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":378,"preRequisites":[377],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated draconium dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At least for a short period of time. The wand focus is powerful enough to activate the dust, but it will convert back to regular dust as soon as I stop feeding it with vis. If I only could contain it, surround it with a forcefield..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""}]}]},{"questID":379,"preRequisites":[378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32684,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The strongest forcefield","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to create a forcefield, I need to build myself a containment device. I will use only the best emitters I can afford. I will take no risks here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32676,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32686,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":380,"preRequisites":[379],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"display":{"Lore":["A pile of something that","used to be a machine hull"],"Name":"MAX Machine Casing (Molten)"}},"Damage":7129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not what I expected...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The outcome was... interesting. It did not explode, instead, the activated draconium dust generated a counter-field to mine! Unfortunately, the emitters could not stand the reverse energies, and melted. I was able to shut it off quick enough to save the machine casing (At least what's left from it...) And a couple of field generators."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32676,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"tag":{"display":{"Lore":["A pile of something that","used to be a machine hull"],"Name":"MAX Machine Casing (Molten)"}},"Damage":7129,"OreDict":""},{"id":"minecraft:nether_star","Count":2,"tag":{"display":{"Lore":["A few scratches here and there,","but still usable"],"Name":"Nether Star (Used)"}},"Damage":0,"OreDict":""}]}]},{"questID":381,"preRequisites":[380],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":900100,"terra":900100,"ignis":900100,"cap":"orichalcum","rod":"neutronium","ordo":900100,"perditio":900100,"aer":900100},"Damage":2000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forcefield, second try","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I came to the following conclusion: Draconium dust seems to react nicely with all kinds of magic energy, and seems to repel technology. So I need to find a way to create a forcefield with magic alone. There must be a way..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":382,"preRequisites":[460],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magic force field","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While node stabilizers are too weak, you found a way to generate a strong containment field, generated by magic itself. You tried to use warded glass, but even the \"frozen in spacetime\" material could not resist the power of activated draconium dust. You decided to build another device, this time with your newest invention.\n\nThe vortex attenuator is powerful enough to negate even hungry nodes, and it also will be able to contain activated draconium dust.\n\nJust to be sure, I will add some amplifiers to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicHorizons:transductionAmplifier","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":383,"preRequisites":[382],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:transductionAmplifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What the...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The device works! It is able to fully contain and separate the draconium dust from everything around it! Unfortunately... It also prevents the vis from passing the barrier, which results in regular draconium dust... In a forcefield..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":384,"preRequisites":[383],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Looking for alternatives","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is frustrating. Either you are able to contain the dust but can't activate it, or, you activate it and it causes serious damage. Maybe you need to find answers somewhere else.\n\nDraconic... Like... Dragon?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":385,"preRequisites":[461],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconic... Like... Dragon?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you where looking for the right things in the wrong place. As this dust obviously comes from dragons, the best thing to do now is to find answers in the dimension of dragons: The End."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Dragon Dimension","range":-1,"index":0,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":386,"preRequisites":[387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:endoplasm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weird creatures","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These ghosts are weird beings. But, I found this ectoplasm, which, by itself, seems to be pretty useless."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:endoplasm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":387,"preRequisites":[388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:spatial_dash_gem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated teleport power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By a random guess of yours, you combined molten ender pearls and a few more of these shards with an empty gem, and it turned blue. It is pulsating with power. You tried to use it on your containment device, and it seems to be able to bypass the force field, while keeping it intact that the same time. Sadly, it doesn't have enough power to let vis pass through. Maybe you can even further increase the gems power?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:spatial_dash_gem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":388,"preRequisites":[375],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:arcane_shard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arcane shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the normal world is based on vis and primal energy, the End seems to be quite different. This arcane shard is the crystallized form of this energy, just like the primal shards that you used so many times in the past. By pure randomness, you discovered that it reacts with the metal you've found."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:arcane_shard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:blank_gem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":389,"preRequisites":[390],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconicCore","Count":1,"tag":{"display":{"Lore":["Emits a strong, vibrating aura of pure energy you never experienced before.","In good memory of your old friend, the technician. May he rest in peace"]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconic evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I found a way to combine technology and magic into something fantastic. A shiny blue emblem that emits immense amount of energy. I've decided to call it the draconic core. Make one for yourself!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconicCore","Count":1,"tag":{"display":{"Lore":["Emits a strong, vibrating aura of pure energy you never experienced before.","In good memory of your old friend, the technician. May he rest in peace"]}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":390,"preRequisites":[468],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:resource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Balanced thaumium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This new metal is quite cheap, and has an awesome conductivity towards all 6 primal aspects. Regarding the capsule, I'd say it is a superconductor for vis. I think I can finally assemble the final frame."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:resource","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"thaumicbases:resource","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":391,"preRequisites":[389],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The machine is working pretty well, but it's tedious to fill in the reagents manually. But you have an idea, you could use a few basic components to fully automate the process.\n\nYou can use robot arms and conveyor belts to automate the input and output.\n\nObviously, you need to power the machines. A solar panel will do just fine.\n\nIn order to automate the catalyst, you need a few things. One golem will gather basic materials, while the second one will hunt creepers and ghasts for the more valuable ingredients.\n\nYou found a way to re-use the singularity, so you only need to get some sand. Luckily, the golem that works on the catalyst will be able to get glass too. He just needs a little additional motivation.\n\nYour golems need light, obviously. Also, it would be nice if there are some signal lamps that indicate the status of the process. Would it not?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32656,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32636,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32757,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemPlacer","Count":2,"Damage":7,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemGolemDecoration","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"MagicBees:miscResources","Count":1,"Damage":17,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemGolemDecoration","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":1,"requiredItems":[{"id":"BiblioCraft:BiblioLamp","Count":2,"Damage":0,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":13,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":14,"OreDict":""}]}]},{"questID":392,"preRequisites":[386],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:transference_gem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated teleport gem","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are sure that you've just discovered the solution for your containment problem. This gem happily transmits vis on request, while keeping the containment field intact. What a great day!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:transference_gem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":393,"preRequisites":[392],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"You did it! But...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are able to contain the activated draconium dust for an infinite amount of time, you where able to assure the energy it releases. The readings are incredible. You have never seen such a power before. The only problem is, the machinery required to keep the dust in this state is too large to use it for crafting.\n\nYou noticed something that might help: The dust reacts to vis, but it needs a lot of it, therefore you require the animation focus. If you could find a catalyst, that you can mix the dust with, you could make the dust react with the vis from its surroundings instead of a direct beam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":394,"preRequisites":[462],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A catalyst","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That's it. This catalyst contains all primal energies in a quite different form, a lot weaker than any node. However, in combination with the draconium dust, it amplifies the vis that's around it, which leads to a permanent activation. It still needs to be contained, but you don't need the direct vis beam any more.\n\nThe result is a compound, which still emits massive amounts of power, but is less destructive. It still attacks the neutronium, but I think if I can find a capsule-like container that has special properties, I could create a portable version of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":395,"preRequisites":[467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bulma would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining a dimensional singularity with some glass cylinders and molten gold, I was able to create a miniature containment field within a very small area. Interesting enough, the new draconium blend amplifies the containment field from the inside. Once I fill the blend in the capsule, it immediately \"seals\" itself. I won't be able to remove or replace the dust any more, but I don't think I have to...\n\n\nThe perfect vessel for massive power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":396,"preRequisites":[395],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The final steps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that I've found a way to stabilize the draconium dust and keep it safe in a small capsule, I just need to make a small container for it, so I can drain the energy on demand. Neutronium will serve very well, but I need a magic conductor. Thaumium works, but gets way too hot and void metal has a bad conductivity. I need to find a magic alloy that is more \"balanced\" in terms of primal aspects"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":397,"preRequisites":[391],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconicCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Endless evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using your machine, you can now craft infinite amounts of these cores. And since it would be gruesome to let your golem work just for one single core, you decided to only request cores in a large batch of 64. How nice of you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11129,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11978,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32049,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconicCore","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":398,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:babashat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Baba Yaga","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Baba Yaga is a witch (or one of a trio of sisters of the same name), who appears as a deformed and/or ferocious-looking elderly woman. She flies around in a mortar and wields a pestle. She dwells deep in the forest, in a hut usually described as standing on chicken legs, with a fence decorated with human skulls. Baba Yaga may help or hinder those that encounter or seek her out."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.babayaga","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":399,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:hornofthehunt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Horned Huntsman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Horned Huntsman is a member of the Wild Hunt, a powerful entity created by the Horned God. If one is encountered, prepare for a hard fight, or better flee."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.hornedHuntsman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":400,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Ender Dragon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The dragon must die. Long enough he destroyed those precious endstone blocks!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":401,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:leonardsurn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Shade of Leonard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Leonard is the demonic being who is rumored to have taught a cadre of German witches their trade, and often presided over their sabbats. A skilled coven with the witches cauldron can summon a Shade of the Demon according to the method described in the Witches' Brews book."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:leonardsurn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":402,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":141,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Lord of Tormentum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Lord of Torment is a mighty demonic being that is able to create prisons to torment its victims. Those foolish enough to summon one of these creatures must prepare for an arduous fight."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.lordoftorment","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":403,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:quiverofmog","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Mog and Gulg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mog and Gulg are the god-like beings that hobgoblins worship. They may send their avatars to pay witches a visit who exploit their worship (with a statue of hobgoblin patron). Rumor has it that using a nether star may make them take immediate notice."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblinmog","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblingulg","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":404,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Demon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Demons are powerful, evil beings who dwell in the infernal dimensions. To date, none have been seen roaming the Nether, where their minions: ghasts, blazes and their ilk seem to dominate. To meet a demon without a way to protect oneself is almost certain death. They are known to hit like a proverbial truck, and require a significant amount of damage to kill. Some demons have even been seen shooting fireballs! They are, of course, also immune to fire."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.demon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":405,"preRequisites":[398,399,400,401,402,403,404],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:infinityegg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of infinity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've mastered everything possible. And now it's time to give your equipment the final boost. The infinity egg is just the right addition to your altar. It's quite expensive, but well worth the cost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"witchery:chalkheart","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkinfernal","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkotherwhere","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":64,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":45,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":80,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:infinityegg","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":406,"preRequisites":[407,708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:lavaSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lava for blood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, both are red, so that connection was quite obvious... Was it...?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:lavaSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":407,"preRequisites":[177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blankSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic slates. Basically just stone with blood infused in it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blankSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:blankSlate","Count":12,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":408,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:divinationSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's quite difficult to see how much blood there is in your altar, or your personal blood network. This little device will solve that problem for you. Just a little prick in the finger, and everything will be revealed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:divinationSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":409,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic rune","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic rune that you can craft at this moment.\n\nYou need 8 runes for your tier 2 altar, which can hold more blood, and you can make new recipes now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":410,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Alchemy with blood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not like \"blood alchemy\". You probably will need more than one later, but for now one is sufficient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":411,"preRequisites":[412],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:averageLengtheningCatalyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion catalysts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to manipulate potions you need catalysts. You then combine the ingredient you used to get the potion effect in with either a lengthening or power catalyst to increase the duration or the strength of the potion effect."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:mundaneLengtheningCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:mundanePowerCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBindingAgent","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:simpleCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":412,"preRequisites":[410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:crystallos","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple alchemical things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alchemy can be weird, and tedious. There are a lot of reagents and even more possible combinations. For now, and in order to get started, you need a couple of basic things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:simpleCatalyst","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:crystallos","Count":16,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanctus","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:sanctus","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:crystallos","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":413,"preRequisites":[415],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:weakFillingAgent","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refilling your potions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If empty, you don't have to throw the potion away. Just refill it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakFillingAgent","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:standardFillingAgent","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":414,"preRequisites":[410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Special potion flasks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular glass phials are unable to hold these special potions you want. You need to imbue them with some blood from your altar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:alchemyFlask","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":415,"preRequisites":[411,414],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion: Flight mode","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just to give you an idea what is possible. Let's do a sample potion. Shall we? Get yourself a potion flask, a feather and one of your weak binding agents you made. Combine those in the chemistry set, and you'll get something that you'll probably want to keep for a while."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBindingAgent","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:averageLengtheningCatalyst","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":416,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:blockHomHeart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple, but powerful spells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The simple spell system is rather easy to setup, and can be done early on in your bloodmagic career."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockHomHeart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":417,"preRequisites":[416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paradigm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Paradigms shape your spell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":418,"preRequisites":[416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spell foci","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are nine basic elements and each has a focus, an item that represents them. You place this focus in your altar next to the spell table in order for your magic to flow through it and the paradigm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ice","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:water_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:obsidian","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":419,"preRequisites":[418,417],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Some examples","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a LOT of spell combinations to discover, so just use trial and error!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:ice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":420,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:sigilOfMagnetism","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Convenient slate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collecting items while mining or chopping wood is always tedious. But no more! With this fancy little thing items will just fly towards you! And it only costs a little bit of blood to pay the spirits of wind to work for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sigilOfMagnetism","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":421,"preRequisites":[926],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:imbuedSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...and even more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":422,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:reinforcedSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need MOOORE. Imbue some slates with even more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:reinforcedSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:reinforcedSlate","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":423,"preRequisites":[422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Apprentice orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 2 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":424,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magican's orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 3 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":425,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:waterScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Elemental chalk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creation of better ritual stones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:waterScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:fireScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:earthScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:airScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":426,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:runeOfSelfSacrifice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sacrificial runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Poking your finger might work for simple slates and runes, but getting enough blood for advanced stuff is tedious. With sacrificial runes you are able to increase the LP gain from mobs or yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:runeOfSelfSacrifice","Count":4,"Damage":0,"OreDict":""},{"id":"AWWayofTime:runeOfSacrifice","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:runeOfSelfSacrifice","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:runeOfSacrifice","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":427,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first rune to increase your capacity, and a rune to speed up transfer from/to external tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":2,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":2,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":428,"preRequisites":[425],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have access to elemental chalk, you can get yourself the basic ritual diviner. A convenient way to place simple but yet complex magical rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:imbuedSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":429,"preRequisites":[430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodSocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powerful armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A long way to go, and rather expensive, but a really powerful armor and well worth the effort."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:emptySocket","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodSocket","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:armourForge","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:weakBloodShard","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":430,"preRequisites":[432],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:weakBloodShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting soul shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enable your sword by Shift right-clicking and slay some enemies! Collect as many shards as possible. You will need a ton of them..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakBloodShard","Count":17,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:blankSlate","Count":16,"Damage":0,"OreDict":""},{"id":"AWWayofTime:reinforcedSlate","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":431,"preRequisites":[429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to assemble your armor. You need to build the pattern with blocks as you would craft the armor in a crafting table. The soul forge must connect to the structure on at least 2 sides. Then, right click the forge block with an empty hand to craft the armor piece."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundPlate","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:armourInhibitor","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":432,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:energySword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A bloodmage's sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamonds and emeralds are limited in their ability to store LP. With this sword, you are able to get the crystallized souls from your enemies. Time to go hunting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:energySword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":433,"preRequisites":[422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:masterStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time for some rituals. The most basic one you'll probably get first is the ritual of binding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":24,"Damage":0,"OreDict":""},{"id":"AWWayofTime:masterStone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":434,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundPickaxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Pickaxe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mining never was easier. Just right-click with this tool and all the stone is gone! Like all bound tools, this uses a massive amount of LP."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundPickaxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":435,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Shovel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever wanted to clear out a large terrain with dirt, gravel and sand? Why not let demons do it? This shovel, imbued with the soul of a demon will unleash the power by your will. But be warned: The demon you're about to summon with this is thirsty, and it costs a lot of LP to make use of it, so make sure your LP pool is full!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":436,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Axe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upon right click while activated, this axe will clear out any wood within a large area. Be warned: This uses a huge amount of LP. You might suffer from sudden death..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":437,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:sanguineHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A true blood-mage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bloodmagic is fine, so is Thaumcraft. Why not combine both worlds?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sanguineHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguineRobe","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguinePants","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguineBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":438,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellParadigm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Complex spell system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike the simple spells with foci and paradigm, the complex spell system is incredibly...complex. There are way too much combinations to cover them here, so it's advised to look for the knowledge in other places. However, with the items from this quest, you are able to craft a simple mining spell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellParadigm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEffect","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellModifier","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemComplexSpellCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:incendium","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:aquasalus","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":439,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Steam > Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three steam lootbags give a better one = Tier 2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":440,"preRequisites":[4],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:pamappleSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lOak trees are not apple trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oak trees which give apples? Who the hell added this to minecraft? You found a way of combining an oak sapling and an apple to get an apple tree sapling. Try to plant one to get a permanent source of food.\n\nOnce you complete this quest, check out the rest of the Quest Tabs. A new one, Coins Coins Coins, has unlocked. Every few quests you want to look through all the quest tabs to make sure something new hasn't unlocked somewhere else! There are lots of tabs, so be sure to scroll down!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:apple","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:pamappleSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:pampearSapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamcherrySapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamorangeSapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamwalnutSapling","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":441,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Basic > Steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic lootbags give a better one = Steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":442,"preRequisites":[9],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32201,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§l\"Backed\" potatoes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eating raw potatoes isn't that healthy, as you might have noticed. Some potatoes are green and poisonous already. After you get a furnace you can make delicious baked potatoes as another food alternative. Put a baked potato on a stick to make it even more delicious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:potato","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:baked_potato","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32201,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:melon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":9,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":443,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 2 > Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 2 lootbags give a better one = Tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":444,"preRequisites":[9],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Wood","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSoft mallet adventure","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You now have some melon slices or pumpkins but what can you do with them? Well just eat them or... use a mallet to get some seeds... OK, let's craft one. Perhaps you can use this mallet for some other things too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"},{"id":"minecraft:planks","Count":6,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Wood","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:melon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":445,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 3 > Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 3 lootbags give a better one = Tier 4"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]}]},{"questID":446,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.wood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lShields UP","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a sword in one hand, what can you do with the other? Right, you need a shield. Let's make one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":4,"Damage":0,"OreDict":"logWood"},{"id":"minecraft:flint","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:cobblestone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":447,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 4 > Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 4 lootbags give a better one = Tier 5."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":448,"preRequisites":[446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.hide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lShield update","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wooden shield is very weak. So you look for a better one. Looks like you need some leather, so go and find some cows."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.hide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fence","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":449,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 5 > Tier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 5 lootbags give a better one = Tier 6."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":450,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lYour first long range weapon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since you can't make any vanilla bow before LV and Tinkers weapons are not in this Tier, you find a way to make a spear out of sticks, leather and a string. Get one because some infernal monsters are easier to kill with a long range weapon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"woodStick"},{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":451,"preRequisites":[906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger LoC","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by having a \"Lamp of Cinders\" in your inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":452,"preRequisites":[353],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Singularity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a singularity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":453,"preRequisites":[355],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Shard of Creation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a \"Shard of Creation\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":454,"preRequisites":[358],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Life and Soul Shard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a \"Life Shard\" and a \"Soul Shard\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":455,"preRequisites":[360],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Unknown Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by finding a \"Mysterious Crystal\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":456,"preRequisites":[916],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers the Life Canister Quest after a Wither death."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":300,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.6000000238418579,"Name":"generic.movementSpeed"},{"Base":40,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"Invul":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":300,"id":"WitherBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5130901120732393000,"Health":300,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14321298824739,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"WitherBoss","subtypes":1}],"rewards":{}},{"questID":457,"preRequisites":[367],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Pluto","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you have been on Pluto."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":{}},{"questID":458,"preRequisites":[371],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Primordial Pearl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by the Primordial Pearl."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":459,"preRequisites":[374],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Wand Focus Animation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you craft the Primordial Focus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":460,"preRequisites":[381],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Vortex Attenuator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers after you craft a Vortex."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":461,"preRequisites":[384],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger The End Dim","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you arrived at The End."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":0,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":{}},{"questID":462,"preRequisites":[393],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Amorphic Catalyst","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you craft the Catalyst."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":463,"preRequisites":[423],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:speedRune","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Runes tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Speed rune is the only tier 2 rune. The speed rune does what its name implies, provides an additive 20% increase to the processing speed of the blood altar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:speedRune","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:imbuedSlate","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:speedRune","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":464,"preRequisites":[308],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:barnardaCdirt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The technician part 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I will ask the technician about this stuff, but I need to reach a good reputation first. He is a busy man, and I don't want to be denied."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"GalaxySpace:enceladusblocks","Count":10,"Damage":2,"OreDict":""},{"id":"GalaxySpace:proteusblocks","Count":10,"Damage":3,"OreDict":""},{"id":"GalaxySpace:plutoblocks","Count":10,"Damage":6,"OreDict":""},{"id":"GalaxySpace:barnardaCdirt","Count":10,"Damage":0,"OreDict":""},{"id":"GalaxySpace:vegabgrunt","Count":10,"Damage":0,"OreDict":""},{"id":"GalaxySpace:tcetieblocks","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":465,"preRequisites":[364],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Neutronium Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you get Neutronium Ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":1,"Damage":129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":466,"preRequisites":[366],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Black Plutonium Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you find Black Plutonium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":1,"Damage":388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":467,"preRequisites":[394],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Empty Void Capsule","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you have a Void Capsule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":468,"preRequisites":[396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Thauminite Nugget","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you get Thauminite Nuggets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:resource","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":469,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:BerryBush","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCollecting some berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you now waiting for the carrots to grow? Go and find some berry bushes and berries. The berries are a good source of food and you can put these bushes around your house to make a wall. It should provide a good protection against all those monsters that want to come into your house and kill you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":5,"Damage":1,"OreDict":""},{"id":"Natura:berry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Natura:BerryBush","Count":5,"Damage":0,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:BerryBush","Count":2,"Damage":15,"OreDict":""},{"id":"Natura:BerryBush","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":470,"preRequisites":[469],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:berryMedley","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBerry medley","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hmmm... what can you do with all those berries? Just eating? You will see that they have a very low saturation Level. Let's plant the new berry bushes and mix the berries to make some better food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":1,"Damage":1,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":3,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":2,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood","Damage":100}},"Damage":34,"OreDict":"craftingToolKnife"},{"id":"minecraft:bowl","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Natura:berryMedley","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:BerryBush","Count":5,"Damage":15,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":14,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":13,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Natura:berryMedley","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":471,"preRequisites":[442],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:teaItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§1§lFood variants","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you noticed already that eating the same food too often is very boring and not healthy any more. Some food like tea leaf can be taken to the furnace and processed further. So take a break and drink a cup of tea. Maybe munch some tasty raisins as they are very nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:tealeafItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:grapeItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:teaItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raisinsItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2817,"OreDict":""},{"id":"harvestcraft:butterItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":472,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":56,"Head":3,"HeadEXP":0,"BaseAttack":3,"Built":1,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":3,"Broken":0,"Shoddy":0,"RenderHandle":3,"Accessory":3,"MiningSpeed":400,"RenderAccessory":3,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":56},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When your tinkers tables are ready you can craft your first tool. If you did not find a village yet you can only craft flint tools. Let's start with a pickaxe, an axe and a shovel. At this point swords are unobtainable since they need metals like iron or bronze which you will get at a later stage. In the meantime use your gregtech swords. Your new tools are weak at first but the more you use them the better they will get. They will level up to level 99 if you play long enough. Tool parts can be replaced for a bit of level XP, however the tool must be fully repaired first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":4,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":9,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:flint","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":1,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:shovelHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"HeadEXP":0,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":400,"RenderAccessory":0,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},{"id":"TConstruct:hatchet","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":5,"ToolEXP":0,"HarvestLevel":1,"Attack":5,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Hatchet"}},"Damage":0,"OreDict":""},{"id":"TConstruct:shovel","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":4,"ToolEXP":0,"HarvestLevel":1,"Attack":4,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Shovel"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:blankPattern","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":473,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:broadsword","Count":1,"tag":{"InfiTool":{"BaseDurability":427,"Head":14,"BaseAttack":7,"Built":1,"ToolEXP":0,"HarvestLevel":4,"Attack":7,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":427},"display":{"Name":"Bronze Broadsword"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking a better sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it's time to make your first tinkers sword. First you have to make blade, hand guard, and tool rod cast forms. Melt some bronze in the smeltery and cast your tool parts. Tadaa... there is your first tinkers sword."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":6,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:swordBlade","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:wideGuard","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":4,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":474,"preRequisites":[28,472],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":225,"Head":2,"HeadEXP":0,"BaseAttack":4,"Built":1,"ToolEXP":0,"HarvestLevel":2,"Attack":4,"RenderHead":2,"ModDurability":0,"Handle":2,"Broken":0,"Shoddy":0,"RenderHandle":2,"Accessory":2,"MiningSpeed":600,"RenderAccessory":2,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":225},"display":{"Name":"Iron Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§k§l§l§r§2§lUpgrade 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find iron, copper and tin ore. Very funny... How can you mine these with just a flint pickaxe? \nI have an idea; bring me all the stone you mined with your flint pickaxe and I will give you a better tool head in exchange."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:cobblestone","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:shovelHead","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":475,"preRequisites":[86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #4: Upgrade tier 5 - HSS-G Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like HSS-E, HSS-S, naquadah or draconium you need more than 4500K. Time to upgrade your EBF to 5400k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":476,"preRequisites":[475],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #5: Upgrade tier 6 - Naquadah Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like naquadah-alloy you need more than 5400K. Upgrade your EBF to 7200k to increase the heat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":477,"preRequisites":[476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #6: Upgrade tier 7 - Naquadah Alloy Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the more advanced materials like neutronium or fluxed-electrum you need more than 7200K. Upgrade your EBF to 9001k. (OVER 9000!!!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":478,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lFlint and steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make steel you are able to craft flint and steel. I guess you want to travel to the Nether as soon as possible but be aware; the Nether is a very dangerous place.\nNote: The ball of moss gives a tinker's tool self-repair. But if the tool is completely broke, it will have to repair to full health before fixing the tool."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":20305,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:arrow","Count":32,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:obsidian","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":479,"preRequisites":[478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§m§l§m§4§3§lTHE NETHER","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now more dangerous with extra hardcore infernal mobs. Have fun and take care. Be sure to bring a tough companion along to keep you alive. If you have no friends, why not make an Iron Golem and push it through first, or bring the materials for more along with you?\n\nAlso, *when* you die here, not if, your graves will spawn skeletons because of the darkness. Make sure you light up areas where you might die, and when recovering graves light up the area *first* so that you don't end up dying over and over and making a mess."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:obsidian","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"THE NETHER","range":-1,"index":1,"dimension":-1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:natura.armor.imphelmet","Count":1,"tag":{"ench":[{"lvl":1,"id":0},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impjerkin","Count":1,"tag":{"ench":[{"lvl":1,"id":3},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impleggings","Count":1,"tag":{"ench":[{"lvl":1,"id":4},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impboots","Count":1,"tag":{"ench":[{"lvl":1,"id":2},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":99,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":97,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":480,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":871,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMalachite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another copper source is \"malachite\" which can be found between Y level 10 and 40. This vein contains more iron ore variants like \"brown limonite\", \"yellow limonite\" and \"banded iron ore\".\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in nei and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":871,"OreDict":"oreMalachite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":917,"OreDict":"oreBandedIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":931,"OreDict":"oreYellowLimonite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":930,"OreDict":"oreBrownLimonite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11035,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32240,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":481,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:fluid.creosote.bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§l§2§lCreosote oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I guess you already processed a bit of wood into charcoal and wonder what you can do with all this creosote oil?\nWell you can burn it in the normal furnace to cook your food or you can make more torches with it. Later in the LV age you probably should run combustion generators with it."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":482,"preRequisites":[483,1476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Cow"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnimal farms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Trying to get some leather or wool? You probably need to spend a lot of time hunting animals and traveling around, or you could simply make a farm to get a decent amount of leather, wool and meat. Make sure you don't put too many animals in the pen or they will overcrowd and kill each other."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:beef","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wool","Count":100,"Damage":0,"OreDict":"blockWool"},{"id":"harvestcraft:muttonrawItem","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:porkchop","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:chicken","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:shears","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:mattock","Count":1,"tag":{"InfiTool":{"MiningSpeed2":700,"BaseDurability":67,"Head":314,"BaseAttack":6,"Built":1,"ToolEXP":0,"HarvestLevel":6,"Attack":6,"RenderHead":314,"ModDurability":0,"Handle":314,"Broken":0,"Shoddy":0,"RenderHandle":314,"Accessory":314,"MiningSpeed":700,"RenderAccessory":314,"ToolLevel":1,"Unbreaking":10,"HarvestLevel2":6,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":67},"display":{"Name":"Unstable Induced Mattock"}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":483,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat_seeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGardener","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are wondering: Why do I never get seeds when destroying grass? You are right. Try to work with your new mattock on the grass blocks that do not have water anywhere nearby to find some seeds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":4,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:shovelHead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:mattock","Count":1,"tag":{"InfiTool":{"MiningSpeed2":650,"BaseDurability":534,"Head":14,"BaseAttack":6,"Built":1,"ToolEXP":0,"HarvestLevel":4,"Attack":6,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"HarvestLevel2":4,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":534},"display":{"Name":"Bronze Mattock"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11300,"OreDict":""},{"id":"TConstruct:GravelOre","Count":2,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":484,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCan you hear the carrots grow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of waiting since your carrots grow sooooo slow?\nWell I got an idea, bone meal will help you grow food in seconds. Ok, chop down some trees and I will trade you some bone meal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":64,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":10,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:dye","Count":10,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood"}},"Damage":6,"OreDict":""},{"id":"minecraft:torch","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":3,"Damage":15,"OreDict":""}]}]},{"questID":485,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou need MOOOOOOORE wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to feed your new coke oven with some wood to get more charcoal. You are looking for the most efficient way to plant trees. Try to find some spruce saplings and some jungle saplings. Both can be planted in a 2x2 grid to get bigger trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":4,"Damage":1,"OreDict":""},{"id":"minecraft:sapling","Count":4,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":0,"OreDict":""},{"id":"Natura:florasapling","Count":49,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":486,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTanned leather","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have found a way to make leather more durable and more resistant by further processing it. Make some bound leather from four pieces of leather, some strings and a woven cotton. Now you only have to hang it on a drying rack and wait about 10 minutes to get some tanned leather. Stockpile some for later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:Armor.DryingRack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Backpack:boundLeather","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":487,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNeed more space?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you might know: tanned leather is more resistant and good enough for a backpack. Let's get a digger's backpack and a miner's backpack. Each pack holds different items. So use both for your first true back-packed mining experience."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:minerBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:cooked_beef","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":488,"preRequisites":[487],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:foresterBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou need them all!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are many more backpacks: Hunter, builder, forester..."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:foresterBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:hunterBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:builderBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":1,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":489,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"SpiceOfLife:lunchbox","Count":1,"tag":{"UUID":"60ced69d-32df-413d-ac1d-28b72b4c8621","Inventory":{"Items":{}},"Open":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBetter lunch bag","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your lunch bag is now so abused and rather old so it's time to get something better. Let's craft a lunch box which can hold way more food."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"SpiceOfLife:lunchbox","Count":1,"tag":{"UUID":"60ced69d-32df-413d-ac1d-28b72b4c8621","Inventory":{"Items":{}},"Open":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:delightedmealItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:bltItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":490,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Horseback riding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you ready for a small trip? With your new lunch box, saddle, lead and of course a horse we can start a small journey. Be sure to make paths over water, horses don't like going over deep water."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:fence","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fence","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":491,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"sleepingbag:sleepingBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSleeping outside","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Carrying the bed with you all the time the looks very funny. Why don't you craft a sleeping bag to stay outside without placing a bed and changing your spawn point. This way if you die, you'll be right at home! Be warned: If you play on a server then you'd better sleep below Y level 128, as nights are very cold in the mountains..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wool","Count":3,"Damage":0,"OreDict":"blockWool"},{"id":"minecraft:carpet","Count":3,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"sleepingbag:sleepingBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:leather","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":492,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Sheep"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSheep hairdresser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Killing sheep to get the wool is so ineffective. Making some shears would make sense if you need more wool."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":"ringIron"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":"screwIron"},{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"stickWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":5,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":18,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":22,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":10,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":493,"preRequisites":[48],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":26,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWire Cutter v.0.2alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Small gears require a wire cutter to be made, so let's craft one."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":494,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:redstone_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRedstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you didnt't find any Redstone veins yet, it is quite important to look for one now. Try your luck at Y level 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":502,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":32221,"OreDict":""},{"id":"TConstruct:oreBerries","Count":5,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":495,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOh, shiny! (Not platinum!)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your first macerator you need two diamonds, and to enter the Twilight Forest you need one. Finding a diamond vein would help you a lot. Go and look for one at Y level 5-20."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":500,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":865,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":535,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32234,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32232,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"IC2:itemPlates","Count":5,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17032,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":496,"preRequisites":[51,479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemDust","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHow to make rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making rubber is now more complicated - you need raw rubber and sulfur. Finding a sulfur vein in the Nether seems like a good idea, doesn't it? Found on Y level 5-20. Later on you can get sulfur from chemicals like hydrogren sulfide or pyrite.\n\n§4Sphalerite will be important later for gallium and zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1022,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1834,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1839,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:peaandhamsoupItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"Natura:barleyFood","Count":8,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":497,"preRequisites":[478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1155,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lLit way to get charred","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have found an alternative way of making charcoal with a \"charcoal pile igniter\". \nGo and start getting massive amounts of charcoal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21305,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1155,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":498,"preRequisites":[36,74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:filledbucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lXP usage?!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Exploring some dungeons or fighting mobs probably gave you a lot of XP. Better use it to get iron, copper, tin or other useful dusts before you die during the next fight.\n\nPlace your tank on the ground and a drain on top. Now you can fill it with XP.\n\nBy the way, you discovered that while the seared tank doesn't hold much, it doesn't lose contents when broken, and full tanks can stack. I wonder if that information is useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:LavaTank","Count":1,"Damage":0,"OreDict":""},{"id":"OpenBlocks:xpdrain","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:experience_bottle","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":499,"preRequisites":[72],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diesel, creosote: Watch them BURN!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have almost made it. One last crafting step is required in order to advance to tier 2. Keep going!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1110,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberrybarItem","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":500,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialScoop","Count":1,"tag":{"charge":4990},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First things first","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As usual. In order to get started with bees, you need a few basic things. Most importantly... a scoop. For this quest you want to make a GregTech scoop. Later you can make scoops using magic or even rechargeable scoops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":501,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"NA":0,"Health":20,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Go find some bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next thing to do: Find a few bee hives around the world. There are 11 mundane bees that can be found, of which 8 are located in the Overworld. Any kind of bee will work for this quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":502,"preRequisites":[1112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A new home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've destroyed the poor bees homes, you should build them a new one. The humble Bee House will not let your bees mutate into new species. But you'll need the combs anyways for better housing. The production rate isn't too bad, but they cannot be automated.\n\nOne tip - Put some vanilla saplings near the Bee Houses. Bee Houses give a natural boost of 3x to pollination vs better housing. The bees will pollinate them and you might get lucky and start getting some Forestry tree crossbreeding. Stick with Oak and Birch trees, they'll give you a nice mix of starter Forestry trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":503,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BinnieCore:fieldKit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyze them all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every bee has multiple properties that define what the bee does, how it behaves in rain or at night, and a couple of other aspects. It is mandatory to keep track of those properties. This kit isn't very good since it doesn't give you information on their Inactive attributes, but waste not, want not.\n\nYou'll need to use paper to analyze each bee."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BinnieCore:fieldKit","Count":1,"Damage":63,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"minecraft:paper","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":504,"preRequisites":[503],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beealyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scan or not to scan","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get into bee breeding, you need a way to see all the traits, active and inactive. You only want to breed so called \"pure\" bees; For those, both \"Active\" and \"Inactive\" traits are identical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beealyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":505,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Top-Tier analyser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best you can get, for all your scanning and analysing needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":10,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":506,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:MutagenBucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"To play god","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to continue with bees, to mutate and breed them as you like, you need mutagen. This greenish, smelly liquid needs to be refined from bacterial sludge that seems to be available only on Mars. You will be able to continue, once you've arrived there.\n\nIn the meantime you can start working with the Genetics mod, since we all know Gendustry is too easy... Check out the recipes and you will understand why you should look into the Genetics mod."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Visit Mars","range":-1,"index":0,"dimension":29,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesOblivion","UID0":"magicbees.speciesOblivion","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesOblivion","UID0":"magicbees.speciesOblivion","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":507,"preRequisites":[578,1113,502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgraded home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Bee House can be used to stabilize mutations, for example if you have successfully bred two different bees, but the passive traits are different from the active ones. \n\nTo actually breed those together to get a new species, you'll need something different - the Apiary. Building them will require a Carpenter and Impregnated frames, along with Seedoil and Creosote - quite a bit of industrialization! Or, if you're lucky, you can find a beekeeper villager to trade with for useful items. Maybe you can help the villagers *get lucky* to make more beekeeper villagers? If only Cupid and his bow were around...\n\nProduction rates in an empty Apiary are low - lower than a Bee House by quite a bit, in fact. But the Apiary has two big advantages - Frames, and Automation. You can now use your Untreated or Impregnated frames in here to boost output - and the boost is multiplied. So 3 x2 frames gives you 2 * 2 * 2 = 8x extra output!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:frameUntreated","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":508,"preRequisites":[506],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Mutatron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutatron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mutations can be boring, they can be annoying, and most times, they are frustrating. With this machine, you will get a 100 percent pure bred mutation. If the combination of princess and drone can result in multiple mutations, the outcome is random. But who cares?\n\nYou can now upgrade your leftover Bees Advanced bags to Bees Expert in the last quest tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Mutatron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":509,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Sampler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic sampler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With this machine, you can extract a random trait from any bee, sapling, butterfly or flower. The bee/sapling/butterfly/flower will be destroyed in this process. Each process requires an empty gene sample and some labware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Sampler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":510,"preRequisites":[515],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Labware","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diamondware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Also known as labware. Be prepared. In order to do serious bee-work, you need stacks of diamonds. I'm not joking, stacks! Better start working on that diamond bee!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Labware","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":511,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Imprinter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic imprinter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With this powerful machine, you can inject gene samples, which allows you to alter any aspect of your bee/tree or butterfly. The gene sample (or pattern) will not be destroyed. The success rate is 100%, and one labware is consumed per injection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Imprinter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":512,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Transposer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic transposer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"DNA samples of species and/or traits are pretty valuable. You always should keep at least one of each effect/trait/species you get your hand on in a chest somewhere safe. By using this machine, you are able to copy any DNA sample, for the cost of an empty serum vial and some labware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Transposer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":513,"preRequisites":[508],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:MutatronAdv","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced mutatron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A more advanced version of the mutatron. It uses more energy to mutate a drone with a princess, but the mutation is a 100 percent success, and you can select which mutation you want to have. This machine is a must-have for high-tier bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:MutatronAdv","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":514,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSampleBlank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blank gene sample","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get the various traits from a bee, you need a lot of power, labware and an empty gene sample. You don't need a lot of those, as you can just throw them in a furnace to remove remaining DNA of traits you don't need or want. \n\nIn the meantime you can start working with the Genetics mod, since we all know Gendustry is too easy... Genetics is used for bees, trees, and Botany flowers so it gets its own quest tab. Gendustry is really good for bees, but will require top tier equipment."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSampleBlank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":515,"preRequisites":[514],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneTemplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic template","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Templates are used to combine multiple gene samples into one large batch. It can be used to apply multiple traits at once, but you can also replicate a bee from liquid DNA and protein, if you manage to fill all 13 traits in one template. These templates can also be copied, just like the small samples."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneTemplate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":516,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Extractor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A rather cruel disposal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably will end up with a lot of excess drones while doing bees. (Or saplings if you do trees). Instead of throwing them away, you could also turn them into... Something useful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Extractor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":517,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Liquifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arnie's blender","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They say, breakfast is the most important meal of the day. This machine turns raw meat into liquid protein, which is used to create bees from scratch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Liquifier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":518,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Replicator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"And there shall be light","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Out of princesses to inject traits to? Too lazy to find hives and get more bees? Not a problem. With this nifty little device, you can use a ton of power, liquid DNA and protein to create any bee you wish to have. The only drawback is: All bees will be ignoble, which means they will die after a random amount of cycles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Replicator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":519,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDoctoral","chromosome":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Temperature 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":520,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Humidity 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":7},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":521,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Fertility 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bees bees everywhere!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.fertilityMaximum","chromosome":3},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":522,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Draconic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDraconic","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":523,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Doctoral","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDoctoral","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":524,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Speed Fastest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Buzz buzz buzz, working hard and really buzzing!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.speedFastest","chromosome":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":525,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesSilicon","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":526,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Rain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Beekeeping in the rain! Make sure to keep your GT machines covered!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":527,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Day and Night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bee working day and night, all night and all day long!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":528,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Cave","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bees with Cave can work in housing that is covered - by more housing!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":529,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32680,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fifth item you'll need a lot of. For the microwave, the scanner, the precision laser engraver, etc."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32680,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":530,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32690,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sixth item you'll need a lot of. For the scanner and the seismic prospector."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32690,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":531,"preRequisites":[717,97,529,530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lScanning bees, crops and moooooore!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Automate your bee, sapling, or crop scanning. Later on, this machine gets very useful for scanning high tier machine parts for the assembly line research data or to fill data orbs with data for the UU matter production. Data sticks with raw prospecting data need a scanner too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":532,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiesel, oil or maybe creosote?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably collected a ton of creosote and maybe even have built your first ELECTRIC blast furnace. Creosote will be a good fuel for the moment. So try to build a few of the combustion generators and use them besides steam as a secondary power source. Small generators will only use fuel if there is EU demand.\n\nTo extract the creosote from your coke ovens, you can use buckets or cells to do it by hand, or the TiCon faucet into GT fluid pipes, or an electric pump cover from You're Going to Hate This #2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30709,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":533,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lHydrogen, methane or some farts... (Natural gas) ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some centrifugal processes leave gases behind like hydrogen or methane. Centrifuge some brown and yellow limonite to get hydrogen or dump your unused food in a centrifuge to get methane gas. Wood will even give 60 mb per log. Maybe it's time to build a forestry tree farm. Or you can start refining oil into refinery gas or naphtha to burn.\n\nGas turbines produce half the pollution of combusion generators, but their fuels are generally not as efficient. Choice is up to you which power source you use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1115,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30742,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":534,"preRequisites":[65,69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:dreamcraft_Pollution","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lPollution what....?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are running your bricked blast furnace for a long time you will sometimes get headaches, nausea and other weird effects. Yes this is pollution... from making so much steel. If you can collect some rubber sheets, I will trade you a complete hazmat suit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":535,"preRequisites":[494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":5810,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lRedstone, early game processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you wondering how to process redstone without a macerator? Well you can mine it with a gregtech hammer and get the crushed ore. Then use with the hammer in the crafting table to get some impure redstone dust. After this, fill a cauldron with water and drop the dust in it - CTRL-Q drops a whole stack but you will need a new iron bucket as the fired clay bucket just isnt fit for the task. You will get pure redstone dust for your red alloy ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":12,"OreDict":"craftingToolHardHammer"},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:water_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":5810,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":3810,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockores","Count":10,"Damage":810,"OreDict":""}]}]},{"questID":536,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLow tier wires","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Low tier wires like red alloy and tin can be made in a crafting table. Copper wire requires an alloy smelter. So let's make a mold for the rubber plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.MoldFormPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:creamedbroccolisoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":537,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Witch)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Witches bring stitches because they are always infernal and very dangerous. Be careful since they throw potions at you."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":26,"id":"Witch","Anger":0,"ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":6323763076874975000,"Health":26,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":50486316337289,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Witch","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":538,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":391,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic ore washer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Macerating ores usually doubles the output. If you want MOOOOOOORE, craft an ore washer and wash out some rare materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":391,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":539,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":361,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lRound and round and round...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After purification of your ore dust, you can centrifuge it to get even more byproducts out of the dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":361,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":540,"preRequisites":[541],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32721,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA truly sharp saw blade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining cobalt brass and diamond dust makes a really sharp saw blade for your cutting machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31343,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":1500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32721,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chocolatemilkshakeItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":541,"preRequisites":[91],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11343,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA new alloy - Cobalt Brass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to cut diamond blocks into plates, it's time to get a new alloy 'cobalt brass'.\nFirst you need to make brass out of zinc (only found in small ores in the Overworld, in Nether Sphalerite, or as a centrifuge byproduct from tin or tetrahedrite) and copper. Mix it with aluminium and cobalt dust (can be centrifuged from various materials) to get the cobalt brass dust.\n\nNow that you have come this far, we think that you are able to look up the ores that you need by yourself with the help of NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2036,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":2301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2033,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":2343,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32222,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":542,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lWater and electricity, sounds fun and safe right?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using the power of water and electricity you can get even more out of your dusts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":543,"preRequisites":[550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lC9H8O4...NaCl...H2O...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some cetane-boosted diesel, plastic or some chemical dyes? Then it's time to craft a chemical reactor.\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":544,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":241,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCompact? Or is it?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is a compressor but that doesn't mean it is compact... \n\n§4Hint:\nIt is highly recommended to get one of these electric compressors, as the efficiency in terms of coal/steam used to compress something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":241,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":545,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":271,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§5§lSuction device... nice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I hope you are not thinking about what I am thinking you are thinking about... \n\nHint:\nIt is highly recommended to get one of these, as the efficiency in terms of coal/steam used to extracting something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":271,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":546,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:blockOil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHello Baron, how is your black gold today?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"During your travels you may have seen some of these huge oil spouts. Now it's time to go make a pump and put this black gold into tanks. Oil can be burned directly in a combustion generator or be refined for better fuels and crafting materials. \nMining pipes are needed for pumping the oil.\n\nBring a combustion generator with you to power the pump. Thanks to the advancement of technology the pumping machine can auto output on top.\n\nStacking multiple pumps makes them work faster. In that case, oil has to be removed from the bottom of the stack using a pump cover.\n\nTaller spouts have more oil! But for the LV pump, it is better to use the short spouts since it doesn't have much range. Save the taller spouts for MV pumps. \n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BuildCraft|Factory:tankBlock","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":547,"preRequisites":[546,102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lYour oil is too Crude? Refine it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Burning oil in the combustion generator is a very inefficient way of producing power. Every bucket/cell of oil only gives you 20,000 EU. Time to try and refine it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":548,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30737,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLight Sulfuric Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step is to distill your oil into light sulfuric fuel, that has a burn value of 40,000 EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30737,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":549,"preRequisites":[543,548,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLight fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By adding hydrogen to sulfuric light fuel in a chemical reactor you can produce some light fuel with the very high burn value of 320,000 EU.\n\nThe remaining hydrogen sulfide cells can be used later to produce some sulfuric acid for your TNT/iTNT or acid batteries.\n\nIn MV age you can make diesel out of light and heavy fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30740,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"irontank:obsidianTank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":550,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lH like Hydrogen... rest of the alphabet is too complicated...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuge some brown or yellow limonite dust to get some hydrogen, or use an Electrolyser with some water to produce it in a fluid form."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:mushroom_stew","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":551,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_sulfuricheavy_fuel","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHeavy Sulfuric fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second step is to distill your oil into heavy sulfuric fuel, that has a burn value of 40,000 EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30738,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":552,"preRequisites":[551,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_heavy_fuel","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHeavy fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By adding hydrogen to sulfuric heavy fuel in a chemical reactor you can produce some heavy fuel with the burn value of 200,000 EU.\n\nThe remaining hydrogen sulfide cells can be used later to produce some sulfuric acid for your TNT/iTNT or acid batteries.\n\nIn MV age you can make diesel out of heavy and light fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30741,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":553,"preRequisites":[751,549,552],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:blockFuel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiesel fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing your light and heavy fuel together gives you some diesel. You need the MV mixer for it. It burns very well in the combustion generator with a burn value of 480,000 EU per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30708,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":554,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":581,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHey DJ, Mix it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The mixer is a very useful device. You can mix all kinds of fluids and items. Useful to prevent dust from falling to the ground when crafting - most mixer recipes give a slight boost over hand crafting!\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":581,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":555,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"hydrogen","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lN like nitrogen... Hide, alphabet strikes again!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can get some nitrogen by centrifuging... air. This process takes a long time, especially at the LV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30012,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":556,"preRequisites":[555,543,80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30714,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGlyceryl trini...... what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Kids, today we will make some glyceryl trinitrate (aka Nitroglycerin) with some glycerol.\n - Chemistry 101"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30629,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30714,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":557,"preRequisites":[549,841],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:pattern.fluid","Count":1,"tag":{"fluidID":"nitrofuel"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNITRO! (Cetane-boosted diesel)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"720,000 EU per cell. Yes, yes, this is very good! Make some cetane-boosted diesel fuel and power your Combustion Engine with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30709,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":558,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Backpack:backpack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWhat can I put all these items in?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make your first steel you're able to craft the small backpack. In this bag you can put a lot of the stuff you want to carry around. With 36 slots it's a bit bigger than a small chest. Later you can make it even larger. You can put one on your back and set it to automatically pick up stuff. \n\n§4Check out the \"Backpacks\" control configuration \"Open Backpacks\" and remap it to a new key. \n\n§4The maximum you can have in your inventory at once is 4."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28305,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":3,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Backpack:backpack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:paintbrush","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32414,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32415,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32416,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32417,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32419,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32418,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32420,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32421,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32422,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32423,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32424,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32425,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32426,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32427,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32428,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32429,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":559,"preRequisites":[560],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLow pressure boiler tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The low pressure boiler tank is the easiest way to store steam. The firebox needs this tank on top to produce steam. The bigger the boiler the slower it heats up, but it will produce more steam when heated up.\n\nExtract steam by attaching a pipe to the boiler tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":18032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.SteelBars","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"Railcraft:fuel.coke","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":560,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lRailcraft steam power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As an alternative way to make steam you can use the railcraft boilers. They require at least one firebox.\nMore than one size is possible: (1x1 mentioned above) 2x2 and 3x3. \n\nProvide water and coal to the firebox. Make sure you don't run out of water or...BOOM.\n\nEach boiler needs 1, 2 or 3 layers of tanks on top, equal to the size (1x1x1, 2x2x2, or 3x3x3)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":1,"Damage":13,"OreDict":""},{"id":"minecraft:brick_block","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"harvestcraft:figjellysandwichItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":561,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLiquid fuelled firebox","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cresosote oil into steam! After you make your first steel you are able to craft a liquid fueled firebox.\nDiesel, ethanol, creosote and biodiesel all work well here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SteelBars","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":1,"Damage":13,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30712,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":562,"preRequisites":[561],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHigh pressure boiler tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make steel you are able to craft a high pressure boiler tank. The upgraded version increases the temperature and produces more steam than the low pressure version. It will take longer to warm up, so make sure to keep it well fed!\n\nExtract steam by attaching a pipe to the boiler tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":18305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:meatfeastpizzaItem","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32240,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":563,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§3§lBookshelves...? Ah forestry... Multiblock farms!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The bookshelf can only be made with wood planks, which are made in a compressor. Perhaps someone thinks this is a bit crazy...\n\n§4This will unlock the Forestry Worktable, a great tool for keeping your crafting from driving you insane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":564,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Forestry Basic > Advanced","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic foresters lootbags give a better one = Advanced Foresters Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":20,"OreDict":""}]}]},{"questID":565,"preRequisites":[595,594,593],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Forestry Advanced > Expert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three advanced foresters lootbags give a better one = Expert Foresters Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":21,"OreDict":""}]}]},{"questID":566,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Space Invaders Moon > Space Invaders Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three space invaders Moon lootbags give a better one = Space Invaders Mars Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""}]}]},{"questID":567,"preRequisites":[566],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Space Invaders Mars > Space Invaders Asteroids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three space invaders Mars lootbags give a better one = Space Invaders Asteroids Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""}]}]},{"questID":568,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Novice > Adept","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three novice lootbags give a better one = Adept Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":569,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Adept > Master","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three adept lootbags give a better one = Master Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":570,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Master > Grandmaster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three master lootbags give a better one = Grandmaster Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]}]},{"questID":571,"preRequisites":[307],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Grandmaster > Grandmaster Unique","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sixteen grandmaster lootbags give a better one = Grandmaster Unique Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":16,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]}]},{"questID":572,"preRequisites":[161],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"BM Novice > BM Adept","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three BM novice lootbags give a better one = BM Adept Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]}]},{"questID":573,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"BM Adept > BM Master","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three BM adept lootbags give a better one = BM Master Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]}]},{"questID":574,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Bee Basic > Advanced","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic bee lootbags give a better one = Advanced Bee Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":25,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":575,"preRequisites":[509,508,2089],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"OR","name":"Bee Advanced > Expert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three advanced bee lootbags give a better one = Expert Bee Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":576,"preRequisites":[586,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Working table 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A manual crafting table which remembers the last nine used recipes. Left click one of the recipes shown in the right-hand side to automatically fill in the crafting grid. Right-click to lock a memorized recipe and prevent a newer recipe from bumping it off.\n\nResources need to go into the internal inventory. The crafting matrix is only a visual representation.\n\nThe Forestry worktable is super-useful, and can reduce the tedium of many common jobs because you can click-drag across a row of items, and it will use tools in its own inventory to continue crafting. Specifically:\nMaking torches with creosote - just drag-click all your buckets into the worktable\nMaking fresh water for Pam's - Same as above\nMaking fresh milk for Pam's - Same as above\nMaking clay bricks - a wooden form is automatically reused\nMaking concrete - not tested, but would probably make this easier too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11304,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"forestry.fruitApple","UID0":"forestry.fruitApple","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":577,"preRequisites":[576,73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sturdyMachine","Count":2,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forestry core block","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This sturdy casing is the basis for almost all machines in Forestry, essentially being the forestry equivalent of a machine casing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":18300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:sturdyMachine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"minecraft:bookshelf","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":578,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The carpenter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The carpenter is similar to an automatic crafting table. It has an item input slot and a storage slot for the recipes. Some recipes need an additional fluid like water, creosote, honey or molten redstone. With the carpenter you can make farmblocks, woven backpacks, bee and tree analysers and many more.\n\nThe carpenter needs power to work. You can use a GT cable or a battery box to connect to the machine or make some forestry, railcraft or buildcraft RF engines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17310,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32650,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20305,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":10,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30712,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":579,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":511,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMolten redstone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You heard that the carpenter needs some molten redstone for a few recipes. \nConverting redstone dust into a fluid requires a fluid extractor. Let's build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":511,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:appleciderItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:frenchtoastItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":580,"preRequisites":[577,585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thermionic fabricator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The thermionic fabricator is used to craft electron tubes and stained glass. It requires redstone flux (RF) energy to run. It is your first machine made in the carpenter. Once warmed up, it needs to maintain a certain heat level to operate. The amount of power supplied will determine how much heat will be generated. If you do not supply enough power to maintain the current temperature it will slowly drop. It will continuously draw power, so disconnect it if you don't need it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:factory2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":8530,"OreDict":""},{"id":"minecraft:dye","Count":16,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":581,"preRequisites":[580,588],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Series of Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you can craft your first farm block you need apatite tubes. Make some apatite rods first with a lathe, then use a forge hammer to join them into long apatite rods. You need golden bolts and a red alloy plate.\nPut some glass or sand into your thermionic fabricator and make your first tubes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22530,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":582,"preRequisites":[578,581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first multiblock farm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The smallest farm you can build requires 36 farm blocks (3x4x3 - the largest is 5x4x5 or 100 farm blocks). For water input you need a valve, items go through the hatches, and to supply the farm with energy you need a gearbox. With the farm control block you can control which fields of your farm work by applying a redstone signal. Remember to put creosote in the carpenter when crafting the different farm blocks. If you need the farm to work faster, just add more gearboxes.\nYou can use Orchard mode to collect Pam foods and Natura products. You can even mix and match modes on the same farm - logging and collecting fruit from trees, for example."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stonebrick","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":36,"Damage":18035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":27305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":9,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":36,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11035,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":583,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced. Farms can work without it. But if you want to configure your farm you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32700,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":584,"preRequisites":[583],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:solderingIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Change your farm circuit configuration","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The (forestry) soldering iron is a tool used for attaching electron tubes to circuit boards in order to manipulate how an electrical engine works or to program multiblock farms. As well as upgrading the squeezer or centrifuge.\nOnce electron tubes have been attached to a circuit board they cannot be removed, only replaced. The circuit board is automatically crafted as soon as the basic recipe requirements are met, so it's best practice to first place your electron tubes and then add the circuit board.\n\nThe soldering iron can also be used to remove the circuit board from electrical engines, multiblock farms, squeezers and centrifuges by opening the machine's GUI and left clicking with the soldering iron on the circuit board slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":26305,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:solderingIron","Count":1,"tag":{"Slots":{"1":""},"UID":109547956},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":585,"preRequisites":[578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemRecipePart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heating coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your thermionic fabricator needs heating coils to function. So combine some magnetized (requires polariser) steel rods with some copper wire and make some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23355,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5112,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":586,"preRequisites":[472],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Welcome to forestry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some automated farms or work with bee and tree breeding? Want the Forestry Worktable for easy recipe access? Then this is the right chapter for you.\n\nForestry farms in Orchard mode will even fertilize, water and harvest IC2 crops on cropsticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:honeyedSlice","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":587,"preRequisites":[96],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23355,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnetize your rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnetic steel rods need a polariser to craft. Make a few for your coils.\nMv Motors need the Polariser so better build them soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23355,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:lever","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":588,"preRequisites":[580],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8530,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finding Apatite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's now time to search for some ores. Apatite is the most important material in Forestry. You can make fertilizer, farm blocks and many other things. The vein is found between Y level 40-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":530,"OreDict":"oreApatite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":534,"OreDict":"orePhosphorite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":607,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"harvestcraft:frenchtoastItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32224,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":589,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm hatch (Item pipe connectivity)\n\nYou can supply and extract items from the farm by using farm hatches that are connected to pipe systems. \n\nSupplying items\nThe farm hatch is clever enough to know which item goes where. If an item isn't appropriate for the farm's configuration, the hatch will simply reject it.\n\nExtracting items\nAny item that is harvested by the Multifarm is automatically ejected by the farm hatches into inventories or pipes. Pipes can be used to extract from other sides."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32630,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":590,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm valve (Hydration)\n\nSome farms require water for hydration purposes. Although you can do it manually by supplying it through liquid containers (such as cans), you can also automate the process by using farm valves.\n\nBy connecting fluid pipes into the farm valve and supplying water, you can automatically fill the farm's water tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28880,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":591,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Control block","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm control\n\nYou can control which fields of your farm work by applying a redstone signal to the control block. You can either shut down the whole farm by applying a redstone signal from top or below or you can disable a specific side by applying a redstone signal on the matching side of the control block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":592,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Gearbox","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm gearbox (Power)\nTo power your farm and have it automatically harvest crops, you will need at least one farm gearbox.\n\nFarm operations can be hastened with additional gearboxes.\n\nEach farm gearbox requires power. You can use either RF or EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":593,"preRequisites":[583,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":1},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enhanced farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the basic one. The farms can work without them. However, if you want to configure your farm you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29300,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":1},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":594,"preRequisites":[593,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":2},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refined farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the enhanced one. The farms can work without them. If you want to configure your farm even more you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":2},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":595,"preRequisites":[594,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":3},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Intricate farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the refined one. The farms will work without them, but if you want to configure your farm even more you will need one of them.\n\nHint: The circuit assembler recipe is cheaper than the carpenter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":3},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32079,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":35,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":35,"Damage":0,"OreDict":""}]}]},{"questID":596,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:pickaxeHead","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§k§l§1§2§3§lUpgrade of the upgrade of the...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's upgrade time. Unlock redstone and obsidian level for your different tools.\n\nRemember, a fresh tool head starts at one level below. So you'll need to use it enough to level it up before you can mine at the proper level. Go strip-mine a mountain or something."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:shovelHead","Count":2,"Damage":16,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":2,"Damage":16,"OreDict":""},{"id":"TConstruct:swordBlade","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:toolRod","Count":1,"Damage":31,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":31,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":8,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":597,"preRequisites":[496,105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":1840,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lTetrahedrite, stibnite and copper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why you need tetrahedrite or stibnite. Well, antimony can be centrifuged out of it which is very useful for batteries in the LV Age.\nThe veins can be found between Y level 80-120."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1840,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1945,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1035,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:carrotsoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2089,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":598,"preRequisites":[597],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2058,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAntimony","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The most efficient way to get antimony for batteries is to centrifuge stibnite dust, the second most efficient way is to use tetrahedrite dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2058,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:food","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":599,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":381,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThermal centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A machine to get different byproducts out of your crushed and purified ore dust. This machine becomes very useful when you have reactors and want to recycle your depleted fuel rods. It's usefull for tiny piles of Gallium out of Zinc or Sphalerite Ore for your Diodes needed in good circuits.\nIf you can't produce the 2A of LV power for this machine right now, wait until you get to MV and use transformers to power an LV version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":381,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":600,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hunger, no more","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The hunger is constantly following you, consuming you, never letting you rest. The world around you is full of nourishing fruits, vegetables and crafted meals. Use them to curb your insatiable hunger."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:leafygarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:mushroomgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:stalkgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:textilegarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:tropicalgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestthenether:netherGarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:groundgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:berrygarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:desertgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:grassgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:gourdgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:herbgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:watergarden","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"harvestcraft:firmtofuItem","Count":128,"Damage":0,"OreDict":""},{"id":"harvestcraft:silkentofuItem","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"harvestcraft:delightedmealItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:rainbowcurryItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":601,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:builderswand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Building made easy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing blocks by hand can be tedious. Wouldn't it be nice to be able to place blocks like \"Another 9 here\"? Well, good news. Get yourself some of the various building blocks, and I shall reward you with something nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"chisel:rebel","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:laboratoryblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:holystone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:grimstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:hexPlating","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:fantasyblock2","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:fantasyblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:factoryblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:concrete","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:technical","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:tyrian","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:waterstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:voidstone2","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:templeblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:valentines","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:voidstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:warningSign","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"chisel:diamond_block","Count":1,"Damage":12,"OreDict":""},{"id":"chisel:emerald_block","Count":1,"Damage":5,"OreDict":""},{"id":"chisel:lapis_block","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:redstone_block","Count":1,"Damage":9,"OreDict":""},{"id":"chisel:gold_block","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:builderswand","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":602,"preRequisites":[915],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spatial distortions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You detected a weird disturbance in the air around an enderman, I suggest you try to steal some of their pearls and research them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_pearl","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":603,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_chest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dimensional chest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've heard rumors, that the endermen had built laboratories in the End. To invent new machines and weapons in order to attack the Overworld. One of their inventions is a chest, which is somehow linked to all instances of itself. Go and try to find one of those."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":604,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"SIMPLE","storedEnergyRF":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lRF Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Basic Capacitors are RF batteries which can store the RF power you generate. You can put many blocks together to enlarge your total battery capacity - they will merge into one battery.\n\nYou can also change the mode of each face using your wire cutters instead of the GUI. One option is a nice display of input and output RF, but it has to be taller than it is wide.\n\nThese are great for interfacing with RF machines. GT wires will convert to RF, but they send a full amp packet no matter what. Enderio machines properly accept it, but others like Genetics do not and waste most of the packet.\n "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":4,"tag":{"type":"SIMPLE","storedEnergyRF":0},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":605,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slay the Eyes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find and kill Ender-Eyes, guarding the Defence Towers"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.EnderEye","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":606,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:enderman_head","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Ender Guardians","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well if you decided to grind then do it... Kill some of the guardians."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.EnderGuardian","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.Endermage","subtypes":1},{"ignoreNBT":1,"index":2,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.AngryEnderman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":607,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slay the Dragon. (Again)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're bored, you can resurrect the dragon. Or, you could find a chaos dragon, if you dare. Anyway, kill one of those, and you'll be well rewarded."}},"tasks":[{"ignoreNBT":0,"index":0,"targetNBT":{"ForgeData":{},"Initialized":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":200,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":200,"id":"DraconicEvolution.EnderDragon","Motion":[0,0,0],"Leashed":0,"AttackDamage":0,"UUIDLeast":-3850102294886759000,"Health":200,"IsUber":0,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":131653853705906,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"DraconicEvolution.EnderDragon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":608,"preRequisites":[598,105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2089,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§3§5§lA lead about lead that leads to lead dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next step of making batteries is to collect some lead. Lead and galena veins can be found in the Twilight Forest at y levels 5 - 45."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2089,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:mixedsaladItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":609,"preRequisites":[608,598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBattery alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing antimony and lead in the alloy smelter will give you some battery alloy.\nCombine it with some tin cable and voila there is your small battery hull."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":5,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32500,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":933,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":907,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":839,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":610,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":830,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lead, galena and silver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can't find lead, galena or silver in the Overworld or the Nether. So it's time to explore the mysterious Twilight Forest a bit and find this vein at Y level 5 - 40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":830,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":89,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":54,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":611,"preRequisites":[616,617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":32000},"Damage":32511,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSingle use battery: Mercury","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury and acid batteries are single-use batteries. They are crafted fully charged but cannot be re-charged. Once their stored energy is depleted, they can be placed in an extractor to be converted back into small battery hulls.\n\nThey can be placed in the battery slot of any standard LV gregtech machine, in that case they will be depleted before the machine's internal EU storage. They can also be used in LV battery buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":32000},"Damage":32511,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30087,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":612,"preRequisites":[618,617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":18000},"Damage":32510,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSingle use battery: Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury and acid Batteries are single-use batteries. They are crafted fully charged but cannot be re-charged. Once their stored energy is depleted, they can be placed in an extractor to be converted back into small battery hulls.\n\nThey can be placed in the battery slot in any standard LV gregtech machine, in that case they will be depleted before the machine's internal EU storage. They can also be used in LV battery buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":18000},"Damage":32510,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":613,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":50000},"Damage":32519,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Sodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32519,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2017,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":614,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":75000},"Damage":32517,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Cadmium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32517,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2055,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":615,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":100000},"Damage":32518,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Lithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32518,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":616,"preRequisites":[609,494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"mercury","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMercury","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury can be centrifuged out of redstone. If you find some cinnabar ore in the redstone vein you can use that too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30087,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":8,"Damage":826,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":617,"preRequisites":[616,618],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":431,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lFluid canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fluid canner is a fundamental machine, since it is necessary to move fluids around, as well as for filling tin cells, glass bottles, buckets, and even batteries. Most cases you can use the small GT++ tanks instead.\n\nAnother interesting thing about the fluid canner is that it can be transformed into a raintank, by attaching a drain cover on its top (Any machine with a tank actually can be...)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":431,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":618,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining sulfur trioxide and water in the chemical reactor will give you sulfuric acid for your single use acid batteries. If you have made some light or heavy fuel already maybe you have some spare hydrogen sulfide. If not, you can always make sulfuric acid with some sulfur and water in the chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2022,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":619,"preRequisites":[611,612,613,614,615],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":161,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBattery buffer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Batteries can be placed directly in machines. To recharge a battery you need a battery buffer. Buffers can also power an energy network. They come in different sizes: 1, 4, 9 and 16 slots. They can draw 2A and output 1A per battery inserted - watch your wire amperage!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":171,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":620,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatRE","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lIC2 Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some recipes require IC2 batteries. Fill your small battery hull with some molten redstone and you will get your RE-Battery. Molten cells will hurt you, so be careful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:bread","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":621,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":933,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§5§lHow to get sodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A second source for sodium is glauconite ore or glauconite sand. This type of ore vein can be found at Y level 20-50."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":933,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":909,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":877,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":902,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:coleslawburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:sesameseedsItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":622,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHow to get sodium/lithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Salt ore mixes can be found in the Overworld between Y level 50-70. Salt isn't only used to get sodium, it's an important ingredient in many pam's harvestcraft food recipes.\n\n§4Hint: Lepidolite and spodumene are good sources of lithium for your batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":817,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":944,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":920,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":907,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:baconmushroomburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:saltedsunflowerseedsItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":623,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA big meteorite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best way to get rare earth is to find an applied energistics 2 meteorite and grind the blocks into dust. Maybe you completed the quest in the steam age and stored your crushed skystone somewhere? That dust can now be centrifuged into various byproducts like cadmium, neodymium, caesium, lanthanum, and yttrium.\n\n§4Hint: Redstone has rare earth as byproduct. Chalcopyrite (at HV level) and sphalherite (at LV level) have cadmium as byproduct."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyStone","Count":1024,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1024,"Damage":45,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":2891,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2055,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:beetburgerItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:calamaricookedItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":624,"preRequisites":[623,1167,1168],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":231,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBasic canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The canning machine is mainly used to fill tin cans with any kind of food (HV Tier), but it is useful for filling and emptying tin cells with other solid items than food, usually in the form of dust. It can also fill batteries with sulfur, mercury, cadmium, lithium or sodium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":231,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":625,"preRequisites":[84],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lPacking your tanks chests and barrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Packing your chests and barrels without spilling all the things (buildcraft(tm))? \nNo problem! Make a dolly and you can carry your full chests, barrels or storage drawers anywhere you want. But be warned, you will get a slowness debuff so hopefully you don't have to travel very far. Not portable buildcraft and iron tanks can moved so too without loosing fluids.\n\n§4PS Later on you can fly or make a traveller's belt to get around the debuff."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"JABBA:upgradeStructural","Count":3,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""},{"id":"StorageDrawersBop:fullDrawers1","Count":5,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":626,"preRequisites":[98,916,102,495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:moverDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPortable mob spawners..? Cool!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to move the spawners around and build some cool mob farms? That will be no problem if you get the diamond dolly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17506,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"JABBA:moverDiamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":627,"preRequisites":[631,634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:grainbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Grain bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some nice grain bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:grainbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":628,"preRequisites":[440,631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fruitbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fruit bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some tasty fruit bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fruitbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:veggiebaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":629,"preRequisites":[631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:veggiebaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Veggie bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some veggie bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:veggiebaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":630,"preRequisites":[633],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fishtrapbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some fish bait for your fish trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fishtrapbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:veggiebaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":631,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:animaltrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Animal trapping","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of hunting for cows, zombies or sheep? You can build a trap and hope some animal or monster drops will be caught by the netting inside."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:animaltrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:trapdoor","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:hamburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":632,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A fisherman's friend","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Have you ever tried to catch a fish with your bare hands? It's time to craft a fishing rod and get some fish the easy way. Cast your fishing rod in some water and wait until the bobber dips below the surface. Then reel back in your line and hopefully you caught yourself something nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":22809,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":""},{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fish","Count":5,"Damage":3,"OreDict":""},{"id":"harvestcraft:jellyfishrawItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:catfishrawItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":633,"preRequisites":[36,632],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish trapping","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fishing can be very boring. Why not to automate it with a fish trap?"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":634,"preRequisites":[7],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wheat time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to plant some wheat to make some bread or to prepare grain bait for your animal traps."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wheat","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:wheat_seeds","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":635,"preRequisites":[7,634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2881,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Floury flurry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step in making bread is to macerate your wheat into flour with a mortar or a macerator.\n\nFlour can be used in many food recipes for different pam's harvestcraft foods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2881,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Stone"}},"Damage":24,"OreDict":""},{"id":"minecraft:potato","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":636,"preRequisites":[7,637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bread","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First handmade bread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Baking your dough in a Furnace makes some tasty bread.\nYour first bread!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bread","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Steel"}},"Damage":34,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Stone"}},"Damage":24,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Aluminium","MaxDamage":12800,"SecondaryMaterial":"Aluminium"}},"Damage":46,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":637,"preRequisites":[7,635],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32559,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Do'h!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Water and flour makes a dough or two...\nDough can be used in many different food recipes from pam's harvestcraft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32559,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":8,"Damage":0,"OreDict":""},{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":638,"preRequisites":[7,636],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tasty toast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smelt your bread again and you get some toast! Give's you more nutrition points, and unlocks more culinary potential!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":639,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_sulfuricnaphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric naphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another distillate you can make out of oil is sulfuric naphtha with a burn value of 40,000 EU per cell in the gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":30736,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30001,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":640,"preRequisites":[840],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_lpg","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLPG","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuging some Butane or Propane gives you LPG with a burn value of 320,000 EU, the same as naphtha. Also it is a way to get methane and eventually epichlorohydrin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":66,"Damage":30742,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":641,"preRequisites":[639],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_naphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNaphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can process sulfuric naphtha to fluid naphtha which has a burn value of 320,000 EU in the gas turbine.\nNaphtha is also a base product for polyethylene and polycaprolactam - a great substitute for string."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":30739,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":642,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"gas_sulfuricgas","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another distillate for your gas turbine you can make out of oil is sulfuric gas with a burn value of 25,000 EU per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30734,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30012,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":643,"preRequisites":[642,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"gas_gas","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lRefinery gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Refine your gas in a chemical reactor with hydrogen gas to give it a better burn value of 160,000 EU, and maybe use it to make methane gas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30735,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30715,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":644,"preRequisites":[643],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30673,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMethane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Distilling some \"refinery gases\" gives you some methane gas. There are many more ways to get methane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":645,"preRequisites":[65,486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:hangglider","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glider wings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If for some reason you want to be able to jump down a cliff without getting the message \"Player X fell from a high place\". A great idea would be to find a way to soften your landing first. The hang glider should do that just fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":10,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenBlocks:generic","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"OpenBlocks:generic","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"OpenBlocks:hangglider","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":646,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectrotine battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The electrotine battery is exclusively used in project red machines and the jetpack.\nElectrotine is a mixture of redstone and electrum dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":6,"Damage":56,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.emptybattery","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":24,"Damage":56,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":647,"preRequisites":[645,646],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Expansion:projectred.expansion.electric_screwdriver","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Electrotine jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your glider gets you to the ground safely but it does not have any method to get up. After you researched electrotine you discovered that it is powerful enough for your first jetpack.\nA diamond chestplate surrounded with 4 electrotine batteries is powerful enough to bring you up in the air.\n\nIt does not have a hover mode so you better take your glider with you. \n\nHint: This jetpack can't fly higher than Y level 128."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.emptybattery","Count":4,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1422,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17811,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":6400,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":32,"Damage":56,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":648,"preRequisites":[647],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.drawplate","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refill your jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GREAT.... you now have an empty jetpack.\nYou need 25 electrotine dust to completely fill it.\nLet's craft an electrotine generator and a charging bench to use the power of electrotine. \nYou will very quickly discover that, while it is fast and cheap, it's empty in the blink of an eye. Despite this, it is useful in combination with the hang glider to get into the air and to get away from hairy situations."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.machine1","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.machine2","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":25,"Damage":56,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":56,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.solar_panel","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":649,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:coalJetpack","Count":1,"tag":{"jetpackData":{}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Coal steam jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your coal jetpack needs coal and water to produce steam. After a short warm-up period you can go and take it for a ride. Keep in mind you will need your glider to make a soft landing.\n\nPut your jetpack on your back and hit Shift and the adventure backpacks action-key to start it.\n\nMax flying height for these jetpacks is the Y level of 185.\n\nVertical velocity decreases linearly with height after overcoming optimal height - 135 for jetpack and 100 for copter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":2,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5130,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:coalJetpack","Count":1,"tag":{"wearableData":{},"jetpackData":{}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:fuel.coke","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5130,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":650,"preRequisites":[532],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:copterPack","Count":1,"tag":{"fuelTank":{"Empty":""},"tickCounter":3,"status":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Copter jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The copter jetpack is the first jetpack with a hover mode. It is using all kind of different fuel types in buckets. \nBuckets of creosote, lava, oil, cetane, diesel,ethanol, and fuel will work.\nEquip your jetpack and hit Shift and the adventure backpacks action-key. You can also switch between hover and normal mode.\n\nMax flying height is limited to Y level 200. \n\nVertical velocity decreases linearly with height after overcoming optimal height - 135 for jetpack and 100 for copter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5133,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32641,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":6,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5130,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:copterPack","Count":1,"tag":{"fuelTank":{"Empty":""},"tickCounter":3,"status":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BuildCraft|Energy:bucketFuel","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":3,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":651,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{"charge":30000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first electrical jetpack. You need to hit the IC2 mode-switch key to toggle between normal mode and hover mode while holding down the jump key. When descending, remember to shut off hover mode or else you'll drain your jetpack.\n\nThe only limitation is that you can't fly higher than Y level 185.\n\nFor charging on the go, you can craft a charging crystal from ic2 charging components. You have to take the backpack out of the armor slot and put it in your hotbar and activate the charger by sneak-clicking. There are better models than this one old one I don't need any more. Look in NEI.\n\nLater on GT++ Charging Packs are belts that can charge everything in your inventory including armor. Check NEI for latest recipes.\n\nFinally, the GT++ wireless charger will charge everything in your inventory, including the jetpack, from your base at long ranges. A quest is unlocked once you finish your nanosuit. Just remember when you are off world or in the Nether that your jetpack isn't charging!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorBatpack","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":6,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemBatChargeRE","Count":1,"tag":{"charge":40000},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":652,"preRequisites":[651],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorJetpack","Count":1,"tag":{"Fluid":{"FluidName":"ic2biogas","Amount":30000}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fueled jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This jetpack uses IC2 biogas and can fly up to Y level 245.\nYou can switch between hover and normal mode using the IC2 mode-switch key.\n\nYour jetpack can be (re-)fueled in the IC2 fluid canner with 30 buckets/cells worth of biogas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18306,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:reactorCoolantSix","Count":1,"Damage":1,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":6,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorJetpack","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":30,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":653,"preRequisites":[176,692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:advJetpack","Count":1,"tag":{"charge":3000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced electric jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced electric jetpack is an upgraded version of the electric jetpack.\nWhile worn in the chest armor slot and charged with EU, it allows the player to fly. It provides no armor protection, but will charge tools being used in the same manner as the advanced lappack from its 3.000.000 EU internal storage.\n\nThe advanced electric jetpack is limited to a maximum flying height of Y level 256."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17028,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1641,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GraviSuite:advJetpack","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32603,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":654,"preRequisites":[653,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:advNanoChestPlate","Count":1,"tag":{"charge":3000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced nano chestplate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining the advanced electric jetpack and nanosuit yields you the advanced nano chestplate. Now you have the protection of the chestplate combined with the freedom of movement of the jetpack."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GraviSuite:advJetpack","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoChestplate","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17316,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1644,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GraviSuite:advNanoChestPlate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32604,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":655,"preRequisites":[653,213,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:graviChestPlate","Count":1,"tag":{"charge":30000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gravi suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gravi chestplate is the ultimate quantum armor combined with a high powered jetpack. It also has hidden features that you need to discover while wearing the whole quantum armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"GraviSuite:ultimateLappack","Count":1,"Damage":27,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":26,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":3,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":2,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":6,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32088,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":22328,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32674,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32607,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27328,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"GraviSuite:graviChestPlate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32088,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32607,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":656,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.iron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lIron shields","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have been using your hide shield long enough. After you make your first tools, grab a bit of iron ore and make a nice iron shield."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":2,"Damage":2,"OreDict":""},{"id":"TConstruct:toughBinding","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:toughRod","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.iron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":52,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":657,"preRequisites":[36,450],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.stone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lStone spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your wooden spear with a stone arrowhead and iron screws to a stone spear.\nThis spear has better durability than the wooden one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27032,"OreDict":"screwIron"},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.stone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":658,"preRequisites":[657,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.iron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lIron spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your wooden spear with an iron arrowhead and two steel screws to an iron spear. \nThe iron spear has better durability than the stone variant."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27305,"OreDict":""},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.iron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":59,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":659,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiamond spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At MV Tier you can upgrade your iron spear to a diamond one. Get a diamond arrowhead, two stainless steel screws and a wooden spear.\nThis spear has superior durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartArrowHead","Count":1,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":660,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiamond shield","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your iron shield got very old. With a shield made from diamond plates you can maintain block for up to 5 seconds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartLargePlate","Count":2,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"TGregworks:tGregToolPartToughBind","Count":1,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":2,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":57,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":62,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":661,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBow, arrows and quiver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wow, your first handmade *ehm* machine made bow. You find out that you can put the bow in the mine and blade battlegears slots. Now it's time to make a quiver and maybe some arrows. \n\nTo place arrows in the quiver, put the quiver and the stack of arrows in a crafting grid. Make sure the Gameplay key Special is deconflicted. By default it is Z. When you have the bow selected, use Z to swap arrow slots in the quiver.\n\nWhile it seems like these might be worthless, these arrows do have special uses. You really want to share a cookies with friends, don't you?\n\nLet's go hunt a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"battlegear2:quiver","Count":1,"tag":{"current":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:arrow","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"battlegear2:mb.arrow","Count":10,"Damage":0,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":6,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":2,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":5,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":3,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":1,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":662,"preRequisites":[664],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic arc furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The arc furnace is an alternative to smelting stuff back into components and making wrought iron. The recipes use oxygen and 3 amperes of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":663,"preRequisites":[662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:upgradeModule","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFaster steel production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A faster alternative to steel production is to use the arc furnace and smelt the iron ingots into wrought iron ingots. Then macerate them to dust and smelt them very fast in the EBF to steel. (Some might even dare arc furnacing the dust itself...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11304,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":664,"preRequisites":[619],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":171,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV battery buffer 9 slots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your battery buffer to hold 9 batteries which allows max 9 ampere output.\nUseful for your EBF and the arc furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":181,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":665,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kitchenware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To cook some healthy food you need a few tools crafted first.\nSaucepan, \npot, \nrolling pin, \nmortar, \nmixing bowl, \nsoft mallet, \nskillet, \nknife..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:saucepanItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":46,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":""},{"id":"harvestcraft:mixingbowlItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":14,"OreDict":""},{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:firmtofuItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:flourItem","Count":16,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":666,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:boat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Row, row, row your boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You live close to the water and don't have a boat?\nYou need wooden planks, slabs and a knife to craft one. (This is also quest id 666, be careful, something is going on.)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:boat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:watergarden","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":667,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trainspotting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wooden tracks can be made without any machine. Functionally equivalent to normal rails, but with a lower maximum speed (for safety reasons).\n\nHint: You can use your wooden rails for Steve's carts farms."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":60,"Damage":0,"OreDict":"slabWood"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.tie","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:stick","Count":4,"Damage":0,"OreDict":"stickWood"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.rail","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.railbed","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"Railcraft:part.railbed","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":668,"preRequisites":[666],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rubber boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The rubber dinghy requires only a few rubber plates. Like the vanilla wooden boat, it will break and dismantle whenever it hits a surface, however instead of returning sticks and planks, it will return a damaged rubber dinghy, which can be re-crafted with two pieces of rubber back into a useable rubber dinghy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":669,"preRequisites":[673,672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inflatable boot","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I meant to say boat... The inflatable boat is the first boat that doesn't break on impact with a solid block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCarbonMesh","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":670,"preRequisites":[673,672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon fiber boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike all other boats, this amazing carbon fiber canoe is COMPLETELY INDESTRUCTIBLE!* This means that you can smash it into as many beaches, lily pads and alligators as you like, the carbon fiber canoe won't take a scratch!\n\nWarning: We are not held responsible for any damage caused by riding the carbon fiber canoe into a lava lake or the Void.\n\n*Therefore, warranty is NOT included."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":671,"preRequisites":[669,670],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Electric boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The electric boat works mostly like a vanilla boat, chugging through the water at a decent pace. It will hopefully drop itself once you crash, which is slightly nicer than the usual sticks. That's all well and good, but what if we utilize the electric engine? Wearing an energy storage device in your chestplate slot, like a batpack or energypack, will cause the boat to drain energy from it and propel you forward at supersonic speed! Doing this will consume about 100 EU per block traveled, so even a decent batpack won't last long!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ElectricBoatHull","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""},{"id":"minecraft:waterlily","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":672,"preRequisites":[668],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.ExtruderShapeBoat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boat shape?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Really? Yes for the more advanced boats you need a new shape form.\nYou need to make an Extruder first to progress further."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ShapeBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ExtruderShapeBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":673,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":281,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV extruder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The extruder is not very useful in the LV age. But it will extrude your next tier of boat, make rubber sheets more efficiently, get you extra fluid cells, or make some Tinkers Construct tool parts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":281,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":674,"preRequisites":[675,676],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.slow.junction"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wooden rail variants","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wooden junction, wye and switch tracks need an assembling machine to craft. They allow you to join and switch to tracks going to different locations.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.junction"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.switch"},"Damage":19986,"OreDict":""},{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.wye"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"Railcraft:part.railbed","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":675,"preRequisites":[667,76,48],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:signal","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Switch lever","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The switch lever is the manual version of the switch motor, requiring a player to operate it instead of a redstone signal. \nIt is used in various signaling systems, mainly to change the way switch tracks and wye tracks work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:signal","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:part.rail","Count":16,"Damage":2,"OreDict":""},{"id":"Railcraft:part.rail","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":676,"preRequisites":[675],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:tool.crowbar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crowbar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The crowbar comes in a Railcraft and a gregtech variant. It is used to manipulate machines from railcraft, remove plates and any other covers (pumps, conveyor belts, etc.) from gregtech pipes and machines as well as breaking certain objects faster, such as tracks. This tool is also used to access certain inventories from Railcraft.\nHold a crowbar and shift + right click to attach carts. Click the starting cart then continue to click to add more carts to the link. Carts will act slower the more connections are made.\n\nThe crowbar can be used as a weapon, though it costs twice as much durability on attack (just like any other non weapon tool...)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:tool.crowbar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":677,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Minecart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you craft your first cart the journey can begin...\nWell, not really. You will need some kind of tracks first."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23032,"OreDict":"stickAnyIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28032,"OreDict":"ringAnyIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17032,"OreDict":"plateAnyIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""},{"id":"Railcraft:track","Count":8,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":678,"preRequisites":[634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Fast Food > Slow Food","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three fast food lootbags give a better one = Slow Food Lootbag. (Since when is slow food better?)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":679,"preRequisites":[638,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slow Food > Haute Cuisine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three slow food lootbags give a better one = Haute Cuisine Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""}]}]},{"questID":680,"preRequisites":[679],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Haute Cuisine > Dessert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Six haute cuisine lootbags give a better one = Dessert Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":6,"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":31,"OreDict":""}]}]},{"questID":681,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Transportation Class 3 > Transportation Class 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three transportation class 3 lootbags give a better one = Transportation Class 2 Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":32,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]}]},{"questID":682,"preRequisites":[681],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Transportation Class 2 > Transportation Class 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three transportation class 2 Lootbags give a better one = Transportation Class 1 Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":34,"OreDict":""}]}]},{"questID":683,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:chestplateMud","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wet dirt armor?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't have any armor, \"mud armor\" is better than nothing. Mud can be found in some wet biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mudball","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"BiomesOPlenty:helmetMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:chestplateMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:leggingsMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:bootsMud","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:mudball","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":684,"preRequisites":[444],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:chestplateWood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wooden armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you can't find mud you can make very poor armor out of wood. Cutting down a few trees to make a set should do. You will need a soft mallet too, so save a few logs for that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":24,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:helmetWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:chestplateWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:leggingsWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:bootsWood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:mudball","Count":24,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":685,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron armor is much better than the leather armor. Especially when you have to go outside during the night."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:iron_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":3}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":686,"preRequisites":[42],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Leather armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Killing some cows will give you enough leather to craft a complete set of leather armor. \n\nHint: You are able to dye this armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:leather_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:dye","Count":8,"Damage":0,"OreDict":"dyeBlack"},{"id":"minecraft:dye","Count":8,"Damage":1,"OreDict":"dyeRed"},{"id":"minecraft:dye","Count":8,"Damage":2,"OreDict":"dyeGreen"},{"id":"minecraft:dye","Count":8,"Damage":3,"OreDict":"dyeBrown"},{"id":"minecraft:dye","Count":8,"Damage":4,"OreDict":"dyeBlue"},{"id":"minecraft:dye","Count":8,"Damage":5,"OreDict":"dyePurple"},{"id":"minecraft:dye","Count":8,"Damage":6,"OreDict":"dyeCyan"},{"id":"minecraft:dye","Count":8,"Damage":7,"OreDict":"dyeLightGray"},{"id":"minecraft:dye","Count":8,"Damage":8,"OreDict":"dyeGray"},{"id":"minecraft:dye","Count":8,"Damage":9,"OreDict":"dyePink"},{"id":"minecraft:dye","Count":8,"Damage":10,"OreDict":"dyeLime"},{"id":"minecraft:dye","Count":8,"Damage":11,"OreDict":"dyeYellow"},{"id":"minecraft:dye","Count":8,"Damage":12,"OreDict":"dyeLightBlue"},{"id":"minecraft:dye","Count":8,"Damage":13,"OreDict":"dyeMagenta"},{"id":"minecraft:dye","Count":8,"Damage":14,"OreDict":"dyeOrange"},{"id":"minecraft:dye","Count":8,"Damage":15,"OreDict":"dyeWhite"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":687,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorBronzeChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bronze armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bronze armor has the same abilities as iron armor. Same durability, same protection and same enchantment capability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorBronzeHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeLegs","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":688,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Nice to have\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gold armor is a \"nice to have\" armor. The durability is very low but you look expensive when you wear it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:golden_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:golden_apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:golden_apple","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":689,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Oh shiny\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond armor is the best armor in Vanilla Minecraft, but over here there are much better armors available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:diamond_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:diamondApple","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":29500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":690,"preRequisites":[685,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:chainmail_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not really better but fancy. The chain mail armor is made out of steel rings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":28305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:chainmail_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":5,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":691,"preRequisites":[685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor 2.5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The steel armor has more durability than the iron/bronze or chainmail armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:armor.steel.helmet","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.legs","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":1}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":4}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":692,"preRequisites":[685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Composite vest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining the strength of advanced alloy plates with the steel chestplate makes your vest very hard. Now you have double the durability and increased armor points by 1.5."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartAlloy","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":18,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":693,"preRequisites":[35,38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFallen from the sky","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are big meteors everywhere and you are wondering why you need to mine them now?\nSkystone is a good source of rare earth metals in the LV age. \nInside the meteor you can find a skystone chest containing some processor press plates. Save them for later, as they are really important. Plus the chest is nice, and can be placed underneath blocks and still opened.\n\nHint: If your all your surface meteors have been raided, put some skystone in your orefinder to find underground ones. Often there is a second meteor right next to the one on the surface!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyStone","Count":256,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:tile.BlockSkyChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":35}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":694,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:anvil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOne Anvil... Better make that two!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your brand-new Compressor you are able to make some metal blocks for your new anvil. Better craft two anvils, one will be required for the forge hammer.\n\n§4With the anvil you can repair, rename and enchant armor and tools.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_block","Count":10,"Damage":0,"OreDict":"blockIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":"screwAnyIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:anvil","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":695,"preRequisites":[74,35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§o§1§2§3§r§r§r§r§r§r§3§4§r§o§7§7§8§9§9§5§3§1§0§r§o§m§k§c§e§l§r§1§1§r§6§lAutomation tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to automate your smeltery because you are planning to make stacks of glass blocks? \nNo problem, craft a large bronze pipe and place it under the faucet. Now the molten fluid will flow inside the pipe. Under or next to the pipe you have to place the casting basins or tables.\nA hopper and a chest underneath would auto-output products. NOTE: Faucets will output precisely 144L each activation if you toggle it off immediately. That's going to have some uses later on..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31032,"OreDict":"gearIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:hopper","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:GlassBlock","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":696,"preRequisites":[695,479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:comparator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAutomation tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want a better automation than using pipes? Sure, craft a comparator and link it with redstone dust placed on the ground. The redstone needs to be adjacent to the faucet to activate the crafting process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:comparator","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone_torch","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":697,"preRequisites":[76,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":13305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§l2x steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steel production is so slow. If you got enough bricks and clay, build a second BBF. Build it attached to the first one, so they can share a wall and you will save some bricks, clay and concrete."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":24,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":698,"preRequisites":[697],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":15305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§l4x steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not even two BBFs are fast enough...Can you figure out how to save the most bricks making 4?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":40,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":699,"preRequisites":[91,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWhy one coke oven when you can have ten?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your bricked blast furnace uses coal like hell and your steam boiler too? Well it's time to make more coke ovens and automate them a bit. Wooden fluid pipes and tin item pipes will help you reach your goal.\n\nSearch NEI for a more efficient way to make coke oven bricks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":260,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":11,"Damage":32630,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":32610,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":5590,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":5101,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:cube","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"JABBA:barrel","Count":10,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeCore","Count":9,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":100,"Damage":0,"OreDict":""}]}]},{"questID":700,"preRequisites":[701],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:EldritchOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"How dark can you go?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Seriously, how dark can one be? You are sure the face in that crystal was nothing but imagination..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:EldritchOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":701,"preRequisites":[706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:transcendentBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ascended","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel empowered, light, almost like a ghost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:transcendentBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":702,"preRequisites":[703,928],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":27,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"1023 Buckets of blood in one slate! How much more I can store, oh I wish I would know. Then I add one and check if it works. 1024 buckets of blood in one slate! ... ..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":2,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":703,"preRequisites":[714],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powerful shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The demons summoned are rather strong, but their souls contain immense power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":20,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":20,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":704,"preRequisites":[421,927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:demonicSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tier 4 slates: Getting close."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:demonicSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":705,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:watering_can","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAccelerated plant growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plants grow very slowly, you might've discovered that by now. So why you don't counter that? A watering can will come in handy very soon."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"ExtraUtilities:watering_can","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:supremepizzaItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":706,"preRequisites":[702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:dawnScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ethereal chalk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Top tier chalk, for fancy wall paintings?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:dawnScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":707,"preRequisites":[702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Archmage orb. Let them come!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 5 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":708,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:masterBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Master orb: Getting close","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 4 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:masterBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":709,"preRequisites":[708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:duskScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Elemental chalk II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enhanced elemental chalk, to write \"darker\" runes than you're used to..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:duskScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":710,"preRequisites":[708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will want both runes. Rune of superior capacity to increase the storage of your blood altar, and rune of the orb. Later it is required if you want to advance to higher levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":711,"preRequisites":[707],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final frontier: There are not many runes available. The acceleration rune allows you to speed up the interaction with external tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":712,"preRequisites":[709],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More powerful rituals require dusk runes. With your new dusk chalk, you can enhance your ritual diviner to place those. Allowing you to perform a lot more rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":713,"preRequisites":[706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last rune so far, used for the most powerful rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":2,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":714,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"magicales","capacity":16000}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Convocation of the damned","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to open a portal to the demons we're using all the time. What could possibly go wrong? (It is recommended to do this ritual on a planet, as the demon city will spread quite a bit...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"magicales","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"potentia","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"incendium","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"terrae","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"tenebrae","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"sanctus","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"aether","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"aquasalus","capacity":16000}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:activationCrystal","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":715,"preRequisites":[703],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Imbued spell upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With these new shards you are able to craft the most powerful spell components. Maybe it's time to upgrade your mining spell?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":8,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":716,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFind some Certus Quartz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nether is full of different kinds of quartz. For the emitter and the sensor you will need to find some certus quartz."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":8516,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":5,"Damage":32107,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:glowstone_dust","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":2,"Damage":0,"OreDict":""},{"id":"Natura:barleyFood","Count":3,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":717,"preRequisites":[748,747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§5§lGood Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits are an improvement on basic circuits. They are a component of all MV gregtech machines. Be sure you build the electric blast furnace first, so you can process some aluminium dust into ingots.\n\n§4This will also open the Project Red tab, one of the early automation options."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":12,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32702,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32119,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32102,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":718,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockCrop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMoron's Manual to Fecund Farms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you ever wanted to know how crop breeding works you are in the right place. Get some crops (the sticks) and some seeds from farming with a hoe or mattock. You can also place some plants and berries directly on crop sticks. Good plants to start with are flowers, wheat, cactus and sugarcane. \n\nMake a plot of farmland with your tool and place water in the middle. For now, make 3x1 plots, separated by a row of dirt or cobble. You want to be able to see the center of each column of 3x1 plots all at once, like this:\nFFFdddFFF\ndddFFFddd\nFFFdddFFF\ndddFFFddd\nFFFdWdFFF\ndddFFFddd\nFFFdddFFF\ndddFFFddd \nFFFdddFFF\nNow place crop sticks in each end of the 3x1 plot. Then place the seeds on the sticks and wait a bit.\n\nWhen they are almost fully grown you can put double crop sticks in the center spots by using crop sticks on already placed crop sticks. This center area can now grow new crops, even new species.\n\nWith some luck you might get a new unknown seed which can be scanned later.\n\nWeeds need to be removed with a trowel or spade otherwise your field will become overgrown by them.\n\nUsing 3x1 plots is easy and not much work. Check them every 5-10 minutes to remove weeds and gather new seeds. If you forget, you only lose one or two seeds. \n\nIf you find a really nice seed, you can do 3x3 or 5x5 plots with the nice seed in the middle and others next to it for crossing. But this requires more babysitting since weeds could destroy the whole field.\n\nDon't leave new crops in these intensive fields. Pull them out and hopefully get a seedbag. Put low stat seeds in production fields that don't require babysitting. Keep the high stat seeds for more crossing. \n\nCrossing happens when 2 or more almost mature crops are next to a double cropstick. There is a 90 percent change of getting the same species as the parents. The rest of the time will be a mutation. More details in the IC2 cropnalyzer quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wheat_seeds","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:reeds","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":16,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":719,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"potato","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First Breeding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"New plants have grown on your crop sticks. You can harvest the crop by right clicking it.\n\nLeft clicking with a seed bag will destroy the plant and replace it with the seedbag, so be careful. Collect 8 seeds of any kind.\n\nTo unlock the next quest, you will need the LV scanner.\n\nIf you haven't already, go back to Steam and build some Filing Cabinets. They make storing and moving large quantities of seeds a breeze. Plus they will properly sort the seeds based on name. To find a specific seed, type its name in the NEI search bar, and double click the bar so it highlights yellow. Now you can look through the Filing Cabinet and find the exact seedbag you want."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":8,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":720,"preRequisites":[724,531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weeds, weeds, and more weeds. You get so many of them while cross breeding. \nNeed some biogas cells for your power production in exchange? Or maybe some glowstone to light up your fields?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemWeed","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":128,"Damage":7,"OreDict":""},{"id":"minecraft:glowstone","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":721,"preRequisites":[531,719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:N Crops","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unknown seeds no more","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have a lot of unknown seeds already. Use your scanner to scan all the seeds.\n \nSeeds can be planted again to breed better and more resilient crops.\n\nLater you can use your portable scanner to see the crop stats while still in the ground.\n\nGrowability depends on having dirt beneath your crop(4 max), biome (swampy is best, followed by jungle and mushroom - basically any humid or wet biome such as tropical rainforest or bayou), air quality (Up toY=124 and don't place a lot above/around your plants), hydration, and fertilizer. When the crop tier and plant stats get high enough, they will actually die without enough Growability.\n\nAs long as you water and fertilize them, you can pretty much grow crops anywhere, but as you improve the stats you have to optimize their environmental conditions.\n\nIf the Growth stat gets too high, greather than 24 or so, the plant will spread weeds onto neighbors.\n\nSome crops, such as Redwheat, require certain light levels to crossbreed or grow."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":32,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone","Count":8,"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":722,"preRequisites":[719,543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFertilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speed up your plant growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To speed up the growth process a bit you can use a fertilizer. You will note, however, that bone meal no longer works. A bit of ash, apatite or calcite mixed with some water in a chemical reactor will give you the fertilizer you need. Apply by hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFertilizer","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_hoe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":723,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:carrot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potatos, Carrots, Pumpkins and Melons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your seeds have three different values: Growth, gain, and resistance (GGR).\n\nThe only way to change a crop's GGR without 3rd party tools is through cross breeding. When two plants cross-breed, the resulting plant will have a GGR score that is between both \"parent\" plants' GGR. Sometimes it will also be a little bit higher or lower. Thus, to obtain high GGR scores you must go through numerous generations of crossbreeding.\n\nThe highest score for GGR is 31."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:carrot","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:melon_block","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":724,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weed will show up from time to time on your crop sticks. Be careful and harvest the weed with your weed trowel before the whole field becomes overgrown with them and they destroy all your plants. Later you can make some weed Ex to destroy it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemWeedingTrowel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"IC2:itemWeed","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":725,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flower Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Growing dyes on crops sticks? Try to plant some flowers. If you cross breed Rose and Dandelion flowers you maybe get a new flower and new dyes with different colors.\n\nYou will need to plant 4 vanilla flowers to get them on a cropstick.\n\nTo get \"Rose Seeds\" place poppies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":8,"tag":{"owner":"IC2","name":"rose","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":8,"tag":{"owner":"IC2","name":"dandelion","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":32,"Damage":1,"OreDict":""},{"id":"minecraft:dye","Count":32,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"blackthorn","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"cyazint","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":726,"preRequisites":[543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChemical rubber production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A much more efficient way to make insulated cables is by making molten rubber in a chemical reactor which can be applied to a cable in the assembling machine. When you put both machines next to each other you can output the molten rubber directly to the assembling machine by clicking the fluid auto-output button on the chemical reactor. Make sure to set the correct side of the reactor as output side by wrenching it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2896,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":2022,"OreDict":"dustSulfur"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":30,"Damage":1246,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":30,"Damage":1366,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":727,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:fullDrawers1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lBetter than barrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While barrels offer a slot for a single item, drawers can have up to 4 slots each (holding 16 stacks per slot). Once you reach HV you can combine them with some ProjectRed pipes to set up a \"ghetto ME storage system\" (Tec2k17).\n\nJust watch out, they do come with some downsides. You won't be able to make them point up or down, and you can only acces the contents from the front (automation can use any side). \n\nAlso, if placed on top of a hopper, they can bug out and void items when the hopper is full. If you plan on that, use barrels or chests instead."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:fullDrawers1","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:butteredpotatoItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":728,"preRequisites":[727],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:halfDrawers2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCompact Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They are very compact and add some fanciness to your glorious dirt base. "}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:halfDrawers2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:halfDrawers4","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:loadedbakedpotatoItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":729,"preRequisites":[727,728],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:framingTable","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFraming Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can really make some swaggy and even FANCIER drawers using this table, all you have to do is place some decorative blocks (works with almost ALL decorative blocks) and it will take their texture, the TOP left is the outer Square bottom left is for the front face and top right is for the borders."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:framingTable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:fullCustom1","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullCustom2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullCustom4","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":730,"preRequisites":[717,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBio Fuels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are using steam, creosote, and possibly oil plus their by-products to generate Power. It's time to start with bio diesel. You can use wheat, sugarcane, apples, saplings or fish.\n\nBe sure you have a managed Forestry farm, Steve's Cart Farm, IC2 Crop Sticks with a harvester, or a lot of fish catchers because you need plenty of biomaterials for constant biodiesel production.\n\n§4Hint: Hazelnut is the ultimative source for biodiesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:reeds","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:apple","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:wheat","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wheat_seeds","Count":32,"Damage":0,"OreDict":""},{"id":"Forestry:fertilizerCompound","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":731,"preRequisites":[730],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFuelPlantBall","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPlant balls","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step is to compress plantballs out of your wheat. Your LV compressor is too slow for it. I suggest crafting 4 MV compressors for the new bio diesel processing line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":732,"preRequisites":[731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MaceratedPlantmass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPlant Mass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Macerate the plantballs down to plant mass for better processing. In the LV and MV tiers you get only one plant mass per, in HV tier you recieve two. IV macerator gives up to four of them with a chance of 50 percent and 25 percent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MaceratedPlantmass","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":733,"preRequisites":[732,1322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBiochaff","Count":32,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBio Chaff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plant mass needs to be centrifuged into bio chaff, the base material to make biomass. You need 1 or 2 MV centrifuges to run the new production line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBiochaff","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":23019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":734,"preRequisites":[733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay One: IC 2 Fluid Canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first way you get biomass out of bio chaff is to use the IC2 Fluid Canner. One bucket of water and one bio chaff gives one bucket of biomass. \n\n§4In MV Tier you can use the pyrolyze oven to do it in a more efficient way."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockMachine","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":28880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":735,"preRequisites":[733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":492,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay Two: Brewery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are lucky and find some brewing stands or familiar enough with Thaumcraft to make one you can craft a brewery. You get 750mb of biomass out of 750mb water and 1 bio chaff. \n\n§4In MV tier you can use the pyrolyze oven to do it in a more efficient way."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":492,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":736,"preRequisites":[1323],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":512,"Damage":30691,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFermented Biomass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the MV fermenter you can produce fermented biomass. This is the base product to make methane, ethanol and methanol.\nWhen you reach HV tier there's a more efficient way to process it - the distillation tower multiblock."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":502,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30691,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":737,"preRequisites":[127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.drawplate","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Can u eat those? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No you can't eat them but you can add them to your routed pipes. Without chips routed pipes can't do anything on their own, chips also have a GUI to configure them which can be opened by right clicking. \nThere are 8 types of chips:\n\n-Item extractor chip can be used to send items from its inventory to responder, dynamic responder, terminator and overflow responder chips in a pipe network. \n\n-Item responder chip will request items from the extractor chips in your network which match the filter configured to the inventory connected to the responder chip. Chips with higher priority value will receive items first until the inventory is full then will be sent to other inventories with valid filters and remaining space.\n\n-Dynamic item responder chip will request items from the extractor chips in your network that match items inside the dynamic item responder connected inventory. This chip has to be in the same interface pipe as the item responder chip in order to work. Priority rules apply here as well. \n\n-Item overflow responder works exactly the same as the item responder chip, however it only accepts items that cannot go to an item responder chip, dynamic item responder chip, or item terminator chip. \n\n-Item terminator chip works as a backup for responder chips.\n\n-Item broadcaster chip will show you the inventory connected to the routed request pipe on the pipe network and can be used to retrieve items from it. They can also extract from the side you configure. \n\n-Item stock keeper chip will constantly check the network for items and pull them to its pipe. If the chip is set to pull when empty, it will only pull if the inventory next to it is empty, otherwise it will pull when there are less items in the inventory than configured in the chip.\n\n-Item crafting chips craft things. \n\n-Item crafting extension chips are placed inside the item crafting chips. Make sure you randomize the id."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":4,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":738,"preRequisites":[127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":2,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Routed Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are six types of routed pipes: \n\n-Junction pipe is used to form an intersection that will allow other routed pipes to communicate. \n\n-Interface pipe will connect to an inventory allowing you to extract or insert items, chips can be used to control the logic. \n\n-Request pipe will allow requesting only specific items to be send through pipes.\n\n-Firewall pipe can control which items can pass through them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":0,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":739,"preRequisites":[738,737],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ghetto ME System","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are familiar with the mod it's time to organize items in your base a bit. These are the things you need in order to get a basic extract/insert system.\n\nFirst of all you will need a drawer controller. You can pick it from here or craft it yourself and place it down. Next to it add as much drawers as you want, and make sure they are touching each other or the controller.\n\nThe next step is to connect a routed interface pipe to your drawer controller. Take the item responder chip and configure it to filter mode: blacklist (this will allow you to get any items from your system) and add the chip to the routed interface pipe by right clicking on it. Don't forget the dynamic item responder.\n\nIn order to allow your system to be able to see items you need to add the item broadcast chip TO THE SAME ROUTED INTERFACE PIPE WHICH IS CONNECTED TO THE DRAWER CONTROLLER.\n\nThe last step is to connect a routed request pipe IN THE SAME NETWORK AS THE ROUTED INTERFACE PIPE and right click it to access the GUI. You can only extract items from it. In order to insert items simply right click them on the drawer controller. \n\nYou can find more complex tutorials on youtube for autocrafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":2,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":740,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":282,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lExtrude all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you hit the MV tier and it's time to get a better ratio when making sticks, pipes, wires, plates and many more parts. Most recipes use more than 32 EU/t so better make an MV extruder. After crafting the machine you need some extruder shapes for the different types of parts you want to make.\n\n§4Most of the Tinkers Gregworks tool parts are made in the extruder."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32351,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32350,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32352,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32353,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32356,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32358,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32359,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32360,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32361,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32362,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32363,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32357,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32372,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32375,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32374,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32355,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32373,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":282,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":741,"preRequisites":[1126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:ToolForgeBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§3§lTool Forge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally you get your first alumite. Now it's time to craft a tool forge for making bigger Tinkers tools. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":2,"Damage":15,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""},{"id":"TConstruct:CraftingSlab","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:SearedSlab","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:ToolForgeBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":742,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":3509,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":16,"ModDurability":0,"MiningSpeedExtra":700,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":3509,"MiningSpeed2":700,"HeadEXP":0,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"Steel Hammer"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOne Block mining is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making a hammer you are now able to mine a shaft of 3x3 blocks. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. Higher tier metals require the MV extruder. You'll need a hammer head,two large plates and a large rod for your hammer. Be careful in the Nether or you could be boiled in lava very quickly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":21,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":3509,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":16,"ModDurability":0,"MiningSpeedExtra":700,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":3509,"MiningSpeed2":700,"HeadEXP":0,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"Hammer"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":743,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:lumberaxe","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2193,"BaseAttack":4,"ToolEXP":0,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2193,"MiningSpeed2":700,"Head":16,"Attack":4,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Steel Lumber Axe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lCutting a Tree log by log is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making a lumber axe you are now able to cut down the entire tree in one hit. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. Higher tier metals require the MV extruder. Don't forget your backpack when you are cutting a sacred oak tree down."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":17,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:lumberaxe","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2193,"BaseAttack":4,"ToolEXP":0,"Built":1,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2193,"MiningSpeed2":700,"Head":16,"Attack":4,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Lumber Axe"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":744,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:excavator","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2413,"BaseAttack":6,"ToolEXP":0,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2413,"MiningSpeed2":700,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Steel Excavator"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMining Dirt Block by Block is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making an excavator you are now able to mine dirt in a 3x3 area. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. \nHigher tier metals require the MV extruder. Don't destroy your whole garden."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":19,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:excavator","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2413,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2413,"MiningSpeed2":700,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Excavator"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":745,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:liquid.glue","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGlue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you centrifuge sticky resin, you get some glue. Glue is very useful in the creation of good circuit boards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemHarz","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30726,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemHarz","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":746,"preRequisites":[77,759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Due to the chip production, silicon becomes a more important material. You can centrifuge it out of fullers earth, asbestos or redstone dust. The electric blast furnace is needed to make ingots. One ingot requires a temperature of 1687 K for 84 seconds at 120 EU/t using raw silicon. Using silicon dioxide and carbon dust, you can get an ingot in 12 seconds! Another time when it is wise to search NEI and not stop on the first recipe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"minecraft:redstone","Count":40,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":747,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiode","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits need diodes. There are two ways to craft them. Right now you have to use the Gallium Arsenide method with fine copper wires and molten glass. Later when you get an EBF you can use it to make silicon wafers to make even more. Once you have polyethylene you can use annealed copper wires to increase your output yet again. \n\nMake sure you check all the NEI recipes for advanced items instead of just using the first one you find."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":1980,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":748,"preRequisites":[97,745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEmpty Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuit boards require wooden pulp and refined glue to make phenolic circuit boards. By adding gold wire you can craft a good circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2809,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32719,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1420,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1420,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29086,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":749,"preRequisites":[754],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAre you Prepared for HV?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel will be the material for the HV Tier. There are two ways to process it. Mixing it by hand outputs 8 stainless steel dust.\n\nManganese can be found from ore veins with grossular ore, spessartine ore, pyrolusite ore and tantalite ore. Alternative sources are Garnet dusts from Garnet sands, or Almandine. If you get desperate, you can buy some ore from the Coins tab.\n\nChrome can be centrifuged out of manganese dust and ruby dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2031,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32224,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":750,"preRequisites":[759,951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17874,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lMolten Plastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Molten polyethylene can be made in a chemical reactor using ethylene, compressed air cells or oxygen - using oxygen gives a 50% boost. Use a mold for making plates in a fluid solidifier to make plastic sheets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":751,"preRequisites":[754],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":582,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMixing Stainless Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel will be the material for the HV Tier. There are two ways to process it. Mixing it in a mixer outputs 9 stainless steel dust each process.\n\nManganese can be found in ore veins together with grossular ore, spessartine ore, pyrolusite ore and tantalite ore.\n\nChrome can be centrifuged out of manganese dust and ruby dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":582,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32221,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":752,"preRequisites":[746],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon Plate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits require transistors, which are made out of silicon plates, fine tin wire and molten polyethylene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:hotdogItem","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32113,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":753,"preRequisites":[749,751],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lStainless Steel EBF processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel ingots are made in the electric blast furnace at a temperature of 1700K. \nIt takes 80 seconds at 480 EU/t or by adding oxygen gas 60 seconds at 480 EU/t.\n\n§4You need a miniumum of two MV energy hatches to power the EBF."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":754,"preRequisites":[77,893,1084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Energy Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some materials like stainless steel require 480 EU/t. Your LV hatches are not good enough. Craft a minimum of two MV hatches to upgrade your electric blast furnace to HV.\nIf you not make some Ultra Low Power ICs go and make some wafers first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":755,"preRequisites":[77,609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"SpecialData":-1,"PrimaryMaterial":"Iron","Tier":1,"MaxDamage":25600,"Voltage":32,"MaxCharge":100000,"Electric":1,"SecondaryMaterial":"Rubber"},"GT.ItemCharge":100000},"Damage":160,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter than Duct Tape","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A soldering iron tool to remove the \"burned out circuits\" message is better than duct tape. \nThe soldering iron requires one soldering material item and 10,000 EU. Valid soldering materials are fine wires, rods, and ingots made from either tin, lead, or soldering alloy. The soldering iron will consume the first such material it finds in the player's inventory.\n\nIn order to \"complete\" the quest they will need to charge the soldering iron after you craft it.\n\nFor the other problems other tools are necessary.\n\nPossible problems Tool to fix\n\"Pipe is loose.\" Wrench\n\"Screws are missing.\" Screwdriver \n\"Something is stuck.\" Soft mallet \n\"Platings are dented.\" Hammer \n\"Circuitry burned out.\" Soldering Iron \n\"That doesn't belong there.\" Crowbar"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":160,"OreDict":"craftingToolSolderingIron"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19314,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":756,"preRequisites":[77,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLess Power loss","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you reach MV tier you can make your own duct tape in case you have to move your multiblock machines around. Duct tape will fix all maintenance problems in any multiblock machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30726,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30726,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":757,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lRuby Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ruby is a good source for electrolyzing to get chrome and aluminium. Your new MV electrolyzer gives you access to a lot of new recipes. Once you get low on Ruby, you can centrifuge Redstone to get more.\nAnother good source of aluminium and oxygen is red granite dusts. You can get those from red stonelillies in the Fishing Farming Cooking tab using ic2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":2502,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":758,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Let's make some MV battery hulls for new batteries. Now it's up to you to make lithium, cadmium, sodium or acid batteries with these hulls."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32501,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":759,"preRequisites":[846,847],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.99","Count":1,"Damage":874,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMolten Polyethylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polyethylene is made out of ethylene in a chemical reactor.\nMolten Polyethylene cells carry 144L, perfect for 1 ingot or plate. \nIf you want precise amounts, you can use a Volumetric Flask once you electrolyze some Boron from Borax."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":43,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":32,"Damage":874,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":760,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2805,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lClay Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You found out that electrolyzing clay dust will give you silicon dust. There are plenty of stained clay blocks found in canyon and lush desert biomes or on mountains that can be pulverized to clay dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":832,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":2020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":761,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPowderbarrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Powderbarrels are twice as good as dynamite in the implosion compressor. Craft one stack."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:gunpowder","Count":256,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":17809,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"StevesCarts:ModuleComponents","Count":16,"Damage":43,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":762,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTNT","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"TNT is much more powerful than the powderbarrel but much harder to craft. There are LV and HV ways to craft. At LV you need heavy or light fuel to make some toluene which can be solidified to gelled toluene. Alternatively you can use sugar and plastic dust in a chemical reactor to make toluene more efficiently. Mix it with sulfuric acid to make TNT.\n\nThe HV way requires an oil cracking unit to make all kinds of cracked fuel or cracked naphta and a distillation tower to extract toluene from that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30647,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":256,"Damage":32010,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:tnt","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32010,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30720,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}]}]},{"questID":763,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockITNT","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§liTNT","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Industrial TNT is the HV variant of TNT. It explodes with more power, yet does not destroy blocks when it explodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30647,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":32010,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30628,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32010,"OreDict":""},{"id":"IC2:itemFluidCell","Count":8,"tag":{"Fluid":{"FluidName":"liquid_nitrationmixture","Amount":1000}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":764,"preRequisites":[556],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemDynamite","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDynamite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dynamite is the most basic explosive you can use in the implosion compressor.\nMix some paper, string and glyceryl trinitrate in a chemical reactor to get dynamite."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:paper","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30714,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemDynamite","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17809,"OreDict":""},{"id":"IC2:itemDynamite","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":765,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1157,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to oil drill!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps are nice but you're going to reach a point where you will want MOOOOOOOOOOOOORE oil. This multiblock will help with that but you will need to search for oil using a seismic prospector. You can find raw, light and heavy oil. There's also a chance to find natural gas.\n\nHigher tiers of power will drill faster. You need to upgrade the energy hatch corresponding to the power tier. \n\nLater you can upgrade the oil drilling rig so it extracts from more than one chunk at a time.\n\nYou need mining pipes in the machine controller block.\n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1157,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":15,"Damage":4401,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":62,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":766,"preRequisites":[160,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1160,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLet's get crackin!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cracking oil products like light and heavy fuel with the oil cracker is faster and more efficent than using a chemical reactor, producing 25 percent more output. Cracked products will result in additional by-products in the distillation tower. It is a smart idea to get this multiblock since you are going to need TONS of industrial TNT from Toluene for advanced tier rockets. \n\nThe 16 coils form 2 vertical rings of 8 on either side of the controller. The casings between the rings can be replaced with a hatch for steam/hydrogen input. Energy hatch and maintenance hatch can replace any of the casings. The input product hatch and output product hatch must replace one of the casings outside of the coils.\n\nHint: Only GT/Railcraft steam can be used, not ic2 steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1160,"OreDict":""},{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":20,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":53,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":63,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30001,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"steam","Amount":1000}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":767,"preRequisites":[73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAnalyzing the soil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of looking for ores by hand? Want to find deep oil that will last a long time? A seismic prospector will tell you the ores in the surrounding chunk in a handy book you can read, and also the oil in the oilfields beneath each 8x8 chunks.\n\nTo determine which kind of oil or gas there is in the chunk you need to scan the soil by right clicking an Advanced Seismic Prospector with 2 Powderbarrels, 4 Glyceryl Trinitate cells, 8 iTNT or 16 TNT. Make sure you wait a few seconds after placing the prospector before applying the explosives.\n\nThen use a Data Stick to extract the data by right clicking on it after the animation has finished.\n\nNow you need to put the analyzed data stick in a GT scanner. Then place it in the bottom right slot of the printer and add 3 paper in the top left slot and make sure you have at least 144 mb squid ink in it. (Only gregtech machines will work)\n\nAfter the process is done take the printed pages and combine it with a piece of leather in an assembling machine filled with at least 20 mb of refined glue. Don't assemble more than one book at time.\n\nTADA now you have a book with detailed info about the chunks you scanned.\n\nNote: Each oilfield is 8x8 chunks, and always on a by 8 chunk boundary. Within the field the amount can vary +- 25 percent. The amount reported in the book is the minimum and maximum per oilfield across all chunks in the field. The prospector reports on 3x3 oil fields at all tiers with the center oil field where the seismic prospector is located. Oil extraction rate depends on many factors, check the wiki for details. In general, anything above 300 is really good. The total amount in the chunk is complicated. \n\nOre locations are given as the center of the chunk. Ores that are marginal in that chunk may not be found in the center but on an edge. Look at where ores are located and determine the center of the vein. At higher tiers, it scans more chunks for ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":768,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1126,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou smell like a distillery!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This bad boy will tremendously boost the by-products of your cracked fuel or pyrolyse oven. This way you can make industrial TNT, polyethylene, polytetrafluoroethylene and other plastics more efficiently. \n\nYou will also need this for your automated setups.\n\nYou will need to make EV circuits in a cleanroom to build this machine.\n\nFor hatches, you can choose your own tier. 1 MV energy does most of the useful recipes. 2 MV energy or 1 HV energy hatch will cover almost all the rest except pollution or acetone.\n\nYou will need 1 input hatch, and at least 5 output hatches. An output bus will capture any solid outputs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1126,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":40,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30740,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":769,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":573,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPlaying with dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine will help you turn dust into crystals which you will need for high tier recipes. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":573,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemDust2","Count":9,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":770,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":213,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAvengers, Assemble! 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You know what this does. :D"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":213,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":771,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":571,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDust to crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use the autoclave to crystallize your dust. You can make raw carbon mesh out of carbon dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":571,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":772,"preRequisites":[1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":593,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPrecision is required","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will use this a lot to make high tier circuits, and for other recipes"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":593,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24532,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":773,"preRequisites":[771,759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPartCarbonMesh","Count":24,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay one: Raw carbon mesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This way of making carbon requires autoclaving 4 carbon dust. You can use polyethylene which gives you only 1 raw carbon fibre at LV tier, polytetrafluoroethylene gives you 2 at MV Tier or go for the best way: molten epoxid which yields 4 at HV Tier. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonFibre","Count":48,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonMesh","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11473,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":774,"preRequisites":[731,771],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.BioOrganicMesh","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay two: Bio Organic Mesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If want to save the ecosystem you can autoclave 16 plantballs to get raw bio fiber with the following liquids:\n\n§4-Biomass 33% chance\n-Methanol 50% chance\n-Fuel 90% chance\n-Nitro-diesel 100% chance\n\n§rHowever, making carbon plates this way will require an electric blast furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.RawBioFiber","Count":48,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.BioOrganicMesh","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":775,"preRequisites":[692,778],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CarbonPartChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon parts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These are the first parts you will need for your beloved nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CarbonPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCarbonMesh","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":776,"preRequisites":[775,797,796],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemNightvisionGoggles","Count":1,"tag":{"charge":200000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Seeing things brighter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano helmet is a bit special. It will provide you with night vision as long as you have energy! Don't turn it on in bright areas or you'll be blinded!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemNightvisionGoggles","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":777,"preRequisites":[775,769,772],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoCrystal","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are those green diamonds? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They may not be green diamonds but they are needed for your nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":778,"preRequisites":[773],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPartCarbonPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§7§6§lCarbon Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Carbon plates are needed for the nano armor. Go check out the armor chapter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11473,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":779,"preRequisites":[777,775,776],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorNanoChestplate","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon skin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can stop worrying about some mobs for now. This will help you survive a bit and will give you some of that SWAG. Your journey doesn't stop here traveller, as quantum armor awaits you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoHelmet","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoChestplate","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoLegs","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoBoots","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":780,"preRequisites":[774],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.BioCarbonPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOrganic Way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bio carbon plates are made out of raw carbon mesh. Put it in the electric blast furnace to make carbon plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.BioCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:cube","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:coal_block","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":781,"preRequisites":[77,717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1159,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lStill not enough charcoal?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This oven is the best way to get charcoal and creosote (x50 faster than Railcraft's coke oven) and other byproducts. You will need tons of bronze, iron and steel to build it, but it's worth it. Finally, it will be possible to dismantle the charcoal pit.\nWith Cupronickel coils the oven is a bit slower. Each coil tier speeds up the charcoal production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:gt.blockcasingsNH","Count":66,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1159,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""},{"id":"dreamcraft:tile.TripleCompressedCharcoal","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":782,"preRequisites":[760],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMonocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make wafers, you need to make monocrystalline silicon first. The process takes 450 seconds and requires silicon dust and gallium arsenide dust in the electric blast furnace. You can make 16 wafers out of every boule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":1980,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32030,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":980,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":783,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1131,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWe need big toys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All your little turbines take up too much space? Are you running out of water? It is time to solve these problems. This large turbine can help you produce a tremendous amount of energy. It will also distill water for you, so you can use the same water again inside your large boiler. Don't forget to make a rotor for the turbine. \n\nMake sure you provide the optimal flow of steam using a fluid regulator. Don't exceed your dynamo hatch's EU rating, or it will explode! For HV you will probably want an IC2 fluid regulator. Above HV you can use the fluid regulator covers.\n\nTurbines with a small turbine durability below 75k have their recipes removed. Use NEI with the appropriate long rod to find assembler recipes that will work for you. Long magnalium for small turbines, long titanium for normal turbines, etc.\n\nPre-moon, the best rotors are small ardite or vibrant alloy. Remember to disassemble rotor blades before they break to recover the materials.\n\nPost-moon, the best HV rotors are normal damascus or blue steel. Risk-takers can try ultimet but you must not provide optimal flow since it will give 517 EU/t, blowing up a single amp dynamo. Luckily turbines are now fully functional with multi-amp dynamos, so give those a try if you need extra amps!\n\nFor additional choices, see the Large Turbine Calculator in Discord."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":30,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1131,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":170,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:tile.TripleCompressedCharcoal","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":784,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIt's time to get more steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As soon as you have the ability to store energy in large quantities, it would be necessary to have a way to generate energy in large quantities. You need a large bronze boiler. But in order to make this boiler, you will need a mountain of bronze. This boiler produces 800 liters of steam per tick. This is enough to run 10 basic steam turbines.\n\nThe large boiler can use either water or distilled water. Water is consumed at a rate of 1L of water per 150L of steam.\n\nTo make a large boiler you must make a 3x3x5 structure with Bronze Pipe Casings in the center of the middle 3 levels. The lowest level must contain at least 1 or 2 input hatches, 1 or 2 input buses, 3 or 4 fireboxes, 1 muffler, and one maintenance hatch. The lowest level can not contain any plated bricks. All hatches, buses, and mufflers must have their back side touching a firebox. The output hatch can be placed on any of the upper 4 levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":5,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":32,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":61,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":71,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":91,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:tile.DoubleCompressedCharcoal","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":785,"preRequisites":[752],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTransistor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next tier we need advanced circuits. To create some advanced circuits, you need some transistors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19057,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":32717,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32719,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":786,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1021,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSteam is never enough","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can make advanced circuits, which means it's time to build a large steel boiler. This boiler is one and a half times more efficient than a bronze one, and that means we need 5 more steam turbines. Don't forget to monitor the water level!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":4,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1021,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5134,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":787,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1022,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMoooooore steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stock up on titanium, it will be fun. A large titanium boiler produces 1600 litres of steam per tick. For this amount you need to choose the right rotors for your turbines. For example, 2 normal damascus steel rotors will be just right. Optimal flow for such rotor is 800 liters per tick. Make a fluid regulator in the assembler to control the flow rate. If you have more than one boiler, you will need to make calculations in order to select the appropriate rotors. Make sure your dynamo hatch is capable of accepting all the EU, or it will explode!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":3,"Damage":3,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1022,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":14,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":788,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEven more steam? Are you sure?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This boiler is the most efficient source of steam. It allows you to produce as much as 2000 litres of steam per tick. If you need more, then build a dual or even quad boiler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":3,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1023,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:tile.QuadrupleCompressedCharcoal","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":789,"preRequisites":[769],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatCrystal","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnergy Crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Make energy crystals out of ruby and redstone dusts in the MV mixer. Energy crystals can store 1 million EU and work as an HV battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemDust2","Count":36,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemBatCrystal","Count":4,"tag":{},"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":790,"preRequisites":[789],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNano Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nano crystals are used for making the nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatCrystal","Count":1,"tag":{},"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32719,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":791,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":592,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Precision Laser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits need an MV precision laser. Let's craft one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":592,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":792,"preRequisites":[782],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some silicon wafers, put the monocrystalline silicon boule in a cutting machine. It would be better to immediately make the MV version because you will need it later for RAM, IC's and other chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":252,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":793,"preRequisites":[794],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32079,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGood Integrated Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits have three variants. For the advanced circuits you need the good integrated circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32701,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32079,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32716,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":794,"preRequisites":[795,837],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIntegrated Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are two variants of basic circuits. The basic circuit from IC2 or the integrated circuit which needs a circuit assembling machine to be made. The good integrated circuit needs two integrated circuits to be crafted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32701,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32715,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":795,"preRequisites":[717,530,529],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1180,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits require an LV circuit assembling machine. Basic ones can be made much more efficient with this machine. Let's craft one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1180,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11345,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":796,"preRequisites":[794,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.sensorLens","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sensor lens","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The night vision goggles need special sensor lenses to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28308,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.sensorLens","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemBatCrystal","Count":1,"Damage":26,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":797,"preRequisites":[794,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Heat Exchanger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The night vision goggles need advanced heat exchangers to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"IC2:reactorHeatSwitchSpread","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:reactorHeatSwitchDiamond","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":798,"preRequisites":[236,234,235],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron capped Greatwood Wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making a gold capped greatwood wand requires 35 vis, but your old wand's limit is 25. So first create an iron or copper capped greatwood wand and then create a gold capped greatwood wand.\nMake sure you use NEI 'U' command on the wand caps to find the correct GT:NH recipe for the wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"ordo":0,"perditio":0,"aer":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":799,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't try to dive with it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining a scuba helmet with a nano helmet in an assembling machine will give you a nano scuba helmet. You'd better not try to dive with it because you can't. It is a part of the new quantum suit helmet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoHelmet","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":800,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plated Leggings - Better not try to wear it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining stainless steel platings with some nano leggings in the assembler gives you nano plated leggings. Better not try to wear them because you can't. They are part of the new quantum suit leggings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoLegs","Count":1,"Damage":27,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":801,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't try to walk with it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining some rubber boots with nano boots in the Assembler gives you Nano Rubber Boots. Better not try to put them on because you can't. They are part of the new quantum suit boots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoBoots","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":802,"preRequisites":[799,801,800,654],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iridium Plated","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plating all your armor parts with iridium alloy casings gives them a better durability. Before you can wear these quantum armor parts you need to activate them with some quantum crystals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.IridiumAlloyItemCasing","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"GraviSuite:advNanoChestPlate","Count":1,"tag":{"toolXP":0,"charge":0,"toolMode":0},"Damage":27,"OreDict":""},{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmetEmpty","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartIridium","Count":4,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":803,"preRequisites":[802,804],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The quantum armor is a high tier and very durable armor with a lot of features like night vision, fall damage reduction and running very fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32706,"OreDict":"circuitMaster"},{"id":"gregtech:gt.blockmachines","Count":20,"Damage":1662,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32597,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32644,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":32604,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":32673,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemArmorQuantumHelmet","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumLegs","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumBoots","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32604,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":804,"preRequisites":[802,807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum crystal ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The quantum crystal is needed to turn quantum armor parts into wearable quantum armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":805,"preRequisites":[789,1406],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.LapotronDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lLapotron Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lapotron crystals require you to mix your energium dust with some lapis dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2526,"OreDict":""},{"id":"IC2:itemDust2","Count":48,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":806,"preRequisites":[805,808],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatLamaCrystal","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lLapotron Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new HV mixer you can make lapotron dust. Place it in an autoclave to make some raw lapotron crystals. With an EV assembler and advanced circuits you can make lapotron crystals which store up to 10 million EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LapotronDust","Count":120,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCircuitAdv","Count":8,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"dreamcraft:item.RawLapotronCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32714,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":807,"preRequisites":[1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuantum Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your quantum armor you need some quantum crystals. Place a lapotron crystal in your precision laser to get a quantum crystal "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.LapotronDust","Count":60,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":808,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":583,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMixing at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High Tier dusts need HV Mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":583,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11367,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11366,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":809,"preRequisites":[831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"NASA Workbench aka Dire Crafting Table","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Avaritia 9x9 dire crafting table replaces the NASA workbench. It is required to craft all rockets and high tier equipment. First of all you need 81 crafting tables to make a double compressed crafting table, a few HV components, wafers and a crystal matrix. And yes, you do need nether stars. Hint: Check out the nether star recipe which uses null catalyst and salis mundus. Null catalyst can be duplicated by adding magma cream, blaze powder and a tiny pile of nether star dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:crafting_table","Count":81,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Avaritia:Triple_Craft","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":144,"Damage":17500,"OreDict":""},{"id":"dreamcraft:item.StainlessSteelBars","Count":36,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:nether_star","Count":18,"Damage":0,"OreDict":""},{"id":"Avaritia:Resource","Count":36,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Avaritia:Resource","Count":9,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Avaritia:Crystal_Matrix","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32642,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":130,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":810,"preRequisites":[812,813,814,815,816,819],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of hard work and a few stacks of TNT your first rocket is finally ready. But before you can go to the Moon you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":3,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":22,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":811,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. You can craft the first one using a data circuit and a compressed steel plate in a hv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":812,"preRequisites":[80,809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 36 of these plates out of compressed aluminium plates, compressed bronze plates and compressed steel plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":10,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":148,"Damage":26306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":37,"Damage":32462,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":37,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":813,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Nose Cone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2.inv","Count":1,"Damage":14,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":814,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.rocketFins","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":815,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. Better craft two, because the Moon lander needs one also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32731,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":2,"Damage":14,"OreDict":""},{"id":"GalaxySpace:item.CompressedSDHD120","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":816,"preRequisites":[815,817,818],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon lander is required for a soft landing.\nYou will need an additional frequency module for hearing things on planets and a second seat for a Moon buggy you may build later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":3,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":817,"preRequisites":[809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.buggymat","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Buggy Seat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The buggy seat is part of the Moon lander and the Moon buggy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":10,"Damage":9,"OreDict":""},{"id":"IC2:blockRubber","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.buggymat","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalaxySpace:item.CompressedSDHD120","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":818,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":19,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frequency Module","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The frequency Module will help you hear sounds properly while in space (it's also used with the telemetry unit so that your buddies can keep track of you from your base, if you are playing with friends). You need it in your inventory and in the Moon lander."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32692,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"GalacticraftCore:item.battery","Count":2,"tag":{"electricity":0},"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":819,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Small Fuel Canister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 1 rocket you need to craft two of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleSmallCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.CompressedDualAluminium","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.CompressedDualBronze","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":820,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.landingPad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Launch Pad","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a launch pad. Build a 3x3 launch pad and place your rocket on top of it.\n\nMake sure you don't have any lightning warp effects or you'll be really sad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":9,"Damage":11,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":9,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.landingPad","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":821,"preRequisites":[827],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.fuelLoader","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To pump fuel into your rocket you need a fuel loader. Place it right next to the middle of any side of the launch pad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5132,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.fuelLoader","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":822,"preRequisites":[823],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenGear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Gear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oxygen gear is used to attach oxygen tanks to the oxygen mask. This is absolutely vital for any astronaut."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":5,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenGear","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockAlloyGlass","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":823,"preRequisites":[795,809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenMask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Mask","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen mask is part of the system used to breathe on planets without oxygen, the others being oxygen gear and oxygen tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ReinforcedGlassPlate","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenMask","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockAlloyGlass","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":824,"preRequisites":[823,822],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Light oxygen tank is an oxygen storage tank that can hold up to 900 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank. I recommend making the medium tanks and using the light tanks as spares to return to base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":14,"Damage":8,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":2,"Damage":900,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":825,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockOreCopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can be found between y levels 5 and 60 either as \"Copper Ore\" or \"Chalcopyrite\". Most of the time you'll find it together with \"Iron\" and \"Pyrite\".\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in NEI and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":24,"Damage":855,"OreDict":"oreChalcopyrite"},{"id":"gregtech:gt.blockores","Count":24,"Damage":35,"OreDict":"oreAnyCopper"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:oreBerries","Count":5,"Damage":2,"OreDict":""},{"id":"harvestcraft:footlongItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":826,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lIron Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With iron tools, you are able to mine most of the Overworld ores. I think you already found iron or magnetite. So bring me some ores and make some iron ingots out of them.\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in nei and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":917,"OreDict":"oreBandedIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":32,"OreDict":"oreIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":870,"OreDict":"oreMagnetite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":931,"OreDict":"oreYellowLimonite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":930,"OreDict":"oreBrownLimonite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:oreBerries","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":827,"preRequisites":[819],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For every flight the rocket needs some fuel. So refine some fuel and fill some fuel canisters. \nYou can use Fuel or Rocket Fuel from Ender IO."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":8,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":828,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Collector","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen collector is a block that gathers oxygen from leaves and farm plants to use in an oxygen bubble distributor, oxygen sealer, oxygen compressor, and other oxygen-reliant machines. If you plan to build a Moon base, which needs a continuous oxygen supply, you will need to build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1587,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":829,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen compressor is used to fill empty or depleted oxygen tanks. Connect an oxygen pipe to the blue ring input side and a power source to the grey square input side. Place an oxygen tank in the bottom right slot and it will take oxygen from the input and place it into the tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.oilCanisterPartial","Count":1,"Damage":1001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32642,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":830,"preRequisites":[822],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Parachute","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A parachute is used to prevent death upon re-entry into the Overworld's atmosphere. The parachute is an essential part of your journey to space. You should never journey into space without it. There will even be a warning if you try to launch without one on you.\n\nUse the assembler to save materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:wovencottonItem","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.canvas","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":19305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.canvas","Count":6,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32415,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32418,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32416,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32425,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":831,"preRequisites":[832],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced wafer is used for more advanced machines such as the advanced solar panel or the Avaritia dire crafting table. It is also used in the creation of a space station."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32034,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":832,"preRequisites":[160,795,102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic wafer is used for creating basic machines such as the basic solar panel, the fuel loader, the energy storage module and the compressor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32033,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":12,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32033,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":833,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purge your warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The warp you have accumulated over time is starting to become a problem. Making bath salts to clean off the warp is only a temporary solution. To truly get rid of it, you need something more powerful, a pure tear. If you collect a few things for me, I will give you one. Think wisely about using it, since it's a very long journey to unlock it through research."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:nether_star","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":10,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11317,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":16,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":29500,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":7,"OreDict":""},{"id":"minecraft:ender_eye","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"alienis"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"permutatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"praecantatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"sano"}]},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":834,"preRequisites":[66],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lCircuit Boards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For every circuit you need a basic circuit board. Craft a coated circuit board and use copper wire to finish it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17809,"OreDict":""},{"id":"IC2:itemHarz","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32710,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32710,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bread","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32710,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":835,"preRequisites":[67],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32716,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§4§3§lResistor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every basic circuit needs two resistors to work"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1360,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2535,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32716,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:blueberrysmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":836,"preRequisites":[542],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2980,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGallium Arsenide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The diode requires gallium arsenide and you may be wondering how to get gallium or arsenic this early in the game.\n\nSphalerite dust in an electrolyzer is the primary source of gallium at this tier. \nYou can also get gallium out of crushed zinc ore by using a thermal centrifuge. You can find the small zinc ores in the Overworld or the in the Nether at Y Level 80 - 210. To get additional crushed ore, use a Tinker's Construct tool with the Luck (Fortune) enchant on it - apply a lot of Lapis. \n\nYou can get arsenic from realgar small ores in the Nether at Y level 5 - 85. Centrifuge the dusts in a centrifuge. Other sources are Tinker's Construct cobalt ore in the nether and cobaltite ore in the Twilight Forest.\n\nYou need to level up your obsidian level tool, use a alumite tool, or make an Ironwood Pickaxe to harvest cobalt ore.\n\nAnother nice way to get gallium and arsenic is with XP buckets in a crafting grid.\n\nMix those two dusts in a mixer to get gallium arsenic dust.\n\nIn the nether it is easier to use a GT miner near the ceiling to get all the ores you need."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2039,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2980,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2039,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":837,"preRequisites":[791],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32038,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lILC and RAM","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits need integrated logic circuits and random access memory chips.\nYou can get those by cutting the ILC and RAM wafers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32036,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32038,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":838,"preRequisites":[785,793],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next tier we need advanced circuits. To make an advanced circuit, you need good integrated circuits, RAM, an integrated logic circuit, and transistors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28308,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":839,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32498,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHandle tiny piles like a K1ng","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Don't you hate having to manually compress all those tiny piles ? Well, let me show you how to automate that. A combination of typefilter, chest buffer (or super buffer in HV) and packager frees you from that annoying task. The chestbuffer can hold up to 9 stacks of tiny piles and the super buffer can hold 256 stacks of tiny dusts, which is more than enough. You can set its mode with a screwdriver on the output side. Set it to 9 to export 9 tiny piles at a time and let the packager compress these into regular dusts.\n\nSuper buffers can be lag sources, so be careful to keep them as empty as possible. If you are using a multiblock packager, be sure to change the buffer from Stocking mode to Transfer Size mode."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":9251,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":9231,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32498,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":401,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemItemConduit","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1386,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":840,"preRequisites":[643,641],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30644,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lButane and Propane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can distill a lot of different gases out of your \"refinery gases\".\nMethane, butane, propane, helium and ethane.\n\n§4Hint:\nRefinery gas is not the best source for Propane and Butane. Better refine those out of naphtha."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30643,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30644,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":841,"preRequisites":[850,851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30639,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTetranitromethane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bio diesel and diesel can be boosted using tetranitromethane. Ethenone and nitric acid are required to make tetranitromethane in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30653,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30641,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30639,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30629,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":842,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMethane Gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Methane gas with a burn value of 104,000 EU per cell can be burned in the gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30691,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":843,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30673,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Methanol with a burn value of 84,000 EU per cell can be used to make biodiesel and other fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30673,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":844,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ethanol with a burn value of 192,000 EU per cell can be used to make biodiesel and other fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30706,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":845,"preRequisites":[843,844,849,848,1544],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30627,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBio Diesel Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With ethanol or methanol and seed oil or fish oil you can make bio diesel. Burn value is 256,000 EU per cell. Diesel and bio diesel are needed for cetane-boosted diesel.\n\nYou get some glycerol as by-product. Save it so you can make glyceryl trinitrate for your dynamite or for your future epoxid production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30627,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30627,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30691,"OreDict":""},{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":846,"preRequisites":[550,126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lO like Oxygen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oxygen can be made in several different ways. Most commonly you'll either electrolyze it out of cassiterite sand, sugar from sugar canes or sugar beets, water, or various other oxygen-rich dusts, or centrifuge it from brown or yellow limonite dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":91,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2930,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2931,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":847,"preRequisites":[1744],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can make ethylene many different ways\n\n- Ethanol and sulfuric acid in a Chemical Reactor \n- Ethanol in a Chemical Dehydrator\n- Distilling various gases (i.e. wood gas) in a Distillery\n- Cracking Naphtha, fuels or refinery gas with hydrogen or steam in the Chemical Reactor will work too. Check NEI or the Game Mechanics Spreadsheet at http://bit.ly/gtnh-datasheets for details"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemBiochaff","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":848,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:fluid.seedoil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSeed Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make some bio diesel you need seed oil or fish oil and mix that with ethanol or methanol. Seeds give seed oil and fish produce fish oil when placed in a fluid extractor.\n\n§4Pam's peanuts are a good seedoil source. Another option is Forestry Butternuts. Or you can use IC2 crops to get Rapeseed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30713,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30711,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":849,"preRequisites":[543,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2685,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lSodium Hydroxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Make some sodium hydroxide. You can make it out of sodium (or out of salt water once you reach EV).\n\n§5§4The by-product hydrogen can be burned in a gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2017,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2685,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2017,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":850,"preRequisites":[852,893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthenone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hopefully you saved some sulfuric acid during your fuel production. Together with acetic acid you can make ethenone.\nCraft an advanced chemical reactor to get access to more advanced recipes.\n\nSave the ethenone for HV, you will need it to make tetranitromethane for cetane boosted diesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30670,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30691,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":851,"preRequisites":[846,853],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30653,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitric Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nitric acid can be made out of water, oxygen and nitrogen dioxide."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":12,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30717,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":852,"preRequisites":[847,846],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30670,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAcetic Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Acetic acid can be made out of oxygen and ethylene. Alternatively, it can be made out of biomass, wood vinegar or vinegar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30670,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":853,"preRequisites":[846,855],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitrogen Dioxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make nitrogen dioxide you need to combine oxygen gas and nitric oxide in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30658,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30717,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":854,"preRequisites":[550,555,943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAmmonia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nitrogen and hydrogen... Ammonia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":78,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30012,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30659,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":855,"preRequisites":[846,854],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30658,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitric Oxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make nitric oxide you need to combine oxygen and ammonia in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30658,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":856,"preRequisites":[857,858,2293],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§l1,1-Dimetylhydrazine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make 1,1-dimethylhydrazine you need to combine some dimethylamine and chloramine in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30655,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":857,"preRequisites":[854],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimethylamine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining ammonia and methanol in a chemical reactor produces some dimethylamine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30673,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30659,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":858,"preRequisites":[854,859],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChloramine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining hypochlorous acid and ammonia in a chemical reactor produces some chloramine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30659,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":859,"preRequisites":[126,1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lHypochlorous Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hypochlorous acid requires water, chlorine and some mercury."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30087,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":860,"preRequisites":[1012,1424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11028,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lTitanium finally","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rutile, chlorine and carbon dust makes Titaniumtetrachloride. Combining this with Magnesium in an HV EBF will give you hot Titanium ingots. Freeze those and you will get your first titanium.\nOn the Moon if you are lucky you can find Ilmenite ore which make the processing of Titanium a bit easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":12028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":861,"preRequisites":[1244,1891],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11316,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lTungstensteel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is needed for the next tier. Tungsten can be found on Mars or in Moon stone dust. Mix that with some steel dust. Smelt it at 3000K (requires nichrome coils) in an electric blast furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11316,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":862,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:ShortBow","Count":1,"tag":{"InfiTool":{"BaseDurability":57,"BaseAttack":2,"DrawSpeed":16,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":57,"MiningSpeed2":150,"BaseDrawSpeed":16,"Head":0,"Attack":2,"Handle":0,"Broken":0,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":3,"Modifiers":0},"display":{"Name":"Wooden Shortbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first bow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since vanilla bows are only craftable in the assembling machine and mobs do not drop them very often you have to make a Tinkers bow. Wood would be the best material for now. So craft the bow limbs out of wood and the bow string out of strings. The arrow that has the most durability is bone, so craft the stick out of bone. It is much lighter but less durable than a regular arrow. Use a flint tip to make it repairable with flint.\n\n§4You can repair your bow the same way as all the other Tinkers tools. Arrows can be regained by repairing them or picking them up from the floor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:Pattern","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":25,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":3,"Damage":0,"OreDict":"plankWood"},{"id":"minecraft:bone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:fletching","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:BowLimbPart","Count":2,"Damage":0,"OreDict":""},{"id":"TConstruct:bowstring","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:ShortBow","Count":1,"tag":{"InfiTool":{"BaseDurability":57,"BaseAttack":2,"DrawSpeed":16,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":57,"MiningSpeed2":150,"BaseDrawSpeed":16,"Head":0,"Attack":2,"Handle":0,"Broken":0,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":3,"Modifiers":0},"display":{"Name":"Wooden Shortbow"}},"Damage":0,"OreDict":""},{"id":"TConstruct:ArrowAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000029802322,"BaseDurability":107,"BaseAttack":2,"ToolEXP":0,"HarvestLevel":1,"RenderHead":3,"ModDurability":0,"Shoddy":0,"RenderHandle":1,"Accuracy":95,"Accessory":0,"MiningSpeed":400,"Unbreaking":0,"Damage":0,"BonusDurability":0,"TotalDurability":107,"Head":3,"Attack":2,"Handle":1,"Broken":0,"Mass":3.125,"Ammo":11,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Flint Arrows"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bone","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":863,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Javelin","Count":1,"tag":{"InfiTool":{"BaseDurability":35,"ExtraAttack":44,"BaseAttack":6,"ToolEXP":62,"Built":1,"ExtraSmite":20,"ExtraLuckLooting":33,"HarvestLevel":4,"RenderHead":14,"ModDurability":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":35,"Head":14,"Attack":6,"Handle":14,"Broken":0,"Ammo":7,"RenderAccessory":14,"ToolLevel":1,"RepairCount":1,"Modifiers":0},"display":{"Name":"Bronze Javelin"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBronze javelin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The bronze javelin is a bit expensive and has only 7 throws, yet it is a good mid-range weapon. With one bronze ingot you can replenish your stack of javelins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":25,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toughRod","Count":2,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:Javelin","Count":1,"tag":{"InfiTool":{"BaseDurability":35,"Head":14,"BaseAttack":6,"ToolEXP":0,"HarvestLevel":4,"Attack":6,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Ammo":7,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":35},"display":{"Name":"Bronze Javelin"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32241,"OreDict":""},{"id":"TConstruct:materials","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":864,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:ThrowingKnife","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":1,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Ammo":12,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Throwing Knife"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first flint throwing knife","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Is the bone bow too expensive for your taste? Then make a flint throwing knife instead. You need flint and a stick to get 12 knives. The durability and the attack damage are very low but it still helps with killing mobs from a safe distance."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":12,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:knifeBlade","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:ThrowingKnife","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":1,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Ammo":12,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Throwing Knife"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":865,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_bars","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMonster trap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're lucky you spawned in a sand or rainforest biome and find some quicksand. Collect a stack of the stuff, dig a small ditch and fill it with the quicksand to protect your \"dirt base\" home. Just don't fall in!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mud","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:torch","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":866,"preRequisites":[97,667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All the different mining veins that have been found seem to be really far apart. One way to shorten the travel time is to create a railroad from your base to the different mines. Sadly this requires a large amount of both iron and creosote. Let's not forget to place the last symbolic rivet on one of your new train lines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:rail","Count":512,"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.buffer.stop"},"Damage":32363,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:rail","Count":128,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":60,"Damage":0,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":867,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLapis, Lazurite, Sodalite, Calcite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to make your bricked blast furnace you need to find a lapis vine containing calcite.\nYou can find the vein in the overworld or the Twilight Forest at Y 20-50."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":526,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":524,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":823,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32244,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2934,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":868,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2934,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§3§lGypsum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make bricks for the blast furnace you need concrete and gypsum. Gypsum can be found in a vein together with basaltic and granitic mineral sand, and fullers earth. Y 50-60 and only in the overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":935,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":936,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":928,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":934,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:gingerbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pumpkinbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2934,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2823,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":869,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSifting Machine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need flawless or exquisite diamonds, emeralds, rubies or other gems? Well then it's time for you to make a Sifting Machine.\n\nYou can find small Zinc ores (look in NEI) or you can search the Nether for Sphalerite.\n\nYou'll need either an Ore Washer or Simple Ore Washer since the Sifter only takes purified ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6535,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":870,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSmelt all the things...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smelting up to nine items at once? With a bit of steel you can make a railcraft Steam Oven. 2x2x2\n\nHint: All furnace recipes work just fine, but you cannot use it to make charcoal from wood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":104,"OreDict":""},{"id":"Railcraft:machine.beta","Count":8,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":8,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":8,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":871,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32307,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lMolds, molds, molds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make steel and have a tinkers smelter you have to make molds. Molds can be used in the alloy smelter and the fluid solidifier. You need them to make vacuum tubes, ingots, gears and more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32302,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32307,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32309,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":872,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:maplesyrupItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Maple Syrup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You spent hours and hours to find some maple trees? Why not use your forest ranger coins to buy some syrup? Add some spruce saplings and plant some maple trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:pammapleSapling","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":873,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:rhubarbseedItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Seed Bags","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finding some special \"pams harvest craft\" seeds can be very difficult. With your farmer coins you can buy some seedbags."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":35,"OreDict":""}]}]},{"questID":874,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.pad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Jetpack v.0.1 Alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you like flying? Ok then, make a slimy bouncepad and enjoy the good view."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:slime.gel","Count":3,"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:slime.channel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:slime.pad","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:slime.gel","Count":4,"Damage":2,"OreDict":""},{"id":"TConstruct:slime.sapling","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":55,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":875,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSlime Island Journey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rubber trees are not the only source for raw rubber. Go and find a slimy island high in the sky. Slime balls and slime leaves give raw rubber too.\nMake some slime tree farms beside your rubber farm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:CraftedSoil","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:slime.sapling","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:strangeFood","Count":4,"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_sword","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:ladder","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":876,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1169,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBring me my vat of polyethelyne!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of using small cells to process chemicals? Build a Large Chemical Reactor and you can just pipe in and out fluids. Or use the glorious large fluid cells to deliver and remove fluids from the hatches. \n\nBe careful, if the output hatches are full, the reactor will void any extra products!\n\nSome of the old recipes can now be done simply in the LCR, btw.\n\nThe LCR also counts as a cleanroom for any cleanroom recipes.\n\nYou will also need:\n1 Maintenance Hatch\n1 Energy Hatch\n1 Input Bus\n5 Output Bus\n5 Input Hatch\n5 Output Hatch"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1169,"OreDict":""},{"id":"gregtech:gt.blockcasings8","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings8","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32408,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":877,"preRequisites":[879],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood","sceptre":1},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scepter with 75 vis capacity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A scepter is crafted from a wand core, a primal charm, three wand caps, a twilight forest monster mob drop, and some screws. Any sort of core or cap may be used, but the caps must match each other. A scepter cannot hold a focus, but holds 150 percent as much vis as a wand with the same core, and gives an additional 5 percent discount for costs, beyond any discounts from its caps or the user's worn equipment. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LichBone","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood","sceptre":1},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":878,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic Staff Core","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A staff requires an extra step for crafting: Two (matching) wand cores must be combined with a primal charm, and crystal clusters to produce a staff core. (While the recipes are all similar, each type of staff core requires a separate research topic to be learned.) "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":879,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Primal Charm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new 50 vis wand you are able to make a Scepter which holds up to 75 vis.\nFirst you need some primal charms which cost 50 vis to craft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28351,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCrystal","Count":4,"Damage":6,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":880,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":66,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Witch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. What's cooking?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":66,"OreDict":""}]}]},{"questID":881,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":57,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Pigmen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Do you want some bacon?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":57,"OreDict":""}]}]},{"questID":882,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Blaze","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me warm you up a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":61,"OreDict":""}]}]},{"questID":883,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":62,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magma Cube","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely, and bouncy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":62,"OreDict":""}]}]},{"questID":884,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Enderman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Don't look me in the eyes!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":58,"OreDict":""}]}]},{"questID":885,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":59,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Cave Spider","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me sing itsy-bitsy spider for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":59,"OreDict":""}]}]},{"questID":886,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ghast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. At least you're not a big cry-baby?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":56,"OreDict":""}]}]},{"questID":887,"preRequisites":[878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Wizard's Staff has a Knob on the End","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Join the core with two wand caps, a twilight forest mob drop, and screws just as for making a wand. A staff cannot be used for crafting, but holds 250 percent as much vis as a corresponding wand. It can even serve as a backup weapon for melee. While it cannot receive weapon enchantments, its damage is decent, and it does not take damage with use (no durability bar)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":888,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":60,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Silverfish","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me be as annoying as possible."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":60,"OreDict":""}]}]},{"questID":889,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magma Cube","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Wanna bounce?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":5,"Damage":56,"OreDict":""}]}]},{"questID":890,"preRequisites":[16],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lBetter Tank... ULV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 32 buckets in a tank. The ULV Tank from Gt++ needs steel plates, iron plates, tin plates, a clay pipe, and a water bucket."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":817,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":30768,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":891,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Tank... LV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 64 buckets in a tank. The LV Tank from Gt++ needs steel plates, iron plates, bronze plates, a huge clay pipe, and an LV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":892,"preRequisites":[891,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Tank... MV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 128 buckets in a tank. The MV Tank from Gt++ needs steel plates, darksteel plates, bronze plates, a bronze pipe and an LV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":819,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":893,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #2 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second item you'll need a lot of in MV tier. When you want to get fluid out of tanks you'll need one. \n\n§4Hint: Goes pretty well with fluid pipes or GT machines, adjust with a screwdriver. It can also be upgraded further into a fluid regulator which allows precise control of fluid transfer speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32611,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5134,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":894,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter Tank... HV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 256 buckets in a tank. The HV Tank from Gt++ needs aluminium plates, darksteel plates, vacuum tubes, a steel pipe, and an MV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":820,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":895,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32631,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #1 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first item you'll need a lot of in MV too. If you want to pull items out of chests or barrels you'll need one. \n\n§4Hint: Goes pretty well with item pipes or GT machines, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32631,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":896,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #3 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An electric piston for your MV machines. The third item you are going to craft a lot of in the future."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":897,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #4 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fourth item you'll need a lot of in MV, which is also a pain to craft. Arguably the most painful item ever. \n\n§4Hint: Works like a conveyor but can work with selected item slots. Adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":898,"preRequisites":[890,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":767,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSimple Ore Washer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Too lazy to make an ore washer, yet bored with your non-automatable cauldron? Then the simple washer is the machine for you! It works reasonably fast and uses only 8eu max - make sure you don't provide too much voltage! Ok, so you do not get any byproducts, but who cares!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":899,"preRequisites":[409],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paying the highest price","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A tier 2 blood altar needs 8 runes placed around the altar. Your new altar can hold more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":900,"preRequisites":[901],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Don't look it in the eyes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bad things may happen if this creature is allowed to stay alive. The ores in its cave are valuable anyway."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Hydra","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":901,"preRequisites":[903],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.meefStroganoff","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"I don't even...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ok so there is this maze. And there are... minotaurs. But what in the world is a minoshroom?"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Minoshroom","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":902,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"A big ugly snake","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Required for your first wand and in general, an ugly creature."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Naga","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":903,"preRequisites":[902],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Adventure time!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stop him before he makes his wish at Prismos'!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Twilight Lich","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":6,"Damage":0,"OreDict":""}]}]},{"questID":904,"preRequisites":[900],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.phantomHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Who you're gonna call?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Phantom Busters! Or wait... Ah whatever. They drop good armor by the way."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Knight Phantom","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":905,"preRequisites":[904],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"The big fluffy crybaby","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It flies, it makes funny sounds, and .. IT'S SO FLUFFY! Well, kill it."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Tower Ghast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":906,"preRequisites":[907],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Let her go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It seems the cold doesn't bother her. Committed crimes: None. But... you know... you have to progress somehow..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Snow Queen","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":907,"preRequisites":[905],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.alphaFur","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Yeti. Alpha, Yeti.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wanted: Alpha Yeti. Death. Committed crimes: Violently throwing ice at people, for no reason."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Yeti Boss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":908,"preRequisites":[451],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secret: A nice....","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey, you! I want that lamp. I have something for you in return. You don't need it anyways, do you?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:cleaver","Count":1,"tag":{"InfiTool":{"RenderExtra":9,"BaseDurability":27,"BaseAttack":6,"ToolEXP":0,"Built":1,"Moss":3,"Effect1":4,"HarvestLevel":0,"ModifierTip1":"Moss","RenderHead":9,"ModDurability":0,"Shoddy":0,"RenderHandle":9,"Accessory":9,"MiningSpeed":100,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":27,"MiningSpeed2":100,"Head":9,"Tooltip1":"Auto-Repair","Attack":6,"Handle":9,"Broken":0,"Extra":9,"RenderAccessory":9,"ToolLevel":1,"Modifiers":20},"display":{"Name":"Paper Cleaver"}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":909,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Creeper)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who hasn't experienced this... You think nothing evil, mine a few diamonds, and suddenly, you wake up in your bed, all your items gone. Time to strike back!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Creeper","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":910,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gold_nugget","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Pigman)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\"Zombie Pigman\"? What the hell is going on with you zombies! Maybe you should encase your animals better at night..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"PigZombie","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":911,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Spiders)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eeeek! Wall climbing monsters, gross! Slay them. Quickly! Watch out for the witch spiders, they can give as good as they get."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Spider","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":912,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Skeleton)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Arrows are nice, if you shoot them. If one hits you, well, bad things happen. \n\nHint: Arrows are an excellent source of telum."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Skeleton","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":913,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Blaze)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You should be careful with this task. Fire protection is highly recommended."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Blaze","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":914,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Zombie)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody knows who they are, or where they came from. They're just annoying at night, and too stupid to make a crafting table."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Zombie","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":915,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:enderman_head","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Enderman)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Uh, fancy teleport pearls. You need them. All of them. Now!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{"SMData":{"SMWebImmune":0,"SMArrowRefireMin":0,"SMUnderPressure":0,"SMWaterDamage":0,"SMLeash":0,"SMBurningImmune":0,"SMArrowSpread":14,"SMRegenTick":0,"SMFallImmune":0,"SMWaterPushImmune":0,"SMArrowRange":0,"SMArrowMoveSpeed":0,"SMArmor":0,"SMWaterBreath":0,"SMArrowRefireMax":0,"SMTex":["minecraft:textures/entity/enderman/enderman.png","minecraft:textures/entity/enderman/enderman_eyes.png"],"SMScale":0.9321846,"SMFireImmune":0,"SMArrowDamage":2,"SMPotionImmune":[],"SMRegen":0}},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":40,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.30000001192092896,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":7,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"carriedData":0,"PersistenceRequired":0,"HealF":40,"id":"Enderman","carried":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":6506027634560194000,"Health":40,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27476269499968,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Enderman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":916,"preRequisites":[913,909,914,910,915,912,911,537,985],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Wither)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After collecting a couple of those wither skeleton heads, you feel like you could use some more action. So why not kill a wither? You'll need a ton of nether stars anyway...\n\nKill it twice for something nice."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"WitherBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":3,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":917,"preRequisites":[456],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:heartCanister","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Secret: The trade for life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have been busy my friend. I have something for you. Give me your hearts, and I will magically enhance them so you can actually use them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"betterquesting:extra_life","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:heartCanister","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":918,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Skeleton: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to advance to a higher tier and reach Mars, Deimos and Phobos, you need to make yourself a better rocket. There are rumors that an Evolved Skeleton hiding out on the Moon has schematics of such a device."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Moon","range":-1,"index":0,"dimension":28,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":450,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.4000000059604645,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":450,"id":"GalacticraftCore.EvolvedSkeletonBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":3550669721897671700,"Health":450,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":2977706436292,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedSkeletonBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":919,"preRequisites":[918],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Creeper: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not that regular creepers are nasty enough, no. There is an evolved creeper boss! He is your key (Well he HAS a key...) to reach the next tier of planets (Asteroid Belt, Ceres, Io, Europa, Ganymede, Callisto)."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Mars","range":-1,"index":0,"dimension":29,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":-2,"Name":"tc.mobmod"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftMars.CreeperBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-3749161857075506000,"Health":600,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31694812711759,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftMars.CreeperBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":920,"preRequisites":[919],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"inventory":{},"type":4,"leftTank":{"Empty":""},"rightTank":{"Empty":""}}},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Blaze: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to proceed to Tier 4 Planets, the blaze boss needs to be killed. Find him in one of the dungeons on Ceres."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Ceres","range":-1,"index":0,"dimension":42,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossBlaze","Fuse":30,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-2265408451657568300,"Health":600,"roomCoordsX":0,"Dimension":0,"OnGround":0,"ignited":0,"Air":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24409945973051,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"ExplosionRadius":3,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossBlaze","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":921,"preRequisites":[920],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:misc","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Ghast: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fluffy, fluffier, ghasts! And also big crybabies. This one hides in a dungeon on IO, and holds the key for Tier 5 planets."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"IO","range":-1,"index":0,"dimension":36,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossGhast","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-1940216915570942500,"Health":600,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31541628372871,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossGhast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":922,"preRequisites":[921],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Crystal Boss: Ayyy.. Wait, what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Seriously, a crystal boss? Anyway, it's your key to Tier 6 planets, and he lurks around on Enceladus."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Enceladus","range":-1,"index":0,"dimension":41,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"SkeletonType":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"roomCoordsY":0,"carriedData":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedCrystalBoss","Fuse":30,"carried":0,"ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-6796800124609087000,"Health":600,"roomCoordsX":0,"Dimension":0,"OnGround":0,"ignited":0,"Air":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24491145111402,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"ExplosionRadius":3,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedCrystalBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":923,"preRequisites":[922],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Slime: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Totally looks like a thaumic slime to me. Don't you think so? Find this dude on Proteus."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Proteus","range":-1,"index":0,"dimension":47,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Size":0,"Attributes":[{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossSlime","Motion":[0,0,0],"Leashed":0,"UUIDLeast":7447897214129004000,"Health":600,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31487744687521,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":924,"preRequisites":[923],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Wolf:Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final frontier... A... wolf that is not even an Iron Maiden fan?... What did you expect, a super boss? Heh. No. Budget was too tight..."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Pluto","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":350,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":4,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":5,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":350,"id":"GalacticraftCore.EvolvedBossWolf","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-514555328123248260,"Health":350,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24669862148609,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossWolf","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":925,"preRequisites":[924,908,916,906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeCore","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Technology: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You beat the game, literally. There is nothing left to do, you might want to try real life... But one thing might be interesting for you. You know, just for the phuns. Select one of the totally OP items here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["This! Is OP"]},"Aspects":[{"amount":1000,"key":"instrumentum"}],"nodemod":0,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},{"id":"TConstruct:creativeModifier","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":900100,"terra":900100,"ignis":900100,"cap":"orichalcum","rod":"neutronium","ordo":900100,"perditio":900100,"aer":900100},"Damage":2000,"OreDict":""},{"id":"ProjRed|Fabrication:projectred.fabrication.icchip","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":926,"preRequisites":[410,422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyThaumium","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your altar more powerful you need to upgrade it. You need to build pillars two block high out of blood-soaked thaumium block and on top one block of glowstone blocks on each pillar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:glowstone","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyThaumium","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":927,"preRequisites":[421,430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyVoid","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make tier 4 slates you need a Tier 4 altar. This can be made like the tier 3 altar with pillars out of void-blood-soaked stones four blocks high and a blood brick on top of the pillars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":4,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBloodShard","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:voidBlock","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:largeBloodStoneBrick","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyVoid","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:speedRune","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":928,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make tier 5 slates you need a Tier 5 altar. This can be made with 4 beacons. Beacons have thaumcraft recipes and can be found in the thaumcraft book on the GTNH page."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":929,"preRequisites":[703,702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyIchorium","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The highest tier of the blood altar is tier 6. You need pillars of blood-soaked ichorium 7 blocks high and on top the crystal cluster blocks made out of demon soul shards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":56,"Damage":2,"OreDict":"ingotIchorium"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal8","Count":28,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystal","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyIchorium","Count":28,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":930,"preRequisites":[530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":679,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAuto Mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A miner in LV age? Wow! This nifty machine will find ores for you. Place up to two stacks of mining pipes in the right slots. This machine needs 8 EU/t to work. The miner searches for ores in a 17x17 block work area. Now comes with 2 fortune bonus! Great for gathering additional small ores...\n\nDon't forget to cover it up! These are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":679,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":931,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":680,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAuto Mining MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV miner will find ores for you faster than the LV miner. Place up to two stacks of mining pipes in the right slots. This miner need 32 eu to work. The Miner searches ores in a 33x33 block area and works two times faster than the LV variant. Comes with 4 fortune bonus, great for gathering small ores in the Nether.\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":680,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":932,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAuto Mining HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV miner will find ores for you faster than the MV miner. Place up to two stacks of mining pipes in the right slots. This miner needs 128 eu to work. The Miner searches ores in a 49x49 block area (three chunks wide, perfect for a chunkloader) and works two times faster than the MV variant. It also has a 6 fortune bonus, making it even better for small ores. Recommend taking some with you to the Moon to gather meteoric iron."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":933,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now its time to invest in some renewable energy. Let's start with solar panels. The basic one only gives 1 EU/t. Most GT machines can use them as covers. Be sure to put a glass layer above them in case it rains while you swap panels. You will still want to keep rain off the sides of the machine hull too.\n\n§4The Aluminium Iron plate needs an MV Forming Press."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"IC2:blockAlloyGlass","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"IC2:itemPartCarbonPlate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.AluminiumIronPlate","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":2000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":934,"preRequisites":[933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun 8V","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the ULV one. It generates 8 EU/t. Most gt machines can use them as covers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32750,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17980,"OreDict":""},{"id":"dreamcraft:item.ReinforcedAluminiumIronPlate","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":935,"preRequisites":[933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun 1x1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those single eu panels on a block to make them placeable in the world. Use an MV assembler to combine the panel with a ULV hull."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":936,"preRequisites":[934,206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun at LV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the LV one. It generates 32 EU/t max. Most gt machines can use them as covers. First you need to produce a sunnarium item by using 10 million eu power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17473,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"dreamcraft:item.IrradiantReinforcedAluminiumPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2320,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":937,"preRequisites":[936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun 1x1 LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 32 EU panels on a block to make them placeable in the world. Use an MV assembler to combine the panel with an LV hull, a battery, and a robot arm. Now this panel will clean itself!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32518,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":938,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTreetapElectric","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomated Sticky Resin Farmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are tired of crafting tons of tree taps, how about a machine that uses power but never breaks? Let's craft an electric tree tap!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemTreetap","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemTreetapElectric","Count":1,"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":100000},"Damage":32518,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":939,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemToolHoe","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomated Farmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your hoe must be getting worn out by now. Why not craft an electric one which never breaks?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":4306,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemToolHoe","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":940,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1172,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCleanroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make more advanced circuits you'll need a cleanroom. The cleanroom is a multiblock between 3x4x3 and 15x15x15 (WxHxD) blocks. Besides plascrete blocks for all edges you'll need a controller in the top center, filter machine casings for the rest of the top except edges, an energy and maintenance hatch , a reinforced door and three machine hulls. For now you can use MV tier.\n\nLet's build a 5x5x5 room. Expanding it vertically is easy to do, or you can make it wider and longer, as long as both X and Z match and are odd. Up to 5% of the plascrete blocks can be replaced with Reinforced Glass to see into the cleanroom and check on machines.\n\nYou can pass materials through the walls using Machine Hulls. You can pass 1A of power using Machine Hulls as well, or you can use Diodes to pass multiple amps through walls.\n\nJust be really careful when upgrading you machines. Be sure to remove the machine hulls and diodes and replace them with the new power tier, or else you will be very sad.\n\nIf the Cleanroom has maintenance issues, it will have a chance to void recipes needing a cleanroom. Monitor your cleanroom with a Hand Scanner, Industrial Information Panel, or using a Needs Maintenance Cover and a Redstone Powered Light or Howler Alarm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone_pressure_plate","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemDoorAlloy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockreinforced","Count":82,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":8,"Damage":11,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1172,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":941,"preRequisites":[77,1477,1478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32762,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lA very useful Scanner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The portable scanner is a tool capable of showing advanced information about almost every block in the game. \nIn order to function, the tool needs to be charged first. It can hold up to 400k EU and accept 128 EU/t or less. This is MV tier.\n\nIt can scan crops, which shows more information than the cropnalyzer does. The crop, which was scanned in the world, will drop a scanned seed bag.\nIt can scan machines from GregTech, giving information about current progress, the stored energy, efficiency, problems and CPU-load - be sure to check the full chat window for additional details.\nFor any block in the game it scans, it gives information about its ID, Metadata, position in the world and hardness value.\nIt also gives information about pollution level in the chunk the scanned block belongs to.\nIn addition it shows when the cleanroom has reached its 100 percent efficieny level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32762,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32764,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":942,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":16384000,"SecondaryMaterial":"Neutronium"}},"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lIt's a dirty job, and you're going to do it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Plunger is used to clear liquids from pipes. It can also be used on a machine to remove up to 1000mb of fluid from its internal buffer. You don't have to wrench your machine and replace it. It can be crafted from a rod of the desired material and rubber sheets. \n\n§4Hint: Plunger deals 2.75 - 7.75 damage depending on the materials used."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":44,"OreDict":"craftingToolPlunger"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:oldworldveggiesoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":943,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":423,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPerforming chemical experiments at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High tier chemical recipes like ammonia need an HV chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":423,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5683,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":944,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSuper Tank I","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 4000 buckets in a tank. The super tank I needs a hermetic casing made with aluminium plates and PTFE pipe. The tank need 4 circuits, a pulsating iron plate and an MV pump. Now you can store the same amount of fluids a steel 5x5 Railcraft tank contains in a single block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings6","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":945,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2879,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lChad - A better way to make Paper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making paper out of wood pulp and water can be tedious and difficult. Why not macerate some sugar cane down to chads and press it with two stone plates to paper? Later on you can use the chemical bath for a even better ratio."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":"craftingToolMortar"},{"id":"minecraft:reeds","Count":45,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:stone_slab","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":2879,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:paper","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"minecraft:stone_slab","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":946,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:planks","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBamboo fence","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are lucky and start off in a bamboo forest.\nBamboo is a very useful tree since it grows really fast and when you place bamboo sticks they will grow and protect your base behind a 3 block tall wall.\nAlternatively, you can also use Berry Bushes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:bamboo","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:saplings","Count":20,"Damage":2,"OreDict":""},{"id":"TConstruct:trap.punji","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":947,"preRequisites":[43],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:trap.punji","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lPunji Sticks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A early game protection moat can be made out of punji sticks. It hurts all mobs/players and additionally gives a slowness II potion effect. Make a trench around your base and put the punji sticks inside."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":20,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":20,"Damage":0,"OreDict":""},{"id":"minecraft:reeds","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:trap.punji","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:saplings","Count":10,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":948,"preRequisites":[37,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11304,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBetter than iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wrought Iron will become more important very soon when you have a bit of steel and are able to build high pressure steam machines. The material is much harder than iron, and you can make better tools with it too.\nTo make wrought iron, you need a tinkers smelter to melt some iron ingots down and cast nuggets; put these in a furnace to get wrought iron nuggets. With the compressor, you can compress the nuggets into ingots.\n\n§§§4§4§9§4Hint:\nCrushed or purified iron ore (not an impure version, look for Chalcopyrite veins) can be smelted to iron nuggets directly. Or you can use an alloy smelter to turn iron ingots into nuggets faster than a smeltery.\n\nLater on, you can use an arc furnace to make wrought iron ingots directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":9032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":9304,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":11304,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"WroughtIron","MaxDamage":38400,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"WroughtIron","MaxDamage":38400,"SecondaryMaterial":"WroughtIron"}},"Damage":16,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":949,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:stalkgarden","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Garden Bags","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finding some special \"Pam's HarvestCraft\" gardens can be very difficult. With your farmer coins you can buy some garden bags."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":36,"OreDict":""}]}]},{"questID":950,"preRequisites":[89],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":3456000,"globalShare":1,"questLogic":"AND","name":"XP berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few xp berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmerI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":5,"OreDict":""}]}]},{"questID":951,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":522,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFluid Solidifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use molds to make plates, sticks, bolts and many more item parts in the fluid solidifier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":522,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":952,"preRequisites":[951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBase too big? I've got a fix for you!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Keeping a base spread apart for pollution or explosion prevention can really wear you out. Try harvesting some Marble and centrifuging it into Calcite, and mix up some concrete in your Mixer. Next output it into a Fluid Solidifier with a block mold to make concrete blocks. You'll move faster on top of these blocks. They can even be turned into bricks to prevent unwanted spawns! Hint: 10 buckets of wet mix converts to exactly 160 blocks. These blocks can also be Chiseled into different varieties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":24,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":2845,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2939,"OreDict":"dustQuartzSand"},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2299,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":953,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5143,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel pipes are much better than steel pipes. Like all high tier pipes (Titanium, Tungstensteel etc) you need a better wrench to deconstruct the pipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5143,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":954,"preRequisites":[75,143],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockReservoir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThe \"Water Problems\" are solved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Entering the HV age you found a way of making a water reservoir which solves the finite water problem. Craft it with some fused quartz glass, HV pumps, and cauldrons."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockFusedQuartz","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32612,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:cauldron","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:blockReservoir","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":955,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Piston","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some pistons? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:sticky_piston","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":956,"preRequisites":[103,95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5122,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Bronze Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bronze fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5122,"OreDict":""}]}]},{"questID":957,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23354,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Magnetic Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic iron for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23354,"OreDict":""}]}]},{"questID":958,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21057,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tin Rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some tin rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21057,"OreDict":""}]}]},{"questID":959,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Iron Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some iron rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23032,"OreDict":""}]}]},{"questID":960,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Brass Rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some brass rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23301,"OreDict":""}]}]},{"questID":961,"preRequisites":[103,530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8516,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Certus Quartz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some certus quartz? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":8516,"OreDict":""}]}]},{"questID":962,"preRequisites":[98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:vacuumhopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lVroooooom...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of standing around to collect all the drops and XP from your diamond spikes?\n\nMake yourself a vacuum hopper to suck up all the drops and XP. Feed the XP into a tank to store it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:vacuumhopper","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":963,"preRequisites":[834],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Basic Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some basic circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32100,"OreDict":""}]}]},{"questID":964,"preRequisites":[748],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Good Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some good circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""}]}]},{"questID":965,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32700,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Vacuum Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some vacuum tubes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32700,"OreDict":""}]}]},{"questID":966,"preRequisites":[835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32716,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Resistors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some resistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32716,"OreDict":""}]}]},{"questID":967,"preRequisites":[747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Diodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some diodes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""}]}]},{"questID":968,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""}]}]},{"questID":969,"preRequisites":[785],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Transistors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some transistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32717,"OreDict":""}]}]},{"questID":970,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ram Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ram wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""}]}]},{"questID":971,"preRequisites":[794],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32037,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Integrated Logic Circuit Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some integrated logic circuit wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32037,"OreDict":""}]}]},{"questID":972,"preRequisites":[546,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30707,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some oil? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30707,"OreDict":""}]}]},{"questID":973,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:fluid.creosote.cell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Creosote Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some creosote oil? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30712,"OreDict":""}]}]},{"questID":974,"preRequisites":[641,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30739,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Naphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some naphtha? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30739,"OreDict":""}]}]},{"questID":975,"preRequisites":[644,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Methane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some methane? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30715,"OreDict":""}]}]},{"questID":976,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Ethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ethanol? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30706,"OreDict":""}]}]},{"questID":977,"preRequisites":[846,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Oxygen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some oxygen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30013,"OreDict":""}]}]},{"questID":978,"preRequisites":[555,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30012,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Nitrogen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some nitrogen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30012,"OreDict":""}]}]},{"questID":979,"preRequisites":[550,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Hydrogen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some hydrogen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30001,"OreDict":""}]}]},{"questID":980,"preRequisites":[745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30726,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Glue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some glue? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30726,"OreDict":""}]}]},{"questID":981,"preRequisites":[1084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Lubricant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some lubricant? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30724,"OreDict":""}]}]},{"questID":982,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Sulfuric Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What some sulfuric acid? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30720,"OreDict":""}]}]},{"questID":983,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Engineering processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some engineering processors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":24,"OreDict":""}]}]},{"questID":984,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Silverwood Sapling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silverwood saplings are always rare to find. Want some? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":8,"Damage":1,"OreDict":""}]}]},{"questID":985,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Ghast)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They shoot you with explosive fireballs but they are weak when you hit them or knock the fireballs back with a weapon. Better upgrade your armor with fire and blast protection.\n\nSorry about the giant ghast Amancila, it can't be changed. \n\nYou'll need to kill 10."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Ghast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":986,"preRequisites":[943,602],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal_frame","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Is this the End? No the END Dimension","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your investigation into the pearls has shown you that the source of the disturbance seems to be coming out of the shimmering portals inside strongholds. You feel strangely drawn into its mysterious depths.\n\nHint: throwing Ender Eyes in the air in the Overworld will guide you to the nearest stronghold . From time to time Ender Eyes are destroyed in this process, so make extras."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_pearl","Count":12,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"END","range":-1,"index":2,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"BiomesOPlenty:helmetAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":78}],"RepairCost":2,"display":{"Name":"Dream Masters Helmet"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:chestplateAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":34}],"RepairCost":2,"display":{"Name":"Dream Masters Chestplate"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:leggingsAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":34}],"RepairCost":2,"display":{"Name":"Dream Masters Leggings"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:bootsAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":2},{"lvl":5,"id":3},{"lvl":5,"id":4}],"RepairCost":2,"display":{"Name":"Dream Masters Boots"}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":987,"preRequisites":[604,990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"ACTIVATED","storedEnergyRF":5000000},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUpgraded RF Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Capacitor Banks are upgraded RF batteries which can store the RF power you generate. You can put many blocks together to enlarge your total battery capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":2,"tag":{"type":"ACTIVATED","storedEnergyRF":0},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":988,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":25000000},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lBigger, Better, Chargier?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Vibrant Capacitor Bank is the largest RF Battery for now. It can store 25 million RF in a single block. Putting many capacitor banks together will enlarge your total battery capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":989,"preRequisites":[160,81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11367,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lVibrant alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vibrant alloy is a high tier EnderIO alloy made out of ender eye, energetic alloy and chrome dust. 3600k heating coils and a vacuum freezer are needed to make ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11367,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":990,"preRequisites":[78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11366,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnergetic Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic alloy is a new alloy from EnderIO made out of gold, conductive iron and black steel dust. Double-layer capacitors need it and it can be made in the electric blast furnace with tier 2 coils (2700K)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11366,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":991,"preRequisites":[141,139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dark Steel Armor basic upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to upgrade one armor item with basic upgrades, you need a vibrant crystal and 10 xp levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:craftingMaterial","Count":36,"Damage":2,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8194,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":992,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"NA":0,"Health":30,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Go find some tropical bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next you will need to find some tropical bees. The hives can be found in Jungle biomes. Be careful as these bees are very aggressive and can poison you. Collect the silky combs and extract some silk wisp from those in order to make some Apiarist's clothes.\nLooking for pristine Bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beeCombs","Count":8,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":993,"preRequisites":[992,539,994],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeCombs","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Silky combs and Propolis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collect silky combs and extract some silk wisp out of it in order to make some Apiarist's clothes.\nThis can take quite a bit of time.\nUse a GregTech or Forestry Centrifuge to get Silky Propolis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":370,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:propolis","Count":305,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":25,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":994,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Forestry Centrifuge is able to centrifuge up to 9 items out of bee combs. It uses RF energy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17310,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32600,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20305,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11034,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:waxCapsule","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBees","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":995,"preRequisites":[539,994,993],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:craftingMaterial","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Woven silk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuge your silky propolis to get some silk wisp at a chance of 60 percent. Put 9 silk wisp in the Forestry carpenter or Gregtech assembler to get woven silk. \nThis fine fabric can be used for crafting Apiarist's Clothes or to upgrade your Forestry Backpacks to 45 slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":216,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":24,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":25,"OreDict":""},{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":996,"preRequisites":[578,995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Apiarist's Cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have collected 24 woven silk you can make a complete Apiarist's suit to be protected from bee stings and other bad bee effects. You can also use the suit parts to upgrade your EnderIO Dark Steel Armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":24,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristChest","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristLegs","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":997,"preRequisites":[991],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"id":5635,"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.glide":{"upgradeItem":{"id":5654,"Count":1,"Damage":1},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.glider"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"id":4910,"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.chestplate","slot":1}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dark Steel Armor advanced upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your Dark Steel armor can be upgraded in various ways by combining it with various other items. You will need an anvil and a lot of XP.\n\nMake sure when making the potions to only do three at a time, so the NBT data matches."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristChest","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristLegs","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":3,"Damage":8194,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:waterlily","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"EnderIO:itemGliderWing","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:noteblock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"tag":{"enderio.darksteel.upgrade.soundDetector":{"upgradeItem":{"id":25,"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.sound"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.naturalistEye":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.naturalistEye"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.helmet","slot":0},"enderio.darksteel.upgrade.nightVision":{"upgradeItem":{"Count":1,"Damage":8198},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.nightVision"},"enderio.darksteel.upgrade.gogglesRevealing":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.gogglesOfRevealing"},"enderio.darksteel.upgrade.speedBoost":{"level":2,"upgradeItem":{"Count":1,"Damage":1},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.solar_two"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.glide":{"upgradeItem":{"Count":1,"Damage":1},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.glider"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.chestplate","slot":1}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.leggings","slot":2},"enderio.darksteel.upgrade.speedBoost":{"level":3,"multiplier":0,"upgradeItem":{"Count":1,"Damage":8194},"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.speed_three"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"tag":{"enderio.darksteel.upgrade.swim":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.swim"},"enderio.darksteel.upgrade.jumpBoost":{"level":3,"upgradeItem":{"Count":1,"Damage":0},"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.jump_three"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.boots","slot":3}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:blockSolarPanel","Count":2,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":2,"OreDict":""},{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":8262,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":8258,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":998,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDark Steel Tool and Weapon basic upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to upgrade a weapon or tool, you need a vibrant crystal and 10 xp levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMaterial","Count":2,"Damage":8,"OreDict":""},{"id":"minecraft:diamond_shovel","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":999,"preRequisites":[998],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDark Steel Tool and Weapon advanced upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your weapons and tools can be upgraded even more by adding capacitors and various other items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:diamond_shovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"tag":{"enderio.darksteel.upgrade.travel":{"upgradeItem":{"Count":1,"Damage":8},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.travel"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.travel":{"upgradeItem":{"Count":1,"Damage":8},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.travel"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.spoon":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.spoon"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":2,"OreDict":""},{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""},{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1000,"preRequisites":[989,933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRF Solar Panel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is possible to power RF machines with a solar panel. It outputs 10 RF/t. Perfect for low use RF machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1001,"preRequisites":[1000],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRF Solar Panel Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The upgraded RF solar panel is much better. It outputs 40 RF/t."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1002,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:magicbees.enchantedEarth","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanted Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted Earth makes saplings and seeds planted on it grow faster. When stacked on top of each other it has a chance to add ticks to the block above accumulating all the way to the top. This will randomly speed up growth a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:magicbees.enchantedEarth","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1003,"preRequisites":[936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§aPower of the Sun at MV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the MV one. It gives 128 EU/t max. Most GT machines can use them as covers. First you need to produce sunnarium out of 9 smaller sunnarium pieces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17341,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17470,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"dreamcraft:item.IrradiantReinforcedTitaniumPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2340,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1004,"preRequisites":[1003],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun 1x1 MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 128 EU panels on a block to make them placeable in the world. Use an HV assembler to combine the panel with an MV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1005,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2056,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lIndium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At EV Level you are able to make Indium for HV Solar Panels. Indium cannot be found in Ore form. It can only be made with an EV chemical reactor.\nFirst you need to make indium out of purified galena and sphalerite ore. Mix in some aluminium to get indium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":6839,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":27,"Damage":6830,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2056,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1006,"preRequisites":[1003,1005,861,1890],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the HV one. It generates 512 EU/t max. Most GregTech machines can use them as covers. First you need to produce enriched sunnarium by mixing irradiated uranium and sunnarium. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17339,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32065,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17981,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32705,"OreDict":"circuitElite"},{"id":"dreamcraft:item.IrradiantReinforcedTungstenPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1007,"preRequisites":[1006],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun 1x1 HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 512 EU panels on a block to make them placeable in the world. Use an EV assembler to combine the panel with an HV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32538,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1008,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBooks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Books can be found easily enough in villages or in the roguelike dungeons surface brick house.\nI'm sure they have a recipe too.\n\nNow glue on the other hand...or should I say horse? Try and get a horse inside a smeltery and feed it hay to keep it alive.\n\nOr you can wait until after you go to the Nether and get some sulfur. Either way. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:book","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemDust","Count":32,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32234,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1009,"preRequisites":[633,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish trapping 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fishing can be very boring. Why not automate it with a fish trap?\nThis is your fish trap 2.0"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":5132,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":4,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1010,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:freshmilkItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fresh Water and Milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many cooking recipes need milk and water. Crafting it in the crafting table can be very tedious.\nIt is much easier using a Forestry worktable. Drag-click all your buckets into the worktable, and craft them all at once."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:freshwaterItem","Count":64,"Damage":0,"OreDict":""},{"id":"harvestcraft:freshmilkItem","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2817,"OreDict":""},{"id":"harvestcraft:flourItem","Count":16,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1011,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":822,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Bauxite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main goal when you reach the Moon is to find some bauxite ore to make titanium for the EV machine tier. Some meteoric iron is required for your tier 2 rocket for reaching Mars so be sure to collect a stack from fallen meteors and small ores beneath the surface."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":822,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":19,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":918,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1012,"preRequisites":[1011],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2375,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRutile","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rutile can be thermal centrifuged out of bauxite and ilmenite dust. \nElectrolyzing bauxite can extract even more rutile and putting ilmenite in the electric blast furnace can give some rutile too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":383,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2375,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2010,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30376,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2018,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1013,"preRequisites":[1015,1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32011,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSMD Circuit components","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Surface-mount devices are more advanced circuits parts. They are needed for high tier circuits and are cheaper to craft than basic capacitors, transitors, diodes and resistors. You need an Advanced Assembler and some molten polyethylene.\n\nBe sure to check how much gallium you have available. It might not be worth it to use SMD diodes and resistors until you have a steady supply with an HV macerator, bees, or bauxite ore. Also look into IC2 crops to 4x your zinc, sphalerite, and bauxite.\n\n§4The easiest way to get Platinum is with Nickel ore and a chemical bath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1014,"preRequisites":[1017],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lWorkstation Extreme Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier of circuits are the extreme circuits. Workstation Circuits are the easiest one and are needed in EV Tier. Let's craft some.\n\nIn addition, you will need 16 Diodes, SMD or non-SMD."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32703,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":26085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32704,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1015,"preRequisites":[1021,1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lEmpty Plastic Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plastic circuit boards require plastic Plate with Sulfuric Acid to make an Empty Board. By adding copper foil and Iron(III) Chloride or Sodium Persulfate you can craft a plastic circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":29035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32007,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1016,"preRequisites":[1013,1221,1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lIntegrated Processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are three variants of good circuits. The good electronic circuit, the good integrated circuit and the integrated processor which needs an MV circuit assembling machine. The integrated processor requires a CPU, capacitors, transistors and resistors.\nA cleanroom is needed.\n\nYou will need in addtion 4 Resistors, 4 Capacitors and 4 Transistors. You can use SMD or non SMD versions."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1017,"preRequisites":[1013,1019],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32703,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lProcessor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another variant of the advanced circuit from IC2 is the processor assembly.\nTwo Integrated Processors are needed in the MV circuit assembler recipe.\nThe recipe is a cleanroom recipe.\n\nIn addition you will need 8 Capacitors, SMD or non-SMD is fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32080,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32703,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1018,"preRequisites":[1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lCentral Processing Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Integrated Processors need central processing units. You can get these by cutting a ram wafer.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32044,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24545,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1019,"preRequisites":[1016],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32014,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSmall Coil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Processing assembly needs some small coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":28613,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19345,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1020,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"iron3chloride","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIron (III) Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron(III) Chloride can be made by first making hydrochloric acid out of hydrogen and chlorine. Then combine this with some iron dust to make Iron(III) Chloride.\nYou can etch your board with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30683,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30693,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.integrated_circuit","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1021,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30718,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§r§6§k§r§6§lSodium Persulfate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium Persulfate can be made in the electrolyzer out of sodium bisulfate dust.\nSodium bisulfate is made out of sulfuric acid and salt in the chemical reactor.\nYou can etch your board with it.\nSave the hydrochloric acid for your future epoxid production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2817,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2630,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30718,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemFluidCell","Count":8,"tag":{"Fluid":{"FluidName":"iron3chloride","Amount":1000}},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1022,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23355,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Magnetic Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic steel for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23355,"OreDict":""}]}]},{"questID":1023,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Alu Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some alu rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23019,"OreDict":""}]}]},{"questID":1024,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21300,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Bronze Rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bronze rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21300,"OreDict":""}]}]},{"questID":1025,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5132,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Steel Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5132,"OreDict":""}]}]},{"questID":1026,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":23303,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Electrum Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some electrum rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23303,"OreDict":""}]}]},{"questID":1027,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Flawless Emerald","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some flawless emeralds? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":29501,"OreDict":""}]}]},{"questID":1028,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ender Pearl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ender pearls? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1029,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23356,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magnetic Neodymium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic neodymium for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23356,"OreDict":""}]}]},{"questID":1030,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23306,"OreDict":""}]}]},{"questID":1031,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Steel rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21305,"OreDict":""}]}]},{"questID":1032,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5142,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""}]}]},{"questID":1033,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Chrome Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some chrome rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23030,"OreDict":""}]}]},{"questID":1034,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ender Eyes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ender eyes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_eye","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1035,"preRequisites":[98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:xpshower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBe sure to get your armpits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to use all that delicious XP to raise your levels? Move the tank with XP above you and attach this convenient shower head to take the XP from the tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:xpshower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1036,"preRequisites":[1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Plastic Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some plastic circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}]}]},{"questID":1037,"preRequisites":[1016],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Central Procesing Unit Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some central processing unit wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32045,"OreDict":""}]}]},{"questID":1038,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32011,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Resistors SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD resistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32011,"OreDict":""}]}]},{"questID":1039,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32016,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Diodes SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD diodes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32016,"OreDict":""}]}]},{"questID":1040,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32018,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Transistors SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD transistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32018,"OreDict":""}]}]},{"questID":1041,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Capacitor SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD capacitors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32020,"OreDict":""}]}]},{"questID":1042,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Logic processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some logic processors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""}]}]},{"questID":1043,"preRequisites":[1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Chlorine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some chlorine? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30023,"OreDict":""}]}]},{"questID":1044,"preRequisites":[1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30693,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Iron (III) Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some iron 3 chloride? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30693,"OreDict":""}]}]},{"questID":1045,"preRequisites":[1021],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30629,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Sodium Persulfate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some sodium persulfate? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30718,"OreDict":""}]}]},{"questID":1046,"preRequisites":[586],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":607,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Pyrochlore Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can't find Pyrochlore ore because of an old worldgen? Buy some Ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":607,"OreDict":""}]}]},{"questID":1047,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Forest Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Forest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1048,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Deep Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Attuned Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1049,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ender Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Ender Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1050,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Bees House","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bee houses? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1051,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Apiary","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Apiaries? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1052,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Impregnated Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some impregnated frames? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1053,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Infernal Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Infernal Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1054,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Oblivion Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Oblivion Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1055,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.paper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Did you want to know your warp level?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a few forbidden researches your warp level has increased a bit. Do you want to know how much warp you have?\nCraft some litmus paper to print out the warp level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.paper","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":8,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1056,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Meadow Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Meadows Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1057,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Modest Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Modest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1058,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tropical Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Forest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1059,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Wintry Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Wintry Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":6,"OreDict":""}]}]},{"questID":1060,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Marshy Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Marshy Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1061,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Water Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Water Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1062,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rocky Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Rocky Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1063,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Nether Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Embittered Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1064,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Curious Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Mystical Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1065,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Unusual Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Unusual Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1066,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Resonating Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Sorcerous Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1067,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Space Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Here's an idea for your space station.\nYou can add up to four spin thrusters to your station to rotate it.\n\nDays on space stations last longer than on the overworld, so you can generate more solar power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":24,"Damage":0,"OreDict":"ingotIron"},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11057,"OreDict":"ingotTin"},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":"ingotAluminium"},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.standardWrench","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.spinThruster","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1068,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":2,"id":212}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are you prepared?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you prepared for the Moon?\nA few things will help you to live longer and prevent you from dying on the Moon.\nIf you die on the moon you will be returned to earth without your stuff. A Soulbind enchantment will keep an item with you when you die.\nGraves are placed at the location where you died."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:itemMaterial","Count":1,"Damage":8,"OreDict":""},{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":8}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":2,"id":212}]},"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1069,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Oak, Spruce, Birch, Jungle Sapling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You spawned in a desert and need Oak or Birch saplings? No problem! For five Forestry Coins you can select which one you want to buy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:sapling","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":1,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":2,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":3,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":4,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":5,"OreDict":""}]}]},{"questID":1070,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Magic Feather","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's craft some magical Map focuses to create a magical map which will help you find Twilight Monster Bosses.\nGo find some Raven feathers. You can get them by killing Ravens sitting on Obsidian Blocks in Twilight. Then you need some Torchberries and some Glowstone dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.tfFeather","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.torchberries","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1071,"preRequisites":[1070],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.emptyMagicMap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Magic Map","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the Magic map you need the magic map focus and a stack of paper. Please only use the map in the Twilight Forest. You can only get one map every 24 hours so be careful with it. Using the map in the Overworld or another dimension will lag the server."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.emptyMagicMap","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1072,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:mooncharm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon arrival","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have a small present for you: a Talisman of Remedium which is very useful to persevere during the dark nights with all these monsters.\nFirst you have to prove you can survive on the moon by yourself. After mining some moon turf, dirt, and rock, you can have it.\n\nMake sure you check back in the HV questline for necessary ores you should gather while here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:quartz","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":1,"dimension":28,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:cleansingTalisman","Count":1,"tag":{"enabled":0},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1073,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":182,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Naga","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Naga in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFNagastone","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":182,"OreDict":""}]}]},{"questID":1074,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":190,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Lich","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Lich in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorI","Count":7,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":1,"OreDict":""},{"id":"dreamcraft:item.LichBone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":190,"OreDict":""}]}]},{"questID":1075,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":205,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":960000,"globalShare":1,"questLogic":"AND","name":"Minoshroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Minoshroom in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},{"id":"TwilightForest:tile.TFMazestone","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":205,"OreDict":""}]}]},{"questID":1076,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":189,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":960000,"globalShare":1,"questLogic":"AND","name":"Hydra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Hydra in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFFireJet","Count":1,"Damage":8,"OreDict":""},{"id":"TwilightForest:item.minotaurAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":189,"OreDict":""}]}]},{"questID":1077,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":224,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1200000,"globalShare":1,"questLogic":"AND","name":"Knight Phantom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Knight Phantom in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFUnderBrick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":224,"OreDict":""}]}]},{"questID":1078,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":217,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1200000,"globalShare":1,"questLogic":"AND","name":"Ur Ghast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon an Ur-Ghast in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFTowerStone","Count":1,"Damage":1,"OreDict":""},{"id":"TwilightForest:item.phantomHelm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":217,"OreDict":""}]}]},{"questID":1079,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":226,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1440000,"globalShare":1,"questLogic":"AND","name":"Yeti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Yeti in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":3,"OreDict":""},{"id":"TwilightForest:item.fieryTears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":226,"OreDict":""}]}]},{"questID":1080,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":231,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1440000,"globalShare":1,"questLogic":"AND","name":"Snow Queen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Snow Queen in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.alphaFur","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.AuroraPillar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":231,"OreDict":""}]}]},{"questID":1081,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":222,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Bending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Plate Bending Machine allows you to directly make double, triple or more compressed plates, which might be useful for your first rocket in HV Tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":222,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemDensePlates","Count":8,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1082,"preRequisites":[1083],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":162,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Battery Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"MV machines can internally hold 1 battery. But sometimes you need to store more power than that, or you want a whole powerline to share batteries. You can use a battery buffer to store large amounts of batteries. They come in different sizes like 1x, 4x, 9x and 16x.\nBuild a 4x buffer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":172,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1083,"preRequisites":[758],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32528,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Lithium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Lithium is the best material to use when making batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32528,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17315,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1084,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLubricant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using lubricant instead of water or distilled water in your cutting machines will increase the output or speed of the machines.\nYou can make lubricant out of oil, seed oil, fish oil or creosote in a distillery. If you are able to craft a brewery you can use talc and soapstone to get much more lubricant each cycle.\n\nLube cells are required to make low tier energy hatches, so stockpile a few cells and use the rest to make your cutting machine faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30724,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30713,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1085,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMore Compact Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are starting to find more and more iron you feel your wood chests are too small to hold all the stuff you found and collected. Now it's time to upgrade your chests to iron chests. You can just build a new chest or upgrade the wood chest with a wood to iron chest upgrade item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""},{"id":"minecraft:chest","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:woodIronUpgrade","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1086,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:strawberryjuiceItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Juice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most of your berries can be extracted to juice. This is a chance to get more food variants and the nutritional value is higher than eating the fruit directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:applejuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:carrotjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:melonjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:blackberryjuiceItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:strawberrymilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:chocolatemilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:bananamilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1087,"preRequisites":[665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:potatocakesItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potato Cakes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potatoes, onions, butter and a skillet make very tasty potato cakes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:onionItem","Count":4,"Damage":0,"OreDict":"cropOnion"},{"id":"harvestcraft:butterItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:potatocakesItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32559,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1088,"preRequisites":[665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:friedeggItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fried Eggs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So easy, skillet and an egg.... fried egg."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:friedeggItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2817,"OreDict":""},{"id":"harvestcraft:flourItem","Count":8,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1089,"preRequisites":[1088,638,1087,1086],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hearty Breakfast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's now combine all the things together and make a healthy and very good breakfast.\nSome cooked meat, potato cakes, toast, fried egg and a tasty juice provide you with a very nourishing meal.\nYou can use any cooked meat and any fruit juice here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":"listAllmeatcooked"},{"id":"harvestcraft:potatocakesItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:friedeggItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:applejuiceItem","Count":1,"Damage":0,"OreDict":"listAlljuice"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:friedeggItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:potatocakesItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:toastItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":1090,"preRequisites":[546,625],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:flowing_lava","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lTry to dry out the Nether","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps can do more than pump oil and water. You can go to the nether and pump lava from the huge lava lakes too.\nDon't forget to bring some tanks or fluid cells with you. Once you reach HV lava can be centrifuged for gold, silver, tin, copper, and a little tungstate.\n\nThis is a good use for your LV pumps once you upgrade to MV pumps for oil."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""},{"id":"irontank:goldTank","Count":4,"Damage":0,"OreDict":""},{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Go to the Nether","range":-1,"index":2,"dimension":-1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1091,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Tanks... Oh shiny","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you build a cutting machine you can make some diamond plates for your new 64 buckets single block tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"TConstruct:GlassPane","Count":2,"Damage":0,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1092,"preRequisites":[1090],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestthenether:glowFlower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNew source of Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find some glowflowers in the Nether and plant them in the Overworld. You will never need to go to the Nether and harvest glowstone again."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestthenether:glowFlower","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestthenether:glowflowerseedItem","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:dye","Count":32,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1093,"preRequisites":[1322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDid you run low on Gold or Redstone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you run low on redstone and gold? No problem with your glowstone flower farm. You can centrifuge glowstone dust to redstone and gold dust.\nRedstone is also a good source of aluminium and chrome."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:glowstone_dust","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":1810,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":1086,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"minecraft:diamond_hoe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1094,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Chests... Oh shiny","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you build a cutting machine you can make some diamond plates for your new big diamond chests."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IronChest:goldDiamondUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1095,"preRequisites":[1085],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lEven More Compact Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you found enough gold you can upgrade your chest to make it an even bigger inventory of 9x9. You can just build a new chest or upgrade the iron chest with a wood to gold chest upgrade item. You can use an assembler to make them a little easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":18086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27086,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:ironGoldUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1096,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemInkwell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scribing Tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To unlock your researches you need a scribing tool and paper. Better make two of them. One for your research table and one for researches. You also need some paper and ink."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25880,"OreDict":""},{"id":"minecraft:glass_bottle","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":2,"Damage":0,"OreDict":"dyeBlack"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:ItemInkwell","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:paper","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1097,"preRequisites":[1055],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemBathSalts","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bathing the warp effects away.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Litmus paper tell you how high you warp level is, but how can you get rid of the nasty warp effects? Bath salt will help you by prohibiting warp effects for a short period. Just throw the salt into a 1x1 water hole and jump inside. You will feel relieved a bit after bathing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"auram"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"cognitio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"ordo"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"sano"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1098,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bathing in a Spa. Automated Warp removing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bathing in a spa will automate the process of temporary removing warp effects. Take the bath salt with you into the spa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1099,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSanitySoap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Temp warp remover Soap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This soap is very special. It will remove temporary warp and has a small chance to also remove some normal warp, if you are lucky. Taking a bath first increases your chances.\n\nHint: You need to chisel your tallow block for the recipe to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":18,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1100,"preRequisites":[237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanting Table 1.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally with your new wand and 50 stored vis you are able to build your own enchantment table. The recipe can be found on the GTNH Thaumcraft Page"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bookshelf","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1101,"preRequisites":[1100,117],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"damage":256},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Division Sigil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you found a division sigil in a chest already. You have heard about some ritual to activate it.\n\nYou need an enchantment table, 8 redstone dust, a good sword and an animal you want to sacrifice at night. Catching and holding it with a lasso would be the easiest way.\nPlace your enchantment table on a grass field and surround it with redstone dust.\nPrecisely at midnight place the animal on or near the table and kill it.\nOf course you also need to have your sigil on you.\nBe aware! Your actions will have consequences."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":8,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"damage":256},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:torch","Count":16,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:unstableingot","Count":3,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1102,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Beacon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new wand you are able to create a beacon. The beacon recipe is found on the GTNH Thaumcraft Page. Activate it in your base to gain various positive effects."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_block","Count":164,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1103,"preRequisites":[1101,1104],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:cursedearthside","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cursed Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Kill the monsters that spawn on the cursed earth. Use a shovel with the silk touch enchantment to dig up the cursed earth blocks. You will need these blocks for your mob spawner later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:cursedearthside","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1104,"preRequisites":[1100],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Silky Jewel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to craft some silky jewels for your tinkers tools. Lots of blocks you can easily grab with this tool.\n\nThe recipe can be found on the GTNH page after researching the enchantment table."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1105,"preRequisites":[1102,986,1106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"stable":1},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Division Sigil Stable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second ritual will not be as easy as the first one. After this ritual your sigil will be stable enough to make stable unstable ingots which will not explode.\n\nThis ritual needs to be performed in The End dimension. \nThe ritual is performed by placing a Beacon in the centre of a flat area of at least 11x11, not necessarily End Stone. Then place a chest in each of the cardinal directions leaving 4 spaces empty between the chest and the Beacon. In each chest insert these specific contents:\n\nNorth: iron ingot, gold ingot and the other things listed in the task.\nSouth: The different Ore Blocks and the other things listed in the task.\nEast: The potions.\nWest: The Music disks.\n\nA spiral pattern of Redstone and String is then laid out around the beacon. At any time, Shift+Right-clicking the Beacon with an Activated Division Sigil in hand will show the building progress of the ritual.\n\nFinally, kill an Iron Golem while it stands within the ritual area to activate the process. If it works, there will be an explosion that destroys the beacon and chests, while every Enderman in the End vanishes. During the ritual, throngs of aggresive mobs imbued with Haste will begin spawning and attacking the Player who needs to kill 100 of them to complete the ritual. If the Player dies or leaves the dimension, the ritual will fail and will have to be started over. Once enough mobs have been killed, the first activated Sigil in the inventory will stabilize. The Pseudo-Inversion Sigil can be used an unlimited number of times, and dividing an Iron Ingot by Diamond will produce Mobius \"Unstable-Stable\" Ingot which does not explode, can be produced in any crafting interface and will stack up to 64."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":40,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_fished","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_chicken","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:baked_potato","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:hardened_clay","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:grass","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:clay","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:obsidian","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lapis_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:emerald_ore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:record_cat","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_blocks","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_chirp","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_far","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_mall","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_mellohi","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_stal","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_strad","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_ward","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_11","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_wait","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_13","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":8199,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8200,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8201,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8202,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8203,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8193,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8194,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8195,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8196,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8197,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8205,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"The END","range":-1,"index":7,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":8,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"stable":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1106,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:brewing_stand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blub blub blub.....","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The brewing stand is really important for brewing the various potions like night vision, healing, haste and jump. Toxic potions or splash potions can be created too. \nWith your basic wand you can create one.\n\nThe recipes can be found on the GTNH page in the Thaumonomicon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:brewing_stand","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1107,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lThe Iron Guy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you feel lonely? Need some extra protection in your base? Want to keep the pigmen off your back in the Nether?\nThey can do good amounts of damage and aggro enemies like the pigmen away from you. They can even take care of that pesky Vampire Pigman.\nCraft some Iron Golems and the monster problem inside your base will be gone.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:iron_ingot","Count":9,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1108,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:snowball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe Cool Guy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Feeling lonely? Located far away from a smow biome?\nCraft a Snow Golem, and perhaps challenge him to a snow ball fight."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:snow","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:snowball","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:snow","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1109,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oh crunchy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of doing Thaumcraft research you found a way to craft pure tears. Ichorium purifies the nether star which sucks all the warp away. Be careful, as this may have a deadly end."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1110,"preRequisites":[1109],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.amulet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purge all your warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you ever have a dream where you could purge all your warp with no bad side effects? This purification talisman will let your dreams come true.\nDo not forget to wear it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.amulet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1111,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apicultureChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Chest for Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A chest for bees only. It can hold up to 125 different bees in one chest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":3,"Damage":0,"OreDict":"beeComb"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32403,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apicultureChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1112,"preRequisites":[501],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameUntreated","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Untreated frames are the simplest frames. They do not work in bee houses, only in apiaries. You will need them to craft bee houses.\n\nThey increase the bee's performance. Each untreated frame will double a bee's productivity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":9,"Damage":0,"OreDict":"slabWood"},{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:frameUntreated","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1113,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameImpregnated","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Impregnated Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impregnated Frames are even better than untreated Frames. \nEach frame doubles the bee's productivity. It has a longer durability than the untreated frame, but a shorter one compared to the proven frame."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:slab","Count":9,"Damage":38,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":3,"Damage":0,"OreDict":""},{"id":"Forestry:oakStick","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:frameImpregnated","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:honeyDrop","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1114,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Proven Frame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Proven frames are much better than impregnated ones.\nEach frame doubles the bee's productivity. Out of the three Forestry frames (Untreated, Impregnated and Proven), the proven frame has the longest durability.\n\nYou can make them or purchase them from a villager. If you can't find a beekeeper, there are couple of different options to get one. Rescue a zombie villager, add doors to a village to get them to make kids, or perhaps use a cupid's bow and arrow..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:propolis","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:propolis","Count":16,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1115,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Moron's Guide to Taller Trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forestry trees have a variety of attributes. Once you get a tree with a useful attribute, you can breed that attribute into other tree species. This way you can get an ultimate tree that combines all the attributes you want - including the type of fruit! These breeding lines do not cover every option or even the best, but are great starts to get you into Forestry.\n\nIT IS RECOMMENDED YOU DO YOUR FORESTRY TREE BREEDING IN AN ENCLOSED AREA, OR UNDERGROUND. BUTTERFLIES ARE A KNOWN LAG SOURCE.\n\nFor faster tree breeding, enclose your trees so that butterflies cannot escape, and breed bees with better traits for area and pollination.\n\nGirth - The width of your tree. Wider trees have more leaves, but will also need more saplings to begin growing. All saplings must be the same species and girth. The sapling in the NW corner determines the stats of the new tree, and is where bone meal must be applied to mature the tree. Butternut already provides 2x2 girth.\n\nHeight - Controls how high the tree grows. Jungle trees are already Larger, but if you want Largest there is a guide to getting Cocobolo trees. There are rumors of rare villagers with Giant Sequoia saplings capable of reaching into the clouds...\n\nMatures - The growth speed of a sapling into a tree. Important if you plan to cut it down right away for logs.\n\nSaplings - Chance of getting a sapling from a detroyed leaf. Balsa, a tree on the way to Cocobolo, has High number of saplings. Good for making into biomass or other uses.\n\nSappiness - The amount of biomass a sapling produces in the Fermenter. Boost Fermenter output more using honey or fruit juice. Blue Mahoe provides the highest sappiness, but Lemon and Plum are respectable.\n\nYield - Chances of getting a fruit from a destroyed leaf. Plum is the best here.\n\nFruit - Each fruit from various trees provides different advantages. Lemons are great sources of Fruit Juice but don't provide much Mulch for the fermenter. On the other hand, Plum is a mediocre source of Fruit Juice, but great for Mulch. The best seedoil nut is coconut, but butternut or hazelnut are good alternatives.\n\nWhen breeding these trees for quests, you will need to breed the species \"pure\", not a hybrid."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1116,"preRequisites":[1117],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some cultivated bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Common Princess and Foresty Drone can be bred to cultivated bees. \n\nCultivated bees have the shorest lifespan - this means they make great princesses to breed with your newly bred drones. The queen will die quickly, quickly giving genetic material to work with. Make sure the traits you want are kept!\n\nThey are also a Fast production bee, which means lots of honey combs for powering your Beealyzer or Treealyzer. \n\nCultivated Bees produce Honey Combs every 0.9 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time.\n\nMake sure your cultivated bees are pure with a Beealyzer or GT scanner.\n\nThe main bee breeding quests will require pure bees but you can use Ignoble or Pristine princesses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":32,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1117,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some common bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To cross breed bees you need two different species of bees. One drone and one princess from different hives (Meadows and Forestry as an example)\nBee Houses do not allow crossbreeding. In an Apiary you can cross breed them to a new species. Certain frames will help this process. Shortening their lifespan means faster crosses. Increasing Mutation rate means getting rare bees quicker.\n\nCommon Bees produce Honey Combs every 2.2 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nMake sure your bees are pure by checking their genetics with a Beealyzer or GT scanner."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMeadows","UID0":"forestry.speciesMeadows"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMeadows","UID0":"forestry.speciesMeadows"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1118,"preRequisites":[1116],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":30,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some noble bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding common and cultivated bees can result in noble bees. \n\nNoble bees produce dripping combs every 3.8 minutes and honeydew. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nYou've heard of a drunk beekeeper saying he has perfected a method of creating proven frames using Honeydew and a little magic. It might be worth your time to try experimenting yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1119,"preRequisites":[1118],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeCombs","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dripping Combs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your noble bees produce some dripping combs.\nA good source for honey, and if have a magical mind, honeydew for proven frames."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":16,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1120,"preRequisites":[1118],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":35,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some majestic bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding noble and cultivated bees can result in majestic bees.\n\nMajestic bees have a very important attribute - high fertility. They will leave 4 drones when they die. This means lots of genetic material for the next generation to work with.\n\nMajestic bees produce dripping combs every 1.5 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:honeydew","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1121,"preRequisites":[1120],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":40,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectBeatific","UID0":"forestry.effectBeatific","Slot":13}]},"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectBeatific","UID0":"forestry.effectBeatific","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some imperial bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding noble and majestic bees can result in imperial bees.\n\nThese bees produce a Regeneration buff in their active area. You can probably find a use for this in case of...accidents.\n\nImperial bees produce dripping combs every 3.8 minutes and royal jelly every 5.1 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nRoyal jelly is needed in making scented paneling for an Alveary - the third tier bee housing.\n\nYou can now start working towards the Master Registry in the To Grind, or Not to Grind tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":32,"Damage":5,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1122,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:royalJelly","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Royal Jelly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Royal jelly is a honey bee secretion that is used in the nutrition of larvae, as well as adult queens. It is only produced by the imperial bee. It's production can be increased with proven frames or any other kind of frames except for the soul frame. Royal jelly is also useful because it can craft ambrosia, which fills 8 hunger points (4 full food icons) and gives Regeneration I for 40 seconds. Royal jelly is used to craft scented paneling which are required in the creation of alveary blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:royalJelly","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1123,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:alveary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Alvearies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The alveary is an advanced variant of the apiary. The alveary allows for combs to be produced faster due to its natural speed increase to production (as well as the ability to add up to six frames via the Extra Bees frame housings) and due to its ability to be modified by other blocks. \nIt is possible to adjust the internal temperature of the alveary using the alveary heater or alveary fan in order to accommodate bees that require hotter or colder climates.\n It is also possible to use mutators to increase chances of mutation, alveary lighting and alveary rain shield to allow bees without the nocturnal and tolerant flyer traits to work during the night and rain, respectively, and the swarmer to use excess royal jelly to create princesses that last for a limited number of generations.\n\nA submission station is recommended for quests with large amounts of items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":432,"Damage":19086,"OreDict":""},{"id":"Forestry:royalJelly","Count":216,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":216,"Damage":0,"OreDict":"itemPollen"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beeswax","Count":432,"Damage":0,"OreDict":""},{"id":"Forestry:oakStick","Count":648,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":30725,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":216,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":216,"Damage":0,"OreDict":"logWood"},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":30713,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Forestry:impregnatedCasing","Count":27,"Damage":0,"OreDict":""},{"id":"Forestry:craftingMaterial","Count":216,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Forestry:alveary","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:royalJelly","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:propolis","Count":32,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":1124,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeStructural","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Barrel Upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are your cobblestone or dirt barrels filled to the brim? \nNo problem, upgrade them!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17809,"OreDict":""},{"id":"minecraft:stick","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeStructural","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeCore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1125,"preRequisites":[1124],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Barrel Upgrades Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are your upgraded cobblestone or dirt barrels full again? \nNo problem, upgrade them some more!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeCore","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeStructural","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1126,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAlumite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's upgrade time again. You can make alumite like modpack Moron by mixing obsidian, steel and alumin(i)um in the smeltery, or you can be a GregTech hero and search NEI for an alternate recipe using dusts. Alumite pickaxes are able to mine ardite in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":16,"Damage":15,"OreDict":"ingotAlumite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":31,"OreDict":""},{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1127,"preRequisites":[596],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:heavyPlate","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lReinforced X? Unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your steel tool you are able to mine obsidian. Large obsidian plates give a reinforced modifier which increases the durability of your tool. \nReinforced level X makes a tool unbreakable."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:obsidian","Count":16,"Damage":0,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1128,"preRequisites":[867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lLapis? Lucky!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you were lucky and received the luck modifier on your pickaxe. If not, you may still have an unused modifier on your pick so you can add some lapis lazuli. Or you can perhaps add another modifier by adding a diamond and a gold block to your pick and then add some lapis. \n\nYou can put the lapis lazuli in more than one slot in the tool station, use blocks to raise the luck level faster, and even use lapis blocks in the crafting station with your tool for maximum luck gain."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":64,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:golden_carrot","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:gingerbreadItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1129,"preRequisites":[535],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRedstone? Haste!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mining and digging can be soooo slow. Get some redstone on your pick, shovel or axe to make it faster. You can use the Crafting Station to upgrade your tool 8 dust at a time. Later when you get a compressor you can use blocks to do 9 per block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1130,"preRequisites":[54,495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:creativeModifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§3§e§4§3§lExtra Modifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't have an extra modifier on your tool you can easily add one.\nA gold block and a diamond are all you need.\nYou can add two more modifiers, but you need to figure out how yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":16,"Damage":86,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"harvestcraft:leafyfishsandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1131,"preRequisites":[479,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SearedBrick","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lArdite and Cobalt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are done with all quests you can look for cobalt and ardite in the Nether. Remember, you need an electric blast furnace to process these materials before you can make tools with them. But you have heard rumors of a special wood only found in another land, a forest of twilight, that can make tools strong enough to mine them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SearedBrick","Count":4,"Damage":2,"OreDict":"oreArdite"},{"id":"TConstruct:SearedBrick","Count":4,"Damage":1,"OreDict":"oreCobalt"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1132,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:quartz","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§f§3§lNetherquartz? Sharpness","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your sword is too dull? Get some nether quartz to sharpen it again.\n\nIf you have lots of Certus quartz, 1 piece of Certus is equal to 24 Nether quartz."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:quartz","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2022,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1133,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterquesting:submit_station","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSubmission Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Although many of the questing tasks can be submitted directly through your inventory (including liquids) sometimes you need a more automated solution. This is where the Object Submission Station (OSS) comes in handy. \nTasks supporting the OSS can be selected through the built in interface to enable its use. Once setup, liquids and items can be either piped in or dropped into the interface's input slot. It will not void items or liquids if no task is selected or if it has already been completed, however, making it relatively safe from accidental item/fluid deletion. Multiple OSS are also capable of taking on separate sub-tasks under the same quest simultaneously!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17809,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"betterquesting:submit_station","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1134,"preRequisites":[608],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":753,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV Advanced Steam Boiler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LV Gt++ Steam Boiler is the next machine you can build to produce steam more efficiently than with the High Pressure Boiler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":753,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11089,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1135,"preRequisites":[890,898],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":20,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lULV Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your simple ore washer working you need a ULV Transformer. The Washer can only work with 8 EU. If you put more energy into it you get a big hole in your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2006,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1136,"preRequisites":[97,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLossless LV Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about losless 32 EU LV Cables ? Redstone alloy is a superconductor wire and will transfer your energy without any loss.\nRedalloy is a new alloy which requires an EBF. Mix redstone, silicon and coal by hand, or in the mixer for a better result."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2535,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2381,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11381,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30645,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1137,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Generator will transform mechanical energy into electricity. The EU output depends on the KU input. It is most commonly used together with a Kinetic Wind Generator, Kinetic Water Generator or a Kinetic Steam Generator.\n\nWhen placing a kinetic generator, any time, the \"input\" side is the side facing you. So you will place the kinetic generator, then the wind/water/steam gen, and then place a rotor inside. Power can be drawn from any side of the kinetic generator, up to the rated amount per side. \n\nNOTE: It now requires an Avaritia Dire Crafting Table and Titanium. Follow the quests in Space Race and get to the moon. Use NEI to find the recipe since Better Questing cannot show it.\n\nWARNING: Breaking a kinetic generator improperly will not return the generator. Use a GT wrench, and right-CLICK it. It should drop immediately. Try again if it just changed directions. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":11,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21306,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31028,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1138,"preRequisites":[1137],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockKineticGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Wind Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Wind Generator generates energy from wind power which varies randomly, although certain factors can change this. \nUnlike the Windmill, the Kinetic Wind Generator will require maintenance in the form of the Rotors. These are needed to run the Kinetic Wind Generator.\nOnce a Rotor is placed inside the GUI, the block is given sufficient space, and the current wind level is adequate for the current rotor, the Kinetic Wind Generator will begin to generate Kinetic Energy. \nThis can be converted into EU by using a Kinetic Generator attached to the correct face (the black circle).\nAbout Wind\nFirst off, the wind strength of a particular area is affected by 3 factors: Height, Weather, and Chance. The higher up in the world you are, the higher the wind level. Below y64, there is never enough wind to be used, and KWG's will not function at all. Weather will also give boosts; Rainy weather will give a 20% boost to normal wind levels, and stormy weather will give a 50% boost. The final factor of chance makes the wind strength vary randomly, however there is a limited range of variation.\nThe easiest way to check the current wind level in an area is by using a Windmeter.\nWind is strongest at around Y160, towards the build limit of Y255 there is very little wind, hence no point attempting to run Windmills that high.\nWhile inconvenient, the Wind Generator can run anywhere.\n\nYou will need to use NEI to see the recipe, since it use the Dire Crafting table. Make sure to put the items in the right place, or you will get a Water Generator instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20028,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockKineticGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1139,"preRequisites":[1137],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockKineticGenerator","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Water Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Water Generator allows Kinetic Units to be produced via the movement of water in river and ocean biomes. As with the Kinetic Wind Generator, it requires either Gearbox Rotor. Search NEI for appropriate options.\n\nIf the Kinetic Water Generator's Rotor isn't entirely submerged in water, it will alert you there is \"no room for the rotor\". If the Kinetic Water Generator isn't placed in a river, ocean or deep ocean biome, it will alert you it \"must be placed in a river or ocean biome\". Check the Game Mechanics spreadsheet on Discord for a list of biomes and their tags.\n\nWhile inconvenient, the Water Generator runs more consistently.\n\nYou will need to use NEI to see the recipe, since it use the Dire Crafting table. Make sure to put the items in the right place, or you will get a Wind Generator instead.\n\n§4You can use Witchery to convert biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32612,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockKineticGenerator","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1140,"preRequisites":[1138,1139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemironrotor","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§9§lRotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Wind and Water Generators need Gearbox Rotors to function. They can be added and removed with standard automation. Higher tier rotors will last longer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":28028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":4,"Damage":8,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemironrotor","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemwoodrotor","Count":1,"Damage":1,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":8,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1141,"preRequisites":[1138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:windmeter","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lWind Meter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Windmeter measures wind strength. It show's you on which height you can place your Wind Generator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:windmeter","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockIronScaffold","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1142,"preRequisites":[1144],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Battery Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HV machines need battery buffers too. They come in different sizes like 1x, 4x, 9x and 16x.\nBuild a 1x and a 4x buffer for HV. \n\nYou can use the 1x with a transformer and run MV machines for a decent time. Or transform it twice to LV and run a bunch of LV machines for a long time. Useful when you want scanner near your bees or trees. Remember to cover them up or else rain will make you very unhappy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":173,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1143,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32502,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Let's make some HV battery hulls for new batteries. Now it's up to you to make lithium, cadmium, sodium or acid batteries with these hulls."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32502,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1144,"preRequisites":[1143],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32528,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Lithium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Lithium is the best material to use when making batteries. Make sure to use the Assembler recipe with Polyethylene to save on resources."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17315,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1145,"preRequisites":[1140],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV EV Tranformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gregtech cables will not connect to IC2 machines so you need transformers to convert the energy. The best way is building two transformers and a battery buffer to store the generated energy in batteries or energy cells. The longer the cable the more energy will be lost at low tiers. So use high tier voltages when transporting energy over long distances.\n\nBe careful; IC2 machines do not care about rain but your GT machines will explode violently if exposed to water.\n\nIt is also important to transfer the power up, not down, to avoid explosions if the rotor generates more than 120 EU/t. It is not recommenend to use better rotors than the iron ones on HV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":23,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemDust2","Count":9,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1146,"preRequisites":[35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGT 6 styled Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why the new pipes don't auto-connect anymore? This was changed to make the pipe smarter. You can now use a wrench to connect only the pipes you want. You don't need a plate or a foil to prevent pipes from connecting anymore.\n\nYou'll still want to cover hot pipes to prevent getting hurt!\n\nShift clicking on the end of a pipe will disable the fluid input on that side. This is super handy, for example, to prevent coal boilers from feeding back steam into water pipes. \n\nAlso, pipes now come with a shutter built in for free to reduce sloshing. Shift-rightclick with a wrench on the side you want prevent input.\n\nLarge or Huge fluid pipes can be a \"poor man's\" storage tank, holding large amounts on their own.\n\nFor machine outputs, including the boilers, and water siding tanks you will not need pumps. Other tanks will need pumps or Tinker's Construct faucets to move fluids.\n\n§4Hint: If you click one pipe onto the other they will auto-connect."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:woodIronUpgrade","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1147,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§2§4§3§lGT 6 styled Wires and Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why the new wires and cables don't auto-connect anymore? This was changed to make the wires and cables smarter. You have to use a wirecutter or soldering iron to connect the wires and cables on the side you want. No more burnt cables or wrongly connected wires and cables from now on. You can shift-rightclick to attach a cable on the side of a machine you cannot see, like attaching a cable to the bottom while looking at the front.\n\nHint: If you click one wire or cable on the other it will auto-connect. Cables and pipes can be painted to make sure you do not cross your MV line with your EV line, or dump hot lava into your plastic water pipes. No boom today.\n\nHa ha just kidding there is always a boom today!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:splitpeasoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1148,"preRequisites":[103,77,543,97,717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Machine hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier of machine hull needs aluminium - a lot of aluminium. Keep your EBF running and make some aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1149,"preRequisites":[673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11313,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA new alloy - Magnalium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You wonder why you need magnalium now? It's not for GT machines right now but for a material update for your crossbow.\nIt's a very good material in LV Tier. Go to the Twilight Forest and find an Olivine/Glauconite vein located at Y 10-40 or in the Overworld a Glauconite Soapstone mix located at Y 20-50 and a Granitic Mineral Vein in the Overworld Located at Y 50-60 (The Gypsum vein you will need for the Bricked Blast Furnace).\nWith your Ore Washer you can get Magnesium and Aluminium out of the Ores (Magnesite for Magnesium (marbel can be used too)and Fullers Earth for Aluminium) and mix it in the Alloy smelter to Magnalium.\nMagnesite gives 10 tiny piles of Magnesium each dust but fullers earth gives only a tiny pile of Aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2018,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11313,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1150,"preRequisites":[741,1149,673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":288,"BaseAttack":2,"DrawSpeed":35,"ToolEXP":0,"HarvestLevel":3,"RenderHead":1602,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accessory":2,"MiningSpeed":600,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":288,"BaseDrawSpeed":35,"Head":1602,"Attack":2,"Handle":1602,"Broken":0,"Extra":6,"RenderAccessory":2,"ToolLevel":1,"FlightSpeed":5.99399995803833,"Modifiers":0},"display":{"Name":"Magnalium Crossbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Crossbow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now its time to craft your Crossbow Limb and the Crossbow Body to upgrade your old Wooden Crossbow."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11313,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:Cast","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:Cast","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""},{"id":"TGregworks:tGregToolPartCrossbowBody","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:barleyFood","Count":2,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1151,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":38,"BaseAttack":1,"DrawSpeed":33,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":38,"BaseDrawSpeed":33,"Head":0,"Attack":1,"Handle":0,"Broken":0,"Extra":6,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":4.5,"Modifiers":0},"display":{"Name":"Wooden Crossbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWooden Crosbow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you are able to make a better long range weapon - a crossbow. Use wood for the the crossbow limb and the body and use obsidian (Reinforced III) for the tough binding. Normal strings for the bowstrings would be enough for now.\n\nAssemble the bow yourself on your tool forge.\n\n§4For upgrades:\n§5§4§3Redstone - Speed on the draw\nLapis - Fortune on kills\nMoss - Self-repair (this is not visible in NEI until you unlock it in the GTNH Thaumcraft tab)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:Pattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:Pattern","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:CrossbowLimbPart","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:toughBinding","Count":1,"Damage":6,"OreDict":""},{"id":"TConstruct:bowstring","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":38,"BaseAttack":1,"DrawSpeed":33,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":38,"BaseDrawSpeed":33,"Head":0,"Attack":1,"Handle":0,"Broken":0,"Extra":6,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":4.5,"Modifiers":0},"display":{"Name":"Wooden Crossbow"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1152,"preRequisites":[1150],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:bowstring","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFiery Bowstring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why not upgrade your bowstring too? You got some from the last quest, but will need to find some more in the Nether by killing spiders. Craft some fiery bowstring with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:barleyFood","Count":3,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:bowstring","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11382,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1153,"preRequisites":[1152],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lArdite Crossbow Body","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your crossbow even better craft an ardite crossbow body. You received a few ardite ingots as reward before but will need to find ore in the Nether and process it in an Electric Blast Furnace.\nWith redstone you can make your bow faster. This requires a free modifier slot on your crossbow.\nDon't bother putting Nether Quartz on the crossbow, it only improves damage from whacking mobs over the head with it. Put the Nether Quartz on your bolts instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":11382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1154,"preRequisites":[1150,1155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.05400000140070915,"BaseDurability":705,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accuracy":87.5,"Accessory":1,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":705,"Head":2,"Attack":3,"Handle":1602,"Broken":0,"Mass":3.4800000190734863,"Ammo":71,"RenderAccessory":1,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Crossbow Bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnalium bolts are much better than your old wooden bolts.\nYou can use nether quartz on the bolts to make them even better. \nThis requires a free modifier slot.\nExperiment with NEI to find other good bolt materials. \n\n§4To make it, you must use a Fluid Solidifer instead of the Tinker's casting table."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:fletching","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":2}},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.05400000140070915,"BaseDurability":705,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accuracy":87.5,"Accessory":1,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":705,"Head":2,"Attack":3,"Handle":1602,"Broken":0,"Mass":3.4800000190734863,"Ammo":71,"RenderAccessory":1,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":11382,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1155,"preRequisites":[579,543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":521,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBasic Fluid Solidifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your molten fluids back to a solid state you need a fluid solidifier. This is handy for processing molten rubber directly from the chemical reactor. It is used for crossbow bolts as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":521,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:energydrinkItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:beansontoastItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32716,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1156,"preRequisites":[1151],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000774860382,"BaseDurability":188,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accuracy":97.5,"Accessory":0,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":188,"Head":2,"Attack":3,"Handle":0,"Broken":0,"Mass":4.335000038146973,"Ammo":19,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWooden Bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your crossbow need some ammo to shoot with. Let's craft some wooden bolts. For now, you can put either iron, alumite, or steel on the tip of your bolts using the Smeltery. For higher tier bolts and tips you will need to pump metals into a Fluid Solidifier with the correct tool rod inserted.\n\n§4For upgrades\n§3Nether or Certus Quartz - More damage\nMoss - Self-Repair (unlock in GTNH Thaumcraft tab)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:toolRod","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:fletching","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":2}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000774860382,"BaseDurability":188,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accuracy":97.5,"Accessory":0,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":188,"Head":2,"Attack":3,"Handle":0,"Broken":0,"Mass":4.335000038146973,"Ammo":19,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1157,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":19}],"GT.ToolStats":{"PrimaryMaterial":"Rubber","MaxDamage":25600,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lRubber Soft Mallet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wooden soft mallet breaks after a few uses. Now you can make a rubber mallet which is much more durable."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"woodStick"},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":11880,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":19}],"GT.ToolStats":{"PrimaryMaterial":"Rubber","MaxDamage":25600,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chickenpotpieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1158,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron Wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood is much harder and durable than rubber. Ideal for a soft mallet. Collect some liveroot, macerate it and mix the powder with iron and gold to create a new magical material.\n\nYou can make some unique armor with this material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.liveRoot","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2832,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":86,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":2338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodIngot","Count":18,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1159,"preRequisites":[1158],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Steeleaf","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you locate a labyrinth you may find steeleaf in chests inside if you are lucky.\nThis is the best material for a soft mallet, however a unique armor out of steeleaf would be an even better use for this material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.steeleafIngot","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1160,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellEmpty","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEmpty Cells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your plate bender you are able to make empty cells. The circuit needs to be configured to 12 otherwise you will make foil. Once you have an LV Extruder, you can make cells directly from ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1161,"preRequisites":[67],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2006,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Redalloy Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some redalloy cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2006,"OreDict":""}]}]},{"questID":1162,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tin Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some tin cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1246,"OreDict":""}]}]},{"questID":1163,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Copper Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some copper wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1360,"OreDict":""}]}]},{"questID":1164,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUniversal Macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the important machines in HV is the Universal Macerator. It has an additional output slot to get more materials when macerating ores.\n\n§4This is a key source of extra Gallium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":303,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1165,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11880,"OreDict":""}]}]},{"questID":1166,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:quartz_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lQuartz and Quartzite Veins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nether is full of different kinds of quartz. Go and find a quartzite and certus quartz vein. They are located between Y levels 80-120."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1523,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":1904,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1516,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_rod","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1167,"preRequisites":[622],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2006,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lLithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lithium can be washed out of Lepidolite Ore or centrifuged out of Spodumene Ore. At MV you can electrolyze clay dust for it. Look for canyons to find hardened clay and macerate it for dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2006,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:coleslawburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1168,"preRequisites":[621],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2017,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lSodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium can be washed out of Glauconite Ore and Sand. It can also be electrolyzed out of salt."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2017,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32224,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1169,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemBathSalts","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":360000,"globalShare":1,"questLogic":"AND","name":"Bath Salt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oh you feel so dirty. Go and take a bath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1170,"preRequisites":[1099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSanitySoap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Bath Soap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oh you feel so dirty. Get the soap and take a long hot bath to get rid of some of that nasty Warp."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1171,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11335,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Damascus Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Damascus Steel is very durable and useful for GT tools. Buy some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11335,"OreDict":""}]}]},{"questID":1172,"preRequisites":[662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11345,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCheaper Annealed Production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It' s even faster and cheaper to make annealed copper in the arc furnace than in the electric blast furnace. Annealed copper is a very good material for cables in MV. It only loses 1 EU per block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11345,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1173,"preRequisites":[948],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11304,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Wrought Iron Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Whant some wrought iron ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11304,"OreDict":""}]}]},{"questID":1174,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11305,"OreDict":""}]}]},{"questID":1175,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Aluminium Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some aluminium ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""}]}]},{"questID":1176,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""}]}]},{"questID":1177,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thaumium cooking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it is time to cook your first thaumium ingots. After researching it you need iron ingots and praecantatio aspect to make it. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"praecantatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1178,"preRequisites":[1289],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTinCanFilled","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Food 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forget everything you know about food and values. With your new canning machine you are able to fill tin cans with very nourishing food. This food can be consumed in milliseconds and makes you full and happy. And you can eat as much as you want without getting tired of the food.\nEating before you are starving restores saturation and conserves cans."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":18057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemTinCan","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemTinCanFilled","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:apple","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:golden_apple","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1179,"preRequisites":[77,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEBF Infos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can use a scanner to manually check how your EBF works, or you can make an information panel from nuclear control and always see the status. Make a GT sensor kit and use it on the EBF controller. Place the the sensor card in your info panel. Enable it with a redstone signal.\n\nThe GregTech sensor card can monitor Gregtech machines like the EBF, Turbines, and Pyrolyse ovens. This is handy for keeping an eye on maintenance issues for multiblocks.\n\nIf you want to put the panels far from the machines they are monitoring, you will need range upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32763,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30726,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1180,"preRequisites":[1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPassive Chunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using the MV bender you can finally press dense plates. Let's craft some passive chunkloaders.\n3x3 chunks are loaded. You need coins or ender pearls to power the chunkloader. \nEnder pearls power personal anchors for 4 hours per pearl, and 1 hour in passive anchors . Personal anchors can also be powered with ender fragments for 1h. \n\n§4Personal anchors are loaded once the owner visits, and stays loaded while the player is logged in. \nPassive anchors are loaded once the owner visits, and stays loaded until the server resets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChunkloaderTierI","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1181,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Minecart with Tank, Workbench or Furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want to transport oil or other fluids, have a portable crafting table or a portable chest? Then you need to craft some minecarts with tanks, chests or crafting tables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:cart.work","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:chest_minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:cart.cargo","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1182,"preRequisites":[866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.gamma","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluid loader and unloder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you plan to automate the oil transport from your oil field far away, you need a fluid loader and unloader. A locking track will stop the train as long as oil is loaded or unloaded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.gamma","Count":1,"Damage":4,"OreDict":""},{"id":"Railcraft:machine.gamma","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.locking"},"Damage":20176,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":128,"Damage":5103,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"minecraft:rail","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1183,"preRequisites":[1181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:furnace_minecart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Locomotive 0.1 Alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The furnace cart is a cheaper locomotive. Click with coal or charcoal on the cart and and it will start moving. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:furnace_minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:coal","Count":32,"Damage":1,"OreDict":""},{"id":"minecraft:coal","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1184,"preRequisites":[1183,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.loco.steam.solid","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Steam Locomotive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The steam locomotive is much better than the furnace cart. You can control the speed and the direction the locomotive will move. You need to put water and coal inside to make steam to power the locomotive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.loco.steam.solid","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:coal","Count":64,"Damage":1,"OreDict":""},{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1185,"preRequisites":[1184,89],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.loco.electric","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric Locomotive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electric Locomotives are much better than steam ones. You need electric rail for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.loco.electric","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":32,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1186,"preRequisites":[866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boost your speed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to not use a locomotive and drive with one or two carts only, you can use some booster tracks. Activate them with a lever or a redstone torch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:golden_rail","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:rail","Count":64,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1187,"preRequisites":[866,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad - high speed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you ever dream of driving in a railcart at high speeds? Well your dreams can come true with the high speed tracks. Be careful though; you need to lower the speed when your rails change direction or when the track ends."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.transition"},"Damage":26865,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":3,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1188,"preRequisites":[866,1176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad - blast proof","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Railroads in the nether are dangerous. The reinforced tracks are blast proof. Hope you are blast proof too. \nYou can move 25% faster than with normal tracks.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.reinforced.boost"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":4,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1189,"preRequisites":[77,866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad electrical","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electrical tracks are used together with your electrical locomotive. You need to power the rails with energy.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":5,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1190,"preRequisites":[1189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.epsilon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric feeder Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your tracks electrified you need an electric feeding unit, shunting wires and some support frames. You can use an MFE or a transformer to get GT energy into the feeder unit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.epsilon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.delta","Count":8,"Damage":0,"OreDict":""},{"id":"Railcraft:frame","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.buffer.stop"},"Damage":32363,"OreDict":""},{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.gated.oneway"},"Damage":0,"OreDict":""},{"id":"minecraft:detector_rail","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1191,"preRequisites":[878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic \"Staffter\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is also possible to create a bizarre hybrid of staff and scepter (sometimes called a \"staffter\"), by using a staff core instead of a wand core in the scepter recipe. The resulting device can neither hold a focus nor be placed in a crafting table, but it can still be used to activate constructs, or as a \"vis battery\" for Repair-enchanted equipment or Runic shielding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":3,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27028,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","sceptre":1,"AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1192,"preRequisites":[74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Aluminum berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few aluminum berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":4,"OreDict":""}]}]},{"questID":1193,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Gold berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few gold berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":1,"OreDict":""}]}]},{"questID":1194,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Iron berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few iron berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1195,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Copper berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few copper berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":2,"OreDict":""}]}]},{"questID":1196,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Tin berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few tin berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":3,"OreDict":""}]}]},{"questID":1197,"preRequisites":[1213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1194,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lFusion reactor MK2 - bigger, better, fusor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have some europium, put it to use by making an mk2 reactor. This one will require the same block placement, but replacing LuV casings with fusion machine casings, superconducting coil blocks with fusion coil blocks, and using ZPM tier hatches. This reactor can handle recipes up to 320M eu startup. In addition, if you perform an mk1 recipe on an mk2, you will overclock it. Fusion overclocking is different than normal gt. It will take 2x the power, but the recipe will go 2x faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":47,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":67,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":57,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1194,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32091,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32607,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32616,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32636,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32646,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2311,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1198,"preRequisites":[1199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1195,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lUpgrading the reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A mark 2 is nice, but why not make a mark 3? It will double the power needed per recipe, while cutting the processing time in half. This time you will need UV or above hatches, as well as Fusion machine casings MK2. This reactor is capable of doing all fusion recipes. Each energy hatch is capable of providng up to 8192eu/t, per energy hatch, for the recipe. The reactor can take as little as 8192eu/t to run. The UV hatch can accept up to 2 amps of 524288eu/t before it explodes, as usual."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":58,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":68,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":48,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":7,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1195,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32094,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32608,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32617,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32637,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32647,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2023,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1199,"preRequisites":[1197],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmetal1","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lMaking americium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you can upgrade your reactor, you will need to get some americium. The recipe will look pretty expensive, but once you made the next tier of reactor, you will unlock a simplier and cheaper one. You will need at least 128 plates for the reactor casings, 9 to scan for the recipe, and 4 to build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":141,"Damage":11078,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":141,"Damage":11030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal1","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":17103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32599,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1200,"preRequisites":[1212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1153,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lMaking power with your plasma","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a reactor, it's time to utilize it. The simplest plasma you can make for power is Helium plasma. It's renewable from water, but also provides a lot of power. However, you will need a way to convert the plasma into EU. To do this you will need a large plasma turbine. This will also need a dynamo hatch that can handle the power you're outputting. For Helium plasma, you will want a UV or above hatch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":18,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31325,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5204,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32090,"OreDict":"circuitUltimate"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":61,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":29,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1153,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32096,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32606,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2405,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1201,"preRequisites":[1200],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DraconiumAwakened","MaxDamage":19660800,"SecondaryMaterial":"DraconiumAwakened"}},"Damage":174,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lTurbine Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your fancy new Large Plasma Turbine will need a rotor to go inside of it. You can make it out of any gt material, but the best are trinium, awakened draconium and neutronium. Trinium will give you the most eu/t out of a single multiblock, with the best efficiency. Neutronium will give you the longest lasting turbine rotors with a lower efficiency, and less power per reactor. Awakened draconium will give you a balance between the two. You can make turbines in 4 different sizes. The larger the turbine the more eu/t it will produce. However, the largest turbine isn't also the most efficient. When using turbines be careful of flow rates. To find the optimal flow rate, you divide the optimal energy flow rate listen on the turbine, by the energy value for the plasma. Make sure to use a fluid regulator set to this flow rate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":196608000,"SecondaryMaterial":"Neutronium"}},"Damage":174,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11975,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1202,"preRequisites":[1198],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings4","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§e§d§n§o§r§l§d§lTime for another reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While one reactor is nice and all, why not make another? This time you can use the MK3 americium recipe to make it easier. "}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1203,"preRequisites":[1202],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§m§l§r§d§lMaking more americium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Costing just 1 ingot of Plutonium, and 2 buckets of hydrogen, this recipe is much easier and faster than the MK2 version. By making americium plasma, then putting it through a turbine, you will get americium in the liquid state. Again you will need at least 132 plates for the controller, and the fusion machine casings. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":11101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":264,"Damage":30001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":17103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32560,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32737,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1204,"preRequisites":[1],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCrafting time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to get yourself a 3x3 crafting area. Grab some flint and some wood, and build one!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:apple","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1205,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHoppers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hoppers come in handy when you want to automate your machines. \nYou can input items via hoppers directly into GT pipes and you don't have to use a conveyor belt. \nHowever, the input rate is much slower, and the hopper must be beneath its source inventory."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chocolatesprinklecakeItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1206,"preRequisites":[549,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Light Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some light fuel? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30740,"OreDict":""}]}]},{"questID":1207,"preRequisites":[552,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30741,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Heavy Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some heavy fuel? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""}]}]},{"questID":1208,"preRequisites":[107,933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":45,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Power Solar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar or lava. If you are able to make solar panels you can power your cart with the sun."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":45,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":1,"Damage":44,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1209,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Digging","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to automate digging for ores ? A drill head made out of iron is the cheapest alternative."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1210,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":69,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Thermal Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar or lava. Why not power your cart with lava?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":69,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1211,"preRequisites":[110],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: More Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you craft side chests you can add more different chests to the cart. Some sides are reserved for tools so no chest can be placed there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":3,"OreDict":""},{"id":"StevesCarts:CartModule","Count":1,"Damage":4,"OreDict":""},{"id":"StevesCarts:CartModule","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1212,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lStarting Fusion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that your power needs are increasing, you need a way to keep up with demand. To generate over 1A ZPM with a single machine you have two options: solars, and fusion. While solars are simpler to set up, solars cap out at 524288eu/t. Fusion can reach levels close to eight times that with the right setup. For your first reactor, you will need a controller, 2-16 fluid input hatches, 1-16 fluid output hatches, and 16 energy hatches. All hatches have to be LuV tier or better. Each hatch provides 2048eu/t for the recipe, and has a storage capacity of 160M eu. This means you can do any fusion recipe that takes less than 32768eu/t or less, and has a startup of 160M eu or less. Using more fluid hatches means you need less fusion casings. While this doesn't matter as much for the mk1 reactor, this principle helps tremendously with the high reactor tiers. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":56,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":66,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":46,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":32,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":32,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32092,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32606,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2403,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1213,"preRequisites":[1212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmetal3","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lGetting europium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make an mk2 reactor, you will need europium. Once you make a t6 rocket you will be able to find this as an ore. Until then you need to produce it in the reactor. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":13,"Damage":11067,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal3","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17070,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32599,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1214,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Clockwork Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Producing RF Power by hand is a good idea for making one or two recipes in the Forestry machines. The turrets can be charged with it too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24304,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31304,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11310,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1215,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bio Gas Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Producing RF Power with Lava is possible with the Biogas engine. You need Water, Seedoil, Milk, Sap Cresote or FR Biomass in the other slot. The engine outputs 50RF/t depends on the fluid you put in.\n\nFuel /Lava / Usage Energy Ticks\nWater Constant 10 RF/t 1000\nFruit Juice Startup/Restart Only 10 RF/t 2500\nLiquid Honey Startup/Restart Only 20 RF/t 2500\nMilk Constant 10 RF/t 10000\nSeed Oil Startup/Restart Only 30 RF/t 2500\nBiomass Startup/Restart Only 50 RF/t 2500"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24300,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31300,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:canSeedOil","Count":16,"Damage":0,"OreDict":""},{"id":"Railcraft:fluid.creosote.can","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:canLava","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:canBiomass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1216,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Peat fired Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Peat fired engines use Peat or Bituminous Peat to run. Peat burns for 5000 ticks and produces 10 RF every tick, 1 peat makes 0.66 Ash, so you get 2 Ash for burning 3 peat.\nBituminous Peat burns for 6000 ticks and produces 20 RF/tick.\n\nPeat Farms can be setup by using a managed farm with tin electron tubes. It is possible with a manual farm too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31032,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:peat","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:bituminousPeat","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1217,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Copper, Tin, Bronze Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22035,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22057,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":18,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":6,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":6,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":6,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:canBiomass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1218,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron, Gold, Diamantine Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22086,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":3,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":4,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:canSeedOil","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1219,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rubberised, Obsidian, Lapis Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22880,"OreDict":""},{"id":"dreamcraft:item.LongObsidianRod","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22526,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":8,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":6,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"minecraft:redstone_block","Count":7,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1220,"preRequisites":[1219,1218,1217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blaze, Endereyes, Emerald Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22801,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22533,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":7,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":12,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":16,"Damage":10,"OreDict":""},{"id":"Forestry:canHoney","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":20,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestryI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1221,"preRequisites":[1018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1181,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAdvanced Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More advanced circuits require an MV circuit assembling machine. Let's make one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1181,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30718,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1222,"preRequisites":[1014],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1182,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAdvanced Circuit Assembler II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your workstation circuits you can craft an HV circuit assembler. This is need for higher tier circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1182,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1223,"preRequisites":[1246],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lEV Circuits Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV circuit assembler requires IV Circuits to craft. With this assembler you can make a lot more high tier circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1224,"preRequisites":[1230,1228],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17470,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Epoxid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epoxid is needed for your advanced Circuits boards. You need Sodium Hydroxide, Epichlorohydrin and Bispenol A to make it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30648,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30669,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":4,"Damage":470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17470,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1225,"preRequisites":[1222],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lIV Circuit Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mainframes are the first IV Circuits you can make in HV. Used for EV and IV machines and components.\n\nIn addition, you will need 16 Capacitors, SMD or non-SMD.\n\nOnce you get a reliable polyethylene setup, it will save a lot of resources to use SMD components."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1226,"preRequisites":[845],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30629,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGlycerol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Glycerol becomes important in creating epoxid in the next tiers. It is important for TNT production too. It is left over when producing bio diesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":30629,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1227,"preRequisites":[1021],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30683,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHCL","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HCl becomes important for your epoxid production in HV/EV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30683,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1228,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30648,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEpichlorohydrin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epichlorohydrin is another product needed in your epoxid production. By now you should be experienced enough to figure out which path is best for your setup using NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30648,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1229,"preRequisites":[176,552],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30687,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPhenol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The easiest way is to get phenol out of heavy fuel. There are other ways, like getting it out of wood tar from a pyrolyse oven, isopropylbenzene and oxygen, or chlorobenzene and water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1230,"preRequisites":[552,1229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30669,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBisphenol A","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Bisphenol A you need to combine Phenol, Acetone and HCl in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30672,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30669,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32106,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1231,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lYou gonna hate this 1-4 in HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor Belts and robot arms are the most needed machine parts in HV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32642,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32632,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1232,"preRequisites":[1231,1233],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32692,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lYou gonna hate this 5 and 6 in HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32682,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32692,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11054,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1233,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnder Eyes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ender eyes are available at HV in the chemical reactor. Combine some ender pearls with blaze powder."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:blaze_powder","Count":1,"Damage":0,"OreDict":"itemBlazePowder"},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1234,"preRequisites":[1020,1224,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEmpty Expoxid Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epoxid circuit boards require epoxid plate, gold foil and sulfuric acid to make an empty board. By adding electrum foil and Iron(III) Chloride or Sodium Persulfate you can craft an epoxid or advanced circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17470,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32711,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17470,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1235,"preRequisites":[1013,1221,1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMicroprocessor LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Microprocessor is the most highest tier way to craft an LV circuit, but you get 2 per recipe. It requires plastic board, a cleanroom, a cpu and a few smd components."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1236,"preRequisites":[1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":253,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lCutting Machine HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nor, nand and other high tier chips require an HV cutting machine. This machine is also needed for cutting glowstone doped wafers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":253,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1237,"preRequisites":[746,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32031,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lGlowstone Doped Monocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make more advanced wafers, you need to make glowstone dopped monocrystalline silicon first. The process takes 600 seconds and requires silicon dust and glowstone dust in the electric blast furnace. You can make 32 wafers out of every boule.\n\nUnfortunately, these boules seem to require higher heat than cupronickel coils can produce. You'll need to go to Multiblock Goals and get a cleanroom, vacuum freezer, and kanthal coils in order to make them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2020,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32031,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1238,"preRequisites":[1237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32034,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lGlowstone Doped Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some glowstone doped silicon wafers, place the monocrystalline glowstone doped silicon boule in a cutting machine. An HV version of the cutting machine is needed for future wafers and chips.\n\nYou will need to cut these wafers in a cleanroom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32034,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1239,"preRequisites":[1238,1236,772],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNor and Nand chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The data stick requires nand chips. Nor chips are needed for more advanced circuits. You can get these by cutting nand and nor wafers.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32042,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32040,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32041,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24533,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1240,"preRequisites":[1239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Data Sticks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Data sticks are very important for seismic prospecting and for the assembly line in the LuV age. Go and craft a few data sticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1241,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRadon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Radon is used for quantum eyes, quantum stars and emitters and sensors in the EV machines. Try to find a Pitchblende vein first and/or recycle your plutonium and uranium from your reactor.\n\n§4This Vein can be found on Mars and Phobos."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1242,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lEV Chemical reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV chemical reactor is required to get some indium or make your radon production much faster. If you already made a large chemical reactor use that instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":424,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"minecraft:ender_eye","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1243,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4873,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPitchblende","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to try running your nuclear reactor you need some uranium or plutonium fuel. Go and find a pitchblende vein on Mars at Y 30-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4873,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4922,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1244,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lScheelite, Tungstate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is the material you need but first go find some scheelite and tungstate mix on Mars. Look at Y 20-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4006,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1245,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§f§a§lYou gonna hate this 1-4 in EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in EV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32613,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32643,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32633,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1246,"preRequisites":[1245,1247],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32693,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lYou gonna hate this 5 and 6 in EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32693,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1247,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuantum Eye","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantum eyes are required in EV emitters and sensors. Just infuse your ender eye with radon to get one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32724,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1248,"preRequisites":[1223,1249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are three variants of advanced circuits. The advanced electronic circuit, the processor assembly and the nanoprocessor. The Nanoprocessor needs an EV circuit assembling machine to be made. Use your epoxid boards for it.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32016,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1249,"preRequisites":[1234,1018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano CPU Wafer and Chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nano CPU Wafer is made out of a CPU Wafer with carbon fiber and molten glowstone in an EV chemical reactor. Cut it for nano CPU chips.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32055,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone_dust","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonFibre","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1250,"preRequisites":[1248],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32083,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor Array","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano processor array is an EV circuit. \nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32082,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32083,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1251,"preRequisites":[1250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32084,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lElite Nano Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The elite nano computer is an IV circuit.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32083,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32084,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1252,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":543,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lHV Chemical Bath","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV chemical bath or better is needed for the quantum eye."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":543,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1253,"preRequisites":[1319],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":37,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second largest storage component, used to make 16k ME storage cell, or can be upgraded to make 64k ME storage component. Can be recovered from a crafted 16k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":37,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1254,"preRequisites":[1318,1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 16,384 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1255,"preRequisites":[180,1256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highest tier storage cell, which can contain 65,536 bytes of storage. 65,536 bytes of storage can hold 8,128 stacks of a single item, or 4,160 stacks, while holding 63 different items. The 64k storage cell uses 512 bytes of data to store a single type. When placed inside a drive or chest will consume 2.0 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 64k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1256,"preRequisites":[1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Largest storage component, used to make 64k ME storage cell. Can be recovered from a crafted 64k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":38,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1257,"preRequisites":[1254,1256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 65,536 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":4,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1258,"preRequisites":[1298],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wireless Booster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wireless booster is used to increase the range of the ME wireless access point."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:ender_eye","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1259,"preRequisites":[1306],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Filling Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Export bus for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1260,"preRequisites":[1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingMonitor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crafting Monitor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which displays the top level job and its current progress so you can monitor at a glance how your crafting jobs are progressing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingMonitor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1261,"preRequisites":[1251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano processor mainframe is the cheapest LuV Circuit.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32084,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32706,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32011,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1262,"preRequisites":[206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":184,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBattery Buffer x9","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"EV battery buffer for up to nine batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":184,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1263,"preRequisites":[1262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11349,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBlue Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your sunnarium batteries are made out of blue steel: a mixture of steel, black steel, brass and rose gold."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2334,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2351,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11349,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1264,"preRequisites":[1263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32540,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV Sunnarium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first EV sunnarium battery used in EV tier. You make it with the sunnarium you generated before."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32503,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2318,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32540,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32540,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1586,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1265,"preRequisites":[1262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:MU-metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32054,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV GT++ Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A cheaper variant is the GT++ EV battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32538,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1428,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"miscutils:MU-metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1426,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1266,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":21,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLow Voltage Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's possible to run MV machines while still in LV age. Build a transformer and use 4 power sources 32 eu/t to power one 128 eu/t machine. You can change the mode of a transformer with a soft mallet. If the transformer is wired and loaded then DO NOT change the mode otherwise there probably will be a big explosion. Be careful when switching directions - better to break and replace than rotate with the wrench and blow up a line of machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":21,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1267,"preRequisites":[1266,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMedium Voltage Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's possible to run HV machines while still in MV age. Build a transformer and use 4 power sources 128 eu/t to power one 512 eu/t machine. You can change the mode of a transformer with a soft mallet. If the transformer is wired and loaded then DO NOT change the mode otherwise there probably will be a big explosion."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1268,"preRequisites":[1267],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":878,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLV High-Amp Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need a transformer with more than 4 amperes you need a high amp transformer. You can input four 128 eu/t power sources and output 16 ampere at 32 eu/t.\nModes can be changed with a soft mallet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":878,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1269,"preRequisites":[1268],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLow Voltage Power Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need even more amps then craft a power tranformer with a max LV output of 64 amps. You can input sixteen 128 eu/t power sources and output 64 amps at 32 eu/t. Modes can be changed with a soft mallet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1270,"preRequisites":[724,1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:itemSpade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Time for a Spade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having a Weeding Trowel, Hoe and Shovel in your Inventory is painful when dealing with crops. Get the Spade - it combines these items, is unbreakable, and increases the chance of getting seeds from plants.\n\nBe careful! Right-clicking on a plant pulls it for seeds. Make sure to switch to Sense or your open hand to harvest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:itemSpade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"White Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Nether Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Black Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Red Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Gray Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Yellow Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Goldfish Plant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}]}]},{"questID":1271,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":283,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lExtruder HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV Extruder is needed to extrude tough metals like Tungstensteel and HSS."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":283,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1272,"preRequisites":[634,1273],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wheaty juice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step to brew beer or other alcoholic fluids is wheaty juice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32115,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1273,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":491,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBrewing, the Industrial Way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want brews or alcohol, I recommend you to build one of these. You might have noticed that you cannot build a brewing stand without Thaumcraft. But fear not, you can still find them in chests. Better get searching..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":491,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1274,"preRequisites":[1273,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFerment your brew!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What's better than lame brews? Alcoholic brews! Get one of these to make beer, rum or even vodka."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":501,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"berriespp:BppPotions","Count":4,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1275,"preRequisites":[1278],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fake Jagermeister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jagermeister is a common drink in Germany, why don't you grab a bottle? This one seems to be a cheap fake tho..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:BppPotions","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":30,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1276,"preRequisites":[1272,547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Korn and Doppelkorn","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Korn is german for wheat. That's why this special alcoholic brew is named like this. Doppelkorn means double-wheat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:BppPotions","Count":1,"Damage":1,"OreDict":""},{"id":"berriespp:BppPotions","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1277,"preRequisites":[19],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:reeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sugarcanes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcanes are a source of sugar, and therefore alcohol. If you want some rum or sugar, you'll need these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:reeds","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1278,"preRequisites":[1272,893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vodka","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vodka is Russian for \"small Water\". It is a rather high proof alcoholic fluid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":1279,"preRequisites":[1090,931],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2347,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFirestone Ore/Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Firestone ore is handy for some base building machines. Unforunately, it's in the nether...at the bottom of the lava ocean! Here are some tips for finding it\n\nFirestone can be mined with the GT miners, if you place it within range.\nFirestone only spawns in deep lava, at least 6 deep. It will only replace netherrack, so a fjord filled with soulsand won't have any. Can you think of ways to check the lava depth, and what's down there?\nNormally you can't see through lava, but if you enable nightvision on the nanosuit, you can see a short distance at the bottom. But how to prevent getting burned?\nAlternatively, if you keep your head at just the correct height above the lava and at the correct angle, you'll be able to see underneath it - surely there must be a hovering jetpack?\nFirestone ore and products will cause random fires to start nearby, so get it into a backpack quickly!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2347,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2347,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1280,"preRequisites":[1277,1274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The industrial way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making rum can be automated, but you need to follow this industrial way for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32109,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"potion.freed","Amount":1000}],"ignoreNBT":0,"index":1,"consume":0,"taskID":"bq_standard:fluid"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"potion.swhine","Amount":1000}],"ignoreNBT":0,"index":2,"consume":0,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1281,"preRequisites":[1280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rum. Yummy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1282,"preRequisites":[1277,1283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sugar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"The gathering: Sugar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stockpiling sugar might be a good idea if you have a sweet tooth. Or not?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sugar","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:caramelappleItem","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCook","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1283,"preRequisites":[502,994,1284],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:jarFilled","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Honey for sugar.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since honey contains a lot of sugar, it might be a good idea to get some honey."}},"tasks":[{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"for.honey","Amount":1000}],"ignoreNBT":0,"index":0,"consume":0,"taskID":"bq_standard:fluid"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"honey","Amount":1000}],"ignoreNBT":0,"index":1,"consume":1,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:honeyedSlice","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1284,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:hive","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wasps honey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Giant wasps can be found in the Nether. Quick! Sneak into their hive and steal some honey!"}},"tasks":[{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"honey","Amount":5000}],"ignoreNBT":0,"index":0,"consume":0,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":1,"OreDict":""}]}]},{"questID":1285,"preRequisites":[495,98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:spike_base_diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Spikes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond Spike damages mobs that touch any side of it other than the bottom. With +7 attack damage, the Spike does as much damage as a Diamond Sword. Mobs will not walk around the block, but will try to walk over it as if it were a regular solid block. Most explosions won't destroy the Spike because it has a very high blast resistance.\n\nThese can also be enchanted with all the enchantments a regular diamond sword would receive. This includes Looting and Sharpness, which function exactly as it does on a sword. Interestingly, mobs killed by the Diamond Spike will return experience as if killed by the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17500,"OreDict":""},{"id":"minecraft:diamond_block","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:spike_base_diamond","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:epicbaconItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:diamond","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1286,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Primal Shrooms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Primal shrooms allow you to refill wands easier before you can move nodes to your base.\nGo and find some in a magical forest biome. Try using a Nature's Compass. Or buy some if no biome is close to your location.\n2 pumpkins and 4 entropy slivers are the perfect combo to make these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:ashroom","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""},{"id":"minecraft:nether_wart","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1287,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Vish Shroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magic mushrooms whoooo!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizard","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":5,"Damage":5,"OreDict":""}]}]},{"questID":1288,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemHops","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hops, the source of beer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't want pure alcohol, but beer, get some hops by crossbreeding IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemHops","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinFarmerI","Count":6,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1289,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":223,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lHV Bender","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV Bender is going to be 4x faster than your LV Bender, but it also opens up an important recipe - Tin cans! \n\nWith this bender you can turn Tin Casings into Tin Cans. Using the Tin Cans with food in a Canner (LV is fine) will make Canned Food. This can stack up to 64, and will fully restore your shanks - no need to rotate food types any more! You will eat as much as you need with one click. One drawback is you will no longer get the Well Fed buff with its slight health regen bonus. Also, these cans don't fit in the lunch bag or lunch box so you don't need those any more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":223,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemTinCanFilled","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1290,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Imma chargin' my...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Charged certus quartz is one of the basic components for a lot of AE recipes. Just mix some certus quartz and redstone dust to get charged certus quartz dust.\nUse the autoclave to make crystals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":"dustRedstone"},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2516,"OreDict":"dustCertusQuartz"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1516,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":810,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1291,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockEnergyCell","Count":1,"tag":{"internalMaxPower":200000,"internalCurrentPower":200000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping your Network Happy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Helps with fluctuating power. Energy cells store up to 200,000 AE. They do not accept power directly but are used to buffer some power in an already existing ME network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockEnergyCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":9,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1292,"preRequisites":[184,183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockDrive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Storing your ME data","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A block designed to do one thing, store storage cells. This block holds 10 storage cells so you can tightly pack your storage into a very small space. ME drives show their contents and the storage cell status on the front of the drive face. Red - Indicates the storage cell is full. Orange - Indicates the storage cell cannot hold any more types, but it can store more items. Green - Indicates the cell can hold more types, or more items. Black - Indicates there is no channel, or power is offline. It's important to note, that without an ME Network this block does nothing. It's only useful when combined with a way to input, and output items, and requires 2 AE/t power to function, and additional power for each storage cell stored inside it. The ME drive requires a channel to function."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockDrive","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1293,"preRequisites":[1292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:hardmedrive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Safety first!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This storage cell housing is blast proof and stores only 3 cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:hardmedrive","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1294,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockQuartzGrowthAccelerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speeding up growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Used to accelerate the process of purifying crystals, which allows you to create pure certus quartz crystal, pure nether quartz crystal and pure fluix crystal. Must be powered by an ME Network via the top or bottom, and consumes a steady 8 ae/t while plugged in. Crystal Seeds must be in an adjacent water block to be affected - the seeds will shimmer more rapidly when in the presence of a powered crystal growth accelerator. Can only connect to cables, or other networked machines on the top and bottom of the machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockQuartzGrowthAccelerator","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":1200},"Damage":1200,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1295,"preRequisites":[1294],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ae2stuff:Grower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Perfecting Crystal Growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The crystal growth chamber is used for fast crystal growth, and it is possible to increase its speed by installing an acceleration card in an upgrade slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ae2stuff:Grower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":1200},"Damage":1200,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1296,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purifying the impure","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Purified versions of nether, certus and fluix crystals"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":48,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2522,"OreDict":"dustNetherQuartz"},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2516,"OreDict":"dustCertusQuartz"},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":8,"OreDict":"dustFluix"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":1200},"Damage":1200,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":10,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8523,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1297,"preRequisites":[400],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:essence","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Dragon essense","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need some Dragon essense? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1298,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSecurity","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wireless Setup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Allows you to configure which users, and what permissions the users have with the ME System. By existing it enforces permissions on the usage of the system.\n\nThe security system does not prevent destructive tampering, removing cables / machines or breaking of drives. If you need to protect your system from physical vandalism you will need another form of physical security. This block provides network level security.\n\nThe player who places the ME security terminal has full control over the network and cannot exclude himself any rights. By adding a blank biometric card you define a default behavior for every player who has no biometric card registered.\n\nIn addition to security on the software layer, you can link up your wireless terminal with the network and access it wirelessly.\n\n\nAllows wireless access via a wireless terminal. Range and power usage is determined based on the number of wireless boosters installed into the ME wireless access point. A network can have any number of ME wireless access point with any number of wireless boosters in each one, allowing you to optimize power usage and range by altering your setup. Requires a channel to be operational."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSecurity","Count":1,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:tile.BlockWireless","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":32,"Damage":140,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":{}}]},{"questID":1299,"preRequisites":[1291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockDenseEnergyCell","Count":1,"tag":{"internalMaxPower":1600000,"internalCurrentPower":1600000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense boys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Giving your network even more stability. Dense energy cells store AE energy up to 1.6 million units. They do not accept power directly but are used to buffer power in an already existing ME Network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockDenseEnergyCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1300,"preRequisites":[1298,1299],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ToolWirelessTerminal","Count":1,"tag":{"internalMaxPower":1600000,"internalCurrentPower":1600000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME in the Ether","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you linked up the wireless terminal in the ME security terminal, it grants a portable access to the ME network. Put it into a charger to recharge it.\n\nHolds 1.6m AE in its battery and drains 1 AE/t for each block you are away from the nearest ME wireless access point."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ToolWirelessTerminal","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1301,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Annihilation and Formation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Formation Core - a component which can convert energy back into matter.\nAnnihilation Core - a component which can convert matter into energy.\nGates all network I/O."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":44,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":1,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1302,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":440,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Machines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME Interface is the only component which can be used as a part, or as a Block. Crafting an ME interface in either form by itself produces the other form. The thin form is useful if you want to provide several different interfaces in a single block of physical space, but each will need its own channel. The block form lets multiple other blocks connect to a single ME interface, using only one channel for the interface. The ME Interface acts as an in between when working with pipes, tubes, networks, or machines from other mods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":440,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1303,"preRequisites":[1302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":220,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Inventories","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME storage bus, when attached to another inventory block in the world lets you access that inventory via networked functions. This allows you to use chests, barrels, or other types of item storage in your networks.\n\nThe storage via the ME storage bus is bi-directional, it can both insert, or extract items from the inventory block it is attached to as long as the ME storage bus has its required channel.\n\nThe UI allows you to control which items are selected as storable items, this selection has no effect on what items can be extracted once they are in the storage.\n\nThe storage bus will function with nearly any inventory block, including ME Interface, Minefactory Reloaded DSUs, Factorization barrels, JABBA Barrels, and Better Storage crates. They can also be used to route items passively into Buildcraft pipes.\n\nIf you place a storage bus on an ME Interface the storage bus will be able to interact with the full conents of the target network, unless that interface is configured to store items inside itself, in which case it will see those stored items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":220,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11085,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1304,"preRequisites":[1303],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Storage bus for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1305,"preRequisites":[1302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"For Fluid Recipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ME interface for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1306,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":260,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Extracting Items From the Network","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME export bus extracts items from the ME network's networked storage and places them into the inventory it faces. You must configure which items it will insert, leaving the configuration blank will result in nothing. The ME export bus will try to export any of the items on its list skipping over those it cannot fit into the destination. The ME export bus requires a channel to function. This is the functional opposite of the ME import bus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":260,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1307,"preRequisites":[1297],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Dragon essense II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need some Dragon essense? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":320,"Damage":0,"OreDict":""}]}]},{"questID":1308,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":240,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inserting Items Into the Network","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pulls items from the inventory it is pointed at and places them into the ME network's networked storage. You can specify which items it will pull out via the UI, else it tries to pull out any item in the adjacent inventory. The ME import bus will attempt to import any possible options, even if 1 or more of the configured items cannot be stored. The ME import bus requires a channel to function. This is the functional opposite of the ME export bus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":240,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1309,"preRequisites":[1308],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Emptying Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Import Bus for Fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1310,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":39,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Something to put your Components in","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An empty storage container, you can insert any of the various storage cell parts into it to create a usable storage cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":39,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1311,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main processor for 1K and 4K cells.\n\nAs alternatives to storing items in ME, you can use a storage bus connected to other blocks. A common tactic is to connect to a bank of Compressed Chests or even a Drawer Controller in this way. This can help reduce the power requirements in your AE system."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":22,"OreDict":""},{"id":"dreamcraft:item.GoldCoreChip","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1312,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automating Crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Is a component of the crafting CPU. This particular block provides the CPU with no additional features, but can be used as a \"filler\" block and as a crafting ingredient for the crafting storage, monitor and co-processing units."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1313,"preRequisites":[1314,1310],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.1k","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lowest tier storage cell, which can contain 1,024 bytes of storage. 1,024 bytes of storage can hold 127 stacks of a single item, or 65 stacks, while holding 63 different items. The 1k storage cell uses 8 bytes of data to store a single type. When placed inside a drive or chest will consume 0.5 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 1k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand. The settings can be changed in the cell workbench."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.1k","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1314,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":35,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smallest storage component, used to make 1k ME storage cell, or can be upgraded to make 4k ME storage component. Can be recovered from a crafted 1k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1315,"preRequisites":[1314,1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 1024 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1316,"preRequisites":[1317,1313],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.4k","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second tier storage cell, which can contain 4,096 bytes of storage. 4,096 bytes of storage can hold 508 stacks of a single item, or 260 stacks, while holding 63 different items. The 4k storage cell uses 32 bytes of data to store a single type. When placed inside a drive or chest will consume 1.0 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 4k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.4k","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1317,"preRequisites":[1314],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second smallest storage component, used to make 4k ME storage cell, or can be upgraded to make 16k ME storage component. Can be recovered from a crafted 4k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1318,"preRequisites":[1317,1315],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 4,096 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1319,"preRequisites":[1317],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main processor for 16k and 64k cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":24,"OreDict":""},{"id":"dreamcraft:item.DiamondCoreChip","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1320,"preRequisites":[731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":242,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV compressor is twice as fast as the LV one but uses 4x the power. I suggest crafting 4 MV compressors for the new biomass processing line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":242,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1321,"preRequisites":[732],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":302,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV macerator is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":302,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1322,"preRequisites":[732],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":362,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV centrifuge is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":362,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1323,"preRequisites":[733,734,735],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellEmpty","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§6§lBiomass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chose the IC2 or the gregtech way to make biomass. Water and BioChaff is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1324,"preRequisites":[848,717,1544],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":512,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAdvanced Fluid Extractor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV fluid extractor is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":512,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1325,"preRequisites":[409],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:daggerOfSacrifice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dagger of Sacrifice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get more blood. Mobs are a good source for more blood. Transform your knife of sacrifice in your tier 2 altar into a dagger of sacrifice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:daggerOfSacrifice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1326,"preRequisites":[1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Co-Processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides additional item delivery from the CPU to the ME Interface for crafting.\n\nThis can be used to make more assemblers active in parallel for the job, and thus increase overall crafting speed. These only help if your setup has steps properly separated so the system can run multiple tasks in parallel, or even split the same pattern across multiple interfaces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1327,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":52,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Recipe Patterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A blank pattern, once encoded as an encoded pattern, is used to control crafting by inserting them into molecular assemblers and ME interfaces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":52,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1328,"preRequisites":[1327],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pattern Terminal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A specialized version of the ME crafting terminal designed to encode blank patterns into encoded patterns.\n\nLets you browse the contents of your network like other terminals, but also contains an area for designing patterns. There are two modes for pattern encoding. Crafting patterns, and processing patterns. Processing patterns are designed for use with machines that do not use standard crafting recipes - such as furnaces, or other machines. To select between modes, click the button to the right of the interface: when it shows a standard crafting table, it will create crafting patterns, and when it shows a furnace, it will create processing patterns.\n\nFor crafting patterns (\"Crafts...\"), you specify the input crafting materials on a standard 3x3 crafting grid, and the output materials are determined automatically.\n\nFor processing patterns (\"Creates...\"), you specify the input materials and output materials, including quantity, by placing stacks of items in the interface. If a processing operation is not guaranteed to succeed (such as secondary products from some machines), it will not work correctly as a processing pattern.\n\nWhen designing crafting patterns you can click the output to extract a crafted item as long as you have the materials required to craft the item.\nDon't forget to enable oredict substitution where needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17522,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1329,"preRequisites":[1300],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ae2stuff:Wireless","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME in your Cleanroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wireless connector is a close range quantum bridge alternative.\nConnections are point-to-point - you can't connect more than 2 blocks together. Each block will use 10 + distance^2 AE/t. Does not work across dimensions. Power needs to be provided on only one side. Up to 32 channels can be transferred through the connection. Can connect directly to dense cables. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ae2stuff:WirelessKit","Count":1,"Damage":0,"OreDict":""},{"id":"ae2stuff:Wireless","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":10,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1330,"preRequisites":[1306],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ore Dictionary Output","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME ore dictionary export bus will attempt to push the configured item/fluid [From the same ore dictionary] from the ME network into a machine or other input inventory. To configure an item/liquid, type in the item's name [e.g. if you want to export all ores put \"ore*\"]. The rate of export is very fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1331,"preRequisites":[203],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ToolMemoryCard","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"To Link P2P Busses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A small item, that can be used to store, copy, and paste settings. Shift + right click on a configurable object to save the settings onto the memory card, then right click on any other block of the same type to paste the settings. They are also used to link the input P2P tunnel to the corresponding output P2P tunnels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ToolMemoryCard","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1332,"preRequisites":[237,935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Solar LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The power of the sun x10. This solar panel works like 10 regular ones, but costs only 9. How is this possible? Magic! NOTE: They give out GT EU. NO TRANSFORMER NEEDED!"}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":8,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.ReinforcedAluminiumIronPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1333,"preRequisites":[240,238,88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Potentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aren't you tired of voiding all that useless potentia essentia? Well here's the solution:\nA generator that consumes potentia and outputs GT EU NO TRANSFORMER NEEDED!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"potentia"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemAdvBat","Count":3,"Damage":26,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32681,"OreDict":""}]}]},{"questID":1334,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Auram","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Generator is quite tricky. It requires Auram Essentia, that isn't that common, but its output is nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"auram"}]},"Damage":1,"OreDict":""}]}]},{"questID":1335,"preRequisites":[241,1332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused Solars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Compressed Solar Panels can be infused with Aspects for certain additional features. Check them out and choose one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemEssence","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:BlockJarFilledItem","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1336,"preRequisites":[1332,261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double Compressed Solar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"100EU/t for 72x1EU/t Solars? Sounds like a good deal. Get one of these. They can be Infused as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockGenerator","Count":5,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""}]}]},{"questID":1337,"preRequisites":[1335,1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Even more Infused","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can infuse double or triple compressed solars as well."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1338,"preRequisites":[1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Full power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triple Compressed Solars. Yes, that's right. They are a bit more expensive than their lower counterparts, 576 Solars in total. But they give out 1,000 GT EU per tick and have no need to be cleaned. How so? Magic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EMT:EMTSolars","Count":1,"Damage":4,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":10,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":13,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":7,"OreDict":""},{"id":"EMT:EMTSolars2","Count":1,"Damage":0,"OreDict":""},{"id":"EMT:EMTSolars2","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1339,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So, you got rid of the Potentia, maybe you don't want Ignis, but Potentia? Get this one to be able to burn Ignis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"ignis"}]},"Damage":1,"OreDict":""}]}]},{"questID":1340,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Arbor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When using magical plants to get Praecantatio Essentia, you'll end up with a couple dozen of Arbor Essentia jars. But no worries! This generator runs on Arbor! Awesome!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"arbor"}]},"Damage":1,"OreDict":""}]}]},{"questID":1341,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcanes to power...? This generator runs on Aer Essentia, it might not be as powerful as it's counterparts, but it's fuel is cheap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"aer"}]},"Damage":1,"OreDict":""}]}]},{"questID":1342,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Lucrum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This highly-warped, high-power Essentia generator is a lifesaver, when you run out of energy. Just toss some gold into your Arcane Furnace and burn the Lucrum you get."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"lucrum"}]},"Damage":1,"OreDict":""}]}]},{"questID":1343,"preRequisites":[645,230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:FeatherWing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Works like in anime!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want to fly. Badly. So go and ductape wings!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:FeatherWing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1344,"preRequisites":[1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ThaumiumWing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since you have access to better materials than cardboard now, you wanted to make wings. Angel wings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ThaumiumWing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1345,"preRequisites":[1344,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanosuitWing","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secret-Angel-Assasin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Infusing your Wings with Nano-Technologies seems to be the next step, to further improve them and combine magic and technology."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanosuitWing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1346,"preRequisites":[1364],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dropped in Asgard, fallen to earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've heared rumors of a mighty weapon, dropped in Asgard and fallen to earth. Could this be the mystical Item?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1347,"preRequisites":[1346,1361,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:Mjolnir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Repaired it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sadly enough, the hammer was broken. But you have the skills and the knowledge to repair it, don't you?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":2,"Damage":6,"OreDict":""},{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemSwordElemental","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemBatCrystal","Count":2,"Damage":26,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17880,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EMT:Mjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1348,"preRequisites":[1347],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:SuperchargedMjolnir","Count":1,"tag":{"charge":2000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Super-Mjollnir","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Addidional tweaks to your Mjollnir have changed it. Now you can summon Guardian Snowman to help you out!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:SuperchargedMjolnir","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":12,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1349,"preRequisites":[226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricGogglesRevealing","Count":1,"tag":{"charge":100000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electrogoggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you wander with your Goggles of Revealing you noticed that they tend to break easy. So craft yourself some electric ones that just need to be charged again!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricGogglesRevealing","Count":1,"Damage":165,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1350,"preRequisites":[1349,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanosuitGogglesRevealing","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nano Goggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The #1 product for spies and wanna-be-spies. Nano-Goggles. Don't you want one of these too? But they are sold out? Craft some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanosuitGogglesRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1351,"preRequisites":[1350,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumGogglesRevealing","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Goggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you continue to progress, you notice that your black goggles don't match your nice white and shiny armor. You decide to get a pair of white ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumGogglesRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":5,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1352,"preRequisites":[1351,1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:SolarHelmetRevealing","Count":1,"tag":{"charge":20000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Goggles > 9000","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This special pair of goggles recharges itself while you wander in sunlight. How convinient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:SolarHelmetRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":1353,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:electricCloud","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sparking Nitor...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"YELLOW! What an ugly color! I want PURPLE Nitor! Get me some and you'll receive something nice in exchange."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"EMT:electricCloud","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCandle","Count":16,"Damage":10,"OreDict":""},{"id":"Thaumcraft:blockWoodenDevice","Count":4,"tag":{"color":10},"Damage":8,"OreDict":""},{"id":"TConstruct:slime.gel","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1354,"preRequisites":[1096,789],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricScribingTools","Count":1,"tag":{"charge":400},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rechargeable Scribing Tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you tired of getting all the Ink for your scribing and you don't want to use your blood either? Get this Hi-Tech Scribing Device which will make your life much easier! Treat it like an LV machine - charge in any LV machine's battery slot, or in an LV battery buffer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricScribingTools","Count":1,"Damage":400,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemBatCrystal","Count":1,"Damage":26,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemInkwell","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1355,"preRequisites":[1345,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumWing","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings - Ultra Force!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"From ore to ingot, from nano to quantum, as you progress, your technology level increases, so should your wings as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumWing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"IC2:itemOreIridium","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1356,"preRequisites":[1355,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:itemArmorQuantumChestplate","Count":1,"tag":{"charge":20000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings - Combine!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last step is to combine the quantum armor with your quantum wings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:itemArmorQuantumChestplate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1357,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricHoeGrowth","Count":1,"tag":{"charge":200000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric Hoe-ing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the Hoe of Growth breaks easily, we have a fix for you! Get this one and simply recharge it, when it's empty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricHoeGrowth","Count":1,"Damage":1561,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1358,"preRequisites":[1333,215,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTMachines","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"EU->VIS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This device allows you to charge your wands using EU, but it costs 10kEU per Vis restored."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTMachines","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":1,"Damage":52,"OreDict":""}]}]},{"questID":1359,"preRequisites":[238,79],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ShieldFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Press and hold the B button to block!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Focus allows you to block any incoming damage. Sneak away if you're fighting an enemy too strong for you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ShieldFocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1360,"preRequisites":[1359],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ShieldBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reactor Shielding 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Shield Blocks - explosion proof - single use. Get a couple of these to shield your reactor!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ShieldBlock","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemOreIridium","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1361,"preRequisites":[1365],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What the Heck...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You found a yellow-ish glowing ball. It might be useful later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1362,"preRequisites":[1363],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:BaseBaubles","Count":1,"tag":{"warp":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The One Ring.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So you found it. The One Ring, forged by a mighty Dark Wizard. A strange feeling tells you to put it on. The Ring seems to whisper to you as well..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:BaseBaubles","Count":1,"tag":{"warp":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1363,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Ring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:BaseBaubles","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1364,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Mjolnir","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1365,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Ballthingy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1366,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]},"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ocean Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Ocean Bees? Since some servers don't provide ocean biomes, buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beePrincessGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""}]}]},{"questID":1367,"preRequisites":[486,995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgrade your Forestry Backpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your woven silk you can upgrade your Forestry backpacks. Each Pack has 45 slots.\nYou need a carpenter, your old backpack and a bit of seed oil.\n\nIf the recipe is not working, put the bag in a crafting grid to reset additional nbt data."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":18,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:diggerBagT2","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:minerBagT2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:craftingMaterial","Count":9,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1368,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Lost in the Twilight Forest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stay in the Twilight Forest and your portal gets broken, you are stuck. Every 24h you are able to exchange some materials to get a new portal crystal to escape."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.tfFeather","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFFirefly","Count":4,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.torchberries","Count":16,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFLog","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1369,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Time to find some Amber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every Thaumcraft Infused Stone vein has a bit of amber ore in it. Go and find some amber ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":514,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1370,"preRequisites":[1369],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Light it up!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The arcane lamp creates additional light sources which acts like a Torch in a sphere with a radius of 16 blocks centered on it. This will include caves or other areas behind walls. That might be useful... One downside, it might put a light where one isn't wanted, like inside an EBF. \n\nWhen attached to the base of an arcane bore, the arcane lamp gains an additional ability: It will light up the tunnel that the bore digs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCosmeticOpaque","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1371,"preRequisites":[827],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.canisterPartialLOX","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"LOX and Bagels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LOX canister is an alternate solution to refilling your oxygen tanks.\nTo make liquid oxygen you need 1 oxygen cells.\nPut this in the HV powered vacuum freeezer to get 1 cell of liquid oxygen.\nTransfer this liquid oxygen into a tank, and then into a LOX canister.\nTo refill your oxygen tanks just put the tank and the LOX canister in the crafting grid to transfer oxygen.\nEach LOX canister can fill 4 Heavy Oxygen Tanks, 6 Medium Oxygen Tanks, or 12 Light Oxygen Tanks. With a full stack you won't need to bring oxygen equipment with you.\n\nSo much Greggy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":1,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.canisterPartialLOX","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":900,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1372,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Fire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Fire is a basic wand focus. When equipped to a wand, it will be able to spew a short-range cone of fire by holding down the right mouse button. Its base vis cost is 0.1 ignis per second.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusFire","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1373,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusExcavation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Excavation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Excavation when equipped to a wand, will emit a green beam of light that will mine blocks of any hardness (except for blocks like Bedrock) from a distance.\nIts base vis cost is 0.15 terra per tick that it mines a block. It is also used in operating the Arcane Bore.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusExcavation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1374,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Shock","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Shock when equipped to a wand will shoot a bolt of lightning when the right mouse button is pressed. It homes in slightly to the nearest mob/player from where it is aimed. Its base vis cost is 0.25 air per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1375,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Equal Trade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Equal Trade is a wand focus added by Thaumcraft 4. It is used to switch out blocks in the world with blocks in the player's inventory. Shift right-clicking on a block with it equipped will attune the focus to the block, making it the substitute block. Left-clicking on another block will replace it with the substitute block. Right-clicking will transform a 3x3 area of blocks that the player can see (the focus will not affect blocks behind those). This range can be extended by using a Focal Manipulator. Each use costs 0.05 ordo 0.05 perditio and 0.05 terra.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1376,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusFrost","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Frost","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Frost when equipped to a wand will launch a ball of ice that can bounce off of blocks and mobs if their hardness is high enough. It will inflict Slowness on mobs, freeze water and solidify lava. Its base vis cost is 0.05 aqua 0.02 ignis and 0.02 perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusFrost","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1377,"preRequisites":[1373,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusWarding","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Warding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Warding can be used to make blocks invincible. To ward a block, right click on it with a wand or staff with this focus on it. This will make the block invincible until it is unwarded by right clicking it again with the wand. Take note that only the player who warded the block can unward it. \n\nWarded Blocks are completely indestructible and will produce particle effects similiar to runic shielding when the owner or another player tries to break it. Also, blocks that are affected by gravity(such as sand and gravel) will not fall when warded. Warded blocks cannot be affected by any outside influence such as redstone and pistons. If you attempt to ward glass, it will break the glass instead. There is a block known as warded glass available within the warded arcana research. The only way to break the warded block is via the owner right clicking with a wand in hand. Warding a block costs 0.1 aqua, 0.25 ordo and 0.25 terra.\n\nSpecial Note: Warded blocks emit light.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusWarding","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1378,"preRequisites":[1375,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPortableHole","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Portable Hole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Portable Hole when equipped to a wand will create a temporary 3x3 hole centered on the targeted block that will go 32 blocks. Some blocks cannot be passed through, such as Bedrock. Its base vis cost is air 0.1 and perditio 0.1 per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPortableHole","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1379,"preRequisites":[1182,1180],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart with Chunkloader","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When transporting oil from long distances, a train is going to need a chunk loader. Craft one, and I'll give you a second one for free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChunkloaderTierI","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1380,"preRequisites":[234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPech","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Pech's Curse","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Pech's Curse is a rare wand focus which cannot be crafted by the player. It can only be obtained from a Pech Thaumaturge -- either by trading, or by killing it for the drop. (If attacked, the Pech will use it against you!) Its vis cost per shot is 0.1 Perditio, 0.1 Terra and 0.1 Aqua.\n\nThe focus fires a small ball of energy with a bright bluish-green trail. This missile is affected by gravity, so the shots need to be \"arced\" to hit distant targets. When the shot hits a mob, it does one heart of damage and randomly inflicts one of several effects on the target: Poison, Weakness, or Slowness. A 5th-level upgrade to the focus can make it give all the effects at once.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPech","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1381,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Primal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Primal will hurl an orb of primal energy while holding right-click with it equipped. The orb explodes on impact, and has a small chance to cause other effects, such as creating taint, or a node at the impact site. Its base vis cost changes every tick.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1382,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pimp your Wand Focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Manipulator requires both XP levels and centi-vis in order to upgrade foci. Each Focus can be upgraded a total of five times, with the level and vis cost increasing by 8 for each upgrade. Some upgrades can be applied only at certain levels (often only at level 3), and others have prerequisite upgrades. Some upgrades like Frugal and Potency can be applied multiple times. All upgrades are permanent, and there is currently no way to remove them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1383,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Node Stabilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced node stabilizer acts like a normal node stabilizer but with key differences. It will still stop the node it affects from being drained but the node can now drain from other lesser nodes. It also has a higher chance to improve fading and unstable nodes. The downside is that any nodes it affects will have their recharge rates effectively reduced to nothing. They will recharge at an extremely reduced rate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1384,"preRequisites":[234,1373],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusSmelt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Efreet's Flame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Efreet's Flame is a Wand Focus that smelts blocks like a Furnace would when pointed and fired at them. It shoots a beam similar to the Wand Focus: Excavation. Each usage consumes 0.45 Ignis and 0.12 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusSmelt","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1385,"preRequisites":[1375,238,1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusDislocation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Dislocation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Dislocation allows the user to take and place any blocks, even Tile Entities and things usually unobtainable, like Aura Nodes and their energized counterparts.\nIt uses:\n5 Ordo + 5 Perditio + 1 Terra to take any solid block. \n25 Ordo + 25 Perditio + 5 Terra to take any block with tile entities (such as Chest). \n100 Ordo + 100 Perditio + 20 Terra to take Mob Spawner.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusDislocation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1386,"preRequisites":[1380,238,1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusHeal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Mending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Mending is a wand focus that will slowly mend the Caster's wounds by expending Vis. The Focus consumes 0.45 Aqua and 0.45 Terra per cast, healing half a heart (1 health).\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusHeal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1387,"preRequisites":[1384,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Uprising","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Uprising is a wand focus that propels the player in the direction they're facing. When used, the focus consumes 0.15 Aer per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1388,"preRequisites":[1387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusDeflect","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Disorientation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Distortion can be equipped on any wand. It protects the caster from \"ordinary\" projectiles such as arrows, snowballs, and potions. The focus can be enabled by cycling through the foci currently in the player's inventory, which is done with the F-key. The focus consumes 0.04 Aer and 0.08 Ordo per tick from the Vis stored in the wand while in use.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusDeflect","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1389,"preRequisites":[1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusEnderChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Ender Rift","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Ender Rift is a Wand Focus that opens the vanilla Ender Chest remotely when the player right-clicks with it. When used, the focus consumes 0.9 Ordo + 0.9 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusEnderChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1390,"preRequisites":[238,1387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:xpTalisman","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Telekinesis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Telekinesis is a wand focus that can move nearby objects such as dropped items, arrows etc. where you are pointing with the wand or towards you, if you hold Shift key while using it. Consumes 0.05 Aer + 0.05 Perditio per tick used.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusTelekinesis","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1391,"preRequisites":[238,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Experience Drain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Experience Drain will drain the player's experience at a rate of 15 xp per tick, restoring vis at a rather fast rate.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusXPDrain","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1392,"preRequisites":[238,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusShadowbeam","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Shadow Beam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Shadowbeam shoots a beam of energy that is reflected by any block and damages everything it passes through. The beam travels a rather short distance though. Consumes 0.15 Aer + 0.25 Ordo + 0.25 Perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusShadowbeam","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1393,"preRequisites":[1380,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTaint","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Tainted Storm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Tainted Storm can be equipped on any wand and will emit a stream of tainted particles which will damage anything in a short distance and inflict Taint Poison for 5 seconds. The focus will also debuff the caster with Flux Flu III for 10 seconds unless enchanted with Antibody. The foci can be enchanted with Frugal, Potency, Enlarge, Antibody and Corrosive. Each cast costs 0.1 Aqua + 0.1 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTaint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1394,"preRequisites":[1393],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTaintedBlast","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Tainted Shockwave","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Tainted Shockwave will release a powerful shockwave around the caster which travels 15-20 blocks and will damage all mobs in the radius and push them back the same as a Knockback II enchantment. After using this foci the caster will be unable to use any other magic for 15 seconds. The foci can be enchanted with Frugal and Enlarge, each level of Enlarge will add 1 block to the shockwave radius. Each cast costs 10 Aqua + 5 Ordo + 10 Terra + 10 Perditio.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTaintedBlast","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1395,"preRequisites":[243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusVisShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Vis Shard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Vis Shard can be equipped on any wand. While equipped, it can be right-clicked to cast a homing projectile which deals 2-5 damage points. This projectile can bounce off of solid blocks. If the target is not hit in 10 seconds, the projectile disappears. This focus can be enchanted with Frugal, Potency and Persistent.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusVisShard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1396,"preRequisites":[320,284,1378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusEldritch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Dark Matter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Dark Matter allows the player to cast the projectiles Eldritch Guardians cast. Can be upgraded with Potency, Frugal, Sanity, Diffusion and Corrosive. For each projectile cast the player will get Temporary Warp. This will not happen if the focus is enchanted with Sanity. Enchanting the focus with Diffusion will change its firing mode from single projectiles to short-range black gas which acts as a flamethrower.\n\nEach cast costs 0.2 Ignis + 0.2 Perditio. With Corrosive each cast will cost additionally 0.2 Aqua + 0.3 Ignis\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusEldritch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1397,"preRequisites":[320,284,1396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTime","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Time can be equipped by any wand. When used during day, will set the time to dusk. When used during night, will set the time to sunrise. Each cast costs 10 of all primal aspects and will make the player unable to use any other foci for 30 seconds.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTime","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1398,"preRequisites":[320,284,1396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusMeteorology","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Meteorology","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Meteorology can be equipped by any wand. When used during rain will stop rain, when used during sunny weather, will start rain. Each cast costs 10 of each primal aspect and will make the caster unable to use any other foci for 30 seconds.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusMeteorology","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1399,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusMageMace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Mage's Mace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Mage's Mace can be equipped by any wand and will boost attack damage up to 15 hearts. It can be enchanted with Frugal, Potency and Bloodlust. Each attack with this focus costs 0.5 Perditio.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusMageMace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1400,"preRequisites":[1378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:BlinkFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Blink","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Blink is a very powerful focus allowing to teleport whenever you click, as long as the destination is less then 50 blocks away from you. But, as there is no teleport cooldown, you can travel extremely fast with it. Consumes 3 Perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:BlinkFocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1401,"preRequisites":[1382],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusShock","Count":1,"tag":{"upgrade":[{"id":0},{"id":-1},{"id":-1},{"id":-1},{"id":-1}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infuse your Focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Try to add Potency to your Shock Focus. At Level 3 you can add Chain Lightning or Shock Wave."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusShock","Count":1,"tag":{"upgrade":[{"id":0},{"id":-1},{"id":-1},{"id":-1},{"id":-1}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1402,"preRequisites":[274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27084,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iridium screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chrome screws are nice, but they seem to break if too much vis channels through them. Get some Iridium screws."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27084,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1403,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1122,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Steam Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to use steam in HV tier then it's time to build a steam turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1122,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1404,"preRequisites":[81,78,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2320,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSuperconductors 128 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 128 EU MV Wires ? Pentacadmiummagnesiumhexaoxide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix cadmium, magnesium and oxygen in a mv mixer. Next te base dust needs an EBF with Kanthal Coils. A vacuum freezer is also required to cool it down. Make some MV Superconductor base Wires and use an assembler to combine these wires with Helium, Stainless Steel pipes and HV pumps to get your 128 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2055,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2018,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2987,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11987,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2200,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2200,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5140,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32611,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2320,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1405,"preRequisites":[79,860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSuperconductors 512 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 512 EU HV Wires ? Titaniumonabariumdecacoppereikosaoxide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix titanium, barium, copper and oxygen in an HV mixer. Next the base needs an EBF with Nichrome Coils. A vacuum freezer is also required to cool it down. Make some HV Superconductor base Wires and use an assembler to combine these wires with Helium, Titanium pipes and EV pumps to get your 512 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":1028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":27,"Damage":1063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":1035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":2988,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11988,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2220,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2220,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":5150,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2340,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1406,"preRequisites":[1245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":214,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV asembler is required to make some lapotron crystals. Other recipes are twice faster than with an HV assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":214,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1407,"preRequisites":[806,1246],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":594,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§k§r§a§lEV Laser Engraver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV precision laser is required to make quantum crystals. Other recipes are twice as fast than with an HV precision laser."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":594,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11085,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1408,"preRequisites":[861,1243,86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lSuperconductors 2048 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 2048 EU EV Wires ? Uraniumtriplatinide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix uranium 238 and platinum in an HV mixer. Next the base needs an EBF with Tungstensteel Coils. A vacuum freezer is also required to cool it down. Make some EV Superconductor base Wires and use an assembler to combine these wires with Nitrogen, Helium, Tungstensteel pipes and IV pumps to get your 2048 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2098,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2989,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11989,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2240,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5160,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32613,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1409,"preRequisites":[475,1522,1005],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2380,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSuperconductors 8192 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 8192 EU IV wires? Vanadiumtriindinide is a superconductor wire and will transfer your energy without any loss. Every voltage now has superconductor wires and a base wire with only a very small EU/t loss.\n\nMix vanadium and indium in a HV mixer. Now you have the base dust, which needs an EBF with HSS-G coils, and a vacuum freezer to cool it down.\n\nMake some IV superconductor base wires and use an assembler to combine these wires with nitrogen, helium and niobiumtitanium pipes and an IV pump to get your 8192 EU/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2029,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2056,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2990,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11990,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2260,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2260,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5180,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32614,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2380,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1410,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":585,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Mixer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An IV mixer is required to mixe niobiumtitanium and vanadiumgallium dust. Other recipes are twice faster than with an EV mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":585,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11047,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11037,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1411,"preRequisites":[854,851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2241,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSome rare high tier metals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Small piles of Platinum, Palladium, Iridium and Osmium can be extracted with a chemical reaction with using nitric acid. You don't have the technology to process it right now but later on you need large amounts of them. You can start now to collect some dust and process it later.\n\n§4A chemical bath also extracts Platinum from Nickel ore. Time to head back to the Twilight Forest!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30653,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6855,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6909,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2241,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":85,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":84,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":83,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30659,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6855,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1412,"preRequisites":[1890,1707],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAssembling Line","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The assembling line (short form 'Ass Line') is a multiblock and important for high tier Components in LuV tier and above for Motors, Pistons, Robot Arms, Pumps and many more.\n\nThe machine can be 5-16 blocks long. The minimum length required depends on the number of components and fluids required by the recipe it's crafting. A length of 11 blocks will fit 80 percent of all recipes in GTNH.\nThe bottom layer must have on one outer side all the Input Hatches for fluids (4), in the bottom middle layer Input Busses for items(10), and on the end 1 Output Bus. Also on the bottom outer layer must be one Maintainance Hatch. The rest is Solid Steel Machine Casings.\n\nThe second layer on the outer sides left and right are Reinforced Glass and in the middle center Assembling Line Casing.\n\nThe third layer has on the left and right Grate Machine Casings and in the middle Assembler Machine Casings (Note the name change!). The Assembling Line control block and Data Access Hatch are on the opposite edge from the Input Hatches - not at the end with the Output Bus.\n\nThe fourth layer is a single line of Solid Steel Machine Casings in the middle(11), with two Energy Hatches for power. Once you have it built, you can replace the two IV energy hatches with 1 LuV energy hatch.\n\nAutomating the assline is God tier GTNH endgame. While it can be done with Enderio, it's easier to use SFM or OpenComputers.\n\nFor more details on using the Assembly Line, check out the wiki page https://tinyurl.com/GTNH-Assline"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":39,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":55,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":10,"Damage":75,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":85,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockAlloyGlass","Count":22,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":11,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":45,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":145,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":20,"Damage":10,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":15,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:paper","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"squidink","Amount":1000}},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1413,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYou gonna hate this 1-4 in IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in IV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32614,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32644,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32634,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1414,"preRequisites":[1539,1538],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYou gonna hate this 5 and 6 in IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32684,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1415,"preRequisites":[188,187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lPure Uranium Ores","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want pure uranium ores, you'll need to visit Deimos or Phobos to fetch it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":922,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":98,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1416,"preRequisites":[1243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMallard Rust Smelly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or is it Alloy Blast Smelter? Well, that makes more sense. This multiblock creates the higher tier alloys needed for the more advanced GT++ multiblocks. It directly smelts into liquids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":16,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":13,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"miscutils:itemDustIncoloy020","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:itemDustIncoloyMA956","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:itemDustInconel625","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1417,"preRequisites":[1494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":758,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCough cough - Something needs to be done about the smell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Birds falling out of the sky, fish dead and floating belly up in the rivers, acid rain melting the ground...Time to start picking up the trash and cleaning up the air. Small steel turbines should be fine for now. You'll need two amps of steady power to keep the scrubber working."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":756,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:itemAirFilter","Count":11,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":170,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":759,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"miscutils:itemAirFilter","Count":2,"tag":{"AirFilter":{"Damage":0}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1418,"preRequisites":[1416,861],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":812,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§9§a§lEU packets flowing everywhere...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...in my dreams. What if instead of having battery packs on every generator, we could centralize all the generation in one location? Put it away from the well travelled parts of the the base? Out in the country somewhere? Let the animals deal with the pollution. Anyways, let's start working on a Power Sub-Station to store EU and deliver it to our base. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":19,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":80,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":812,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1419,"preRequisites":[779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":892,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who cares about a little cancer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when it means you don't have to strip naked to recharge your nanosuit? \nThe Wireless Charger will keep your armor and tools charged up without having to put them into a battery buffer. \n\nIt will charge armor and tools at the tier and below.\n\nYou didn't want kids anyways..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":892,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":1600000},"Damage":32538,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1420,"preRequisites":[1164,1521],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":840,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lShake that booty...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...out of the purified ores. Anyways, a Large Sifter will increase your sifting rate significantly. What will you do with all these gems??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":18,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":47,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":840,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:diamond_ore","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":502,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":501,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":503,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":514,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":542,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":543,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":541,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":540,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":545,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":544,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1421,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":797,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hulk Smash!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mass destruction! Or at least, lots and lots of crushed ores. Build a maceration statck to keep up with all the ores you are getting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":26,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":797,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4873,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1422,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":850,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The rocks in the washer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...go round and round, all the live long day. A large orewashing plant gets your rocks nice and clean."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":70,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":850,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":944,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":526,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1423,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":849,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dancing in circles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spinning around, getting hot - sounds like a dance. Or a thermal centrifuge. Build a large thermal refinery to get the most out of your ores.\n\nYou can use Noise Hazard Signs instead of Thermal Processing Casings, as long as you have at least 8 Thermal Processing Casings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":4,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":849,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1424,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Ilmenite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ilmenite will give a better amount of Titanium per Ore than Bauxite.\nThis Vein can be found on moon at Y Level 10-70."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":918,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":825,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":842,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":925,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1425,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Calculation processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some printed calculation circuits? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":23,"OreDict":""}]}]},{"questID":1426,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find some Meteoric Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach tier two planets like Mars or its moons Phobos and Deimos you need a better rocket. Your next goal is Tier two rocket plates which need meteoric Iron. \n\nYou will find small meteoric iron ore under the surface. Use a high tier miner or multiblock miner to get extra fortune on small ores. Small meteoric iron is only from Y=50-70, so try to find tall hills.\n\nMine the fallen meteors on the surface. Use your ears to listen to their impacts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":3340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":5340,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronRaw","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1427,"preRequisites":[80,1430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 10 tier 2 heavy duty plates out of tier 1 plates and meteoric iron plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":10,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":17340,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":32463,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":10,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17340,"OreDict":""},{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1428,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The tier 2 rocket uses an elite circuit, a heavy duty plate tier 2, and the data stick in a ev circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":2},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1429,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of hard work and tons of stacks of iTNT your second rocket is finally ready. But before you can go to Mars you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":10,"Damage":3,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1430,"preRequisites":[80,1428],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Recycle your rocket and save the Environment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why not recycle your old Tier 1 rocket to get componets for your new tier 2 rocket? Put your old rocket in an arc furnace or plasma arc furnace to get back lots of materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":32462,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"IC2:blockITNT","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1431,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.engine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Booster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The distance between Mars and Earth is much larger than to the Moon and so the rocket needsboosters to reach it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.meteoricIronIngot","Count":6,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1432,"preRequisites":[1427,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mars Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Mars lander is required for a soft landing.\nPut the Moon lander on a Parachute and surround it with airbags - that will do the trick. You hope.\n\nHint: Some times you can't loot or break the lander. Try to retrieve the contents with a hopper underneath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.canvas","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1433,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.moonBlock","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While looking for the meteoric iron you will find a moon dungeon. Look for a deep hole that is not a crater with a bottom that is not moon rock - it will show you the way to the dungeon. Go and fight a few mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 2 rockets.\n\nKill the Boss Monster again in a different dungeon if you want an extra tier 2 schematic to exchange for a moon buggy schematic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":16,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1434,"preRequisites":[1435],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.buggy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Patrol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Moving faster on the Moon or other planets surface will be fun. I'm sure it will be totally safe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":11,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":5,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.buggy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1435,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Buggy Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The moon buggy needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The moon buggy circuit uses a EV-tiercircuit, a heavy duty plate tier 1, and the data stick in a ev circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":100},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1436,"preRequisites":[1434],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.landingPad","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fueling your Buggy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The moon buggy needs gasoline to work. Build a 3x3 fueling pad, connect it with a fuel loader, and place the buggy on top."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":9,"Damage":9,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":9,"Damage":0,"OreDict":""},{"id":"Railcraft:cube","Count":9,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.landingPad","Count":9,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1437,"preRequisites":[1426],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankMedFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bigger Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Medium oxygen tank is an oxygen storage tank that can hold up to 1800 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank. I recommend making the medium tanks and using the light tanks as spares to return to base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":14,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankMedFull","Count":2,"Damage":1800,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1438,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Me glass cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ME glass cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":24,"Damage":16,"OreDict":""}]}]},{"questID":1439,"preRequisites":[1371,1440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumcraftneiplugin:Aspect","Count":1,"tag":{"Aspects":[{"amount":2,"key":"aer"}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Permanent Oxygen Systems","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You decided to have a longer stay on the moon and look for a permanent oxygen setup to refill your outdoor gear and building a small Base.\n\nDon't forget to bring repair stuff for your tools and armor! Dream 2018!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":128,"Damage":0,"OreDict":""},{"id":"minecraft:glass","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":10,"Damage":0,"OreDict":""},{"id":"minecraft:leaves","Count":64,"Damage":0,"OreDict":"treeLeaves"},{"id":"minecraft:log","Count":16,"Damage":0,"OreDict":"logWood"},{"id":"gregtech:gt.metaitem.01","Count":2,"tag":{"GT.ItemCharge":1600000},"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1440,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Bubble Distributer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Oxygen Bubble Distributor takes oxygen from the Oxygen Collector, and makes an oxygen bubble providing an area to safely breathe in without needing Oxygen Gear. The bubble is a sphere surrounding the distributor and will go through walls (or any block). Alternatively, you can use an Oxygen Sealer (need compressed Desh Plates) to contain oxygen inside a room."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:leaves","Count":512,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1441,"preRequisites":[1445],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.glowstoneTorch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Space torches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Normal torches won't work in space, only in the area within the oxygen bubble.\nOne solution is glowstone torches. You can also use other mods' lights and lamps. You'll probably want 3-5 stacks for mining veins.\nAnother is to use nightvision and a magnum torch or GregTech monster repellator to keep mobs away. These do not work on the official servers, instead claim and unclaim chunks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.glowstoneTorch","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"FloodLights:electricIncandescentLightBulb","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":23010,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1442,"preRequisites":[692,80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Steel Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed steel armor has more durability than the steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":24,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftCore:item.steel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:tnt","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1443,"preRequisites":[1442,186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.deshChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Desh Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed desh armor has more durability than the compressed steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":24,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftMars:item.deshHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1444,"preRequisites":[1442,162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.titanium_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Titan Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed titan armor has more durability than the compressed steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftMars:item.titanium_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1445,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:clock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Day and Night time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon's day-night cycle is 2h 40min long, equaling 8 Overworld days and it is linked to the Moon phases seen on the Overworld. The daytime on the moon lasts from a full moon to the next new moon (4 Overworld days, equaling 1h 20min) and, logically, the nighttime lasts from the new moon to the next full moon.\n\nSince the 1st Overworld night is full moon, you can safely land within the 1st 4 Overworld days, and then the next 4 Overworld days are more dangerous since hostile mobs will be able to spawn in the dark, and so on. If you miscount, the moon phases can tell you when it is daytime or nighttime on the moon. Full moon is the start of the moon day, new (or dark) moon is the start of the moon night.\n\nDuring the nighttime, the environment light levels go very low, allowing hostile mobs to spawn on the surface."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1446,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.mars","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mars Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours you will find a Mars dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 3 rockets.\nIf you need the schematics for the astro miner or the cargo rocket, kill another Boss Monster and exchange the schematics.\nBefore you journey home make sure you fulfill the quest requirements in the EV tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.mars","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":16,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1447,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The astro miner needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The astro miner circuit uses a EV-tier circuit and a heavy duty plate tier 3 and the data stick."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":102},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1448,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The third tier schematic circuit uses an elite circuit and a heavy duty plate tier 3 and the data stick in a iv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":3},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1449,"preRequisites":[1446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cargo Rocket Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cargo Rocket has the capability to transport solid items between dimensions, and is a perfect way to transport items between dimensions without relying on Enderchests.\n\nThis rocket can be loaded with 2000 fuel points or 2 buckets of Rocket Fuel. The safe fuel level is 80 percent. \n\nYou can fill up the right slots with chests to increase the storage space to 36 and 54 slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":101},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1450,"preRequisites":[1447],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemAstroMiner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Astro Miner is an automatic mining vehicle which moves around, making tunnels and mining up everything it finds, and brings it all back to a base station where it docks. It is not player-rideable* so do not try and climb inside it!\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.orionDrive","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32603,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.beamReceiver","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemAstroMiner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11884,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1451,"preRequisites":[1450],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.minerBase","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner Base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To construct the dock, place 8 Astro Miner Base blocks in a cube, 2 blocks high, 2 blocks wide and 2 blocks deep. When the last of the base blocks is placed, it should automatically convert into an Astro Miner Base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4177,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":8,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":2,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.machineTiered","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.minerBase","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11081,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1452,"preRequisites":[205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Launch Controler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To use the Cargo Rocket at full capacity it is necessary to equip a Rocket Launch Pad, to send items, with:\n\nFuel Loader\nLaunch Controller\nCargo Loader\nAnd the receiving side with:\n\nFuel Loader\nLaunch Controller\nCargo Unloader\n\nIt is also possible to use Buildcraft pipes to transfer items into the Cargo loaders. Next step is to set up the Frequencies in both Launch Controllers (i.e. Set: A to target B, B to target A). Have a look at Launch Controller to setup the automated launch. The first time you have to right-click the Cargo rocket and press launch at the top right corner."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.fuelLoader","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:tile.marsMachine","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1453,"preRequisites":[80,1446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 42 tier 3 heavy duty plates out of tier 2 plates and desh plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":42,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":168,"Damage":17884,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":32464,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":42,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17884,"OreDict":""},{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1454,"preRequisites":[1453,1457,1448,1456,1458,1459,1460,1473],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After days of hard work and a hundred tons of stacks of iTNT your third rocket is finally ready. But before you can go to the Asteroids, Ceres or Jupiter Moons you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":3,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":12,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":2,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":96,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1455,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Fluix crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some fluix crystals? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":24,"Damage":7,"OreDict":""}]}]},{"questID":1456,"preRequisites":[176,1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Tier 3 or Deep Space lander is required for a soft landing.\nPut the Mars lander in a desh cage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":6,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1457,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Nose Cone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone. Tier 3 rocket needs a heavy nose cone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1458,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. A heavy one is needed in the tier 3 rocket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":5,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1459,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Fins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins. Tier 3 rockets need heavy ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1460,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.MediumFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Medium Fuel Canister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 3 rocket you need to craft two small and two medium canisters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DeshDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.TitaniumDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":4,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1461,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4884,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Desh is a very important material for high tier rockets and used by many recipes in Galacticraft and Galaxy space. Go and find a desh vein on Mars at Y 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4841,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1462,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thermal Cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thermal Padding is a suite of garments made out of an advanced insulating material. The garments are able to keep a player from freezing to death in the cold environments of Outer Space. They are also able to keep the player from suffering heat exhaustion in an overly hot environment.\n\nThe temperature indicator on the Life Support HUD will show if the player is becoming too hot or too cold - as the temperature approaches dangerous levels, an \"Invalid Thermal Protection\" warning will be shown. On Mars and the Asteroids, simply wearing a full set of Thermal Padding should be enough to fix this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":24,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":96,"Damage":29019,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":96,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":2,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11340,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1463,"preRequisites":[1454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sleeping in Space","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cryogenic Chamber is used to sleep on other planets and skip long nighttimes. It can be used at any time, even during the daytime, and in any dimension, including the Overworld.\n\nUsing the chamber during the daytime will skip the time to the next sunrise, except on the Asteroids dimension where the Sun is always locked on West.\n\nOnce the player has used the Cryogenic Chamber, there is a 300 seconds cool-down time before he can use the chamber again. Breaking and placing back the chamber or trying to use different chamber will not reset the cool-down time, unless by dying.\n\nThe chamber does not require energy to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":2,"OreDict":""},{"id":"CarpentersBlocks:itemCarpentersBed","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":3,"OreDict":""},{"id":"minecraft:clock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1464,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.arclamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arc Lamp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Arc Lamp is a very bright lamp. It is directional - meaning the light it casts is brighter in the direction it is facing. Its facing can be rotated using a Standard Wrench.\n\nIncluding the Arc Lamp the brightness of blocks which are close to light sources is:\n\nRedstone Torch: 3-6\nTorch: 9-12\nBlock of Glowstone: 10-13\nArc Lamp: 13-14\n\nThe Arc Lamp can light up a fairly large area - for example a whole room - at light level 14: it is almost as bright as full sunlight.\n\nThe Arc Lamp also has the interesting property of actively repelling mobs. Not only does its light prevent mobs from spawning nearby, but it is so bright that if a mob comes close to the Arc Lamp the mob will turn around and walk away again. This mob repellant effect is confirmed to work on : Zombies, Skeletons, Creepers, Evolved Zombies, Evolved Skeletons, Evolved Creepers. It may also work on other types of mobs (confirmation required). But it has no effect on Spiders (they are not afraid of sunlight either) or boss mobs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":112,"Damage":5,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":16,"Damage":16,"OreDict":""},{"id":"GalacticraftCore:item.battery","Count":16,"tag":{"electricity":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.arclamp","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1465,"preRequisites":[1467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.airLockFrame","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Air Lock","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Air Lock is an airtight door used to provide a passage between enclosed rooms and between an enclosed room and outer space. It is made from Air Lock Frames and one Air Lock Controller.\n\nThe air lock will keep air inside the room while it is closed. But when the air lock is open, the room is no longer sealed and oxygen gear must be worn until the air lock is closed. In environments with extreme temperatures, Thermal Padding must also be worn."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.airLockFrame","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:tile.airLockFrame","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1466,"preRequisites":[1467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":20,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Temperature Control","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ambient Thermal Controller is an item for use in the Oxygen Sealer to provide thermal protection in sealed spaces.\n\nAmbient Thermal Controller is useful in the dimensions too cold or too hot for players to survive without Thermal Padding.\n\nIt can be placed in the 3rd slot next to the energy and oxygen slots in a working Oxygen Sealer. Once the Ambient Thermal Controller is in the sealer, it will heat or cool the output oxygen according to the local environment, and then the player can safely take the thermal padding off in the sealed room."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":10,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1467,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.sealer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Sealer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Oxygen Sealer is a machine that fills a room with oxygen (although the oxygen is generally not visible) up to around 800-1000 blocks (amount stacks with multiple sealers within close proximity) allowing the user to breathe without Oxygen Gear. Unlike the Oxygen Bubble Distributor, the Oxygen Sealer confines the oxygen to the room it is in. The sealer must be supplied with power and sufficient oxygen. See Oxygen Collector for supplying oxygen.\n\nThe sealer will only work in a room that is completely sealed off from outer space. This can be achieved with either a completely closed off room, or with an Air Lock. The sealer must have nothing above it to block its vents. It is designed to check for a proper seal about every 5 seconds, so be sure to give it time to seal.\n\nEach sealer requires at least 320 air points per second to work continuously or it will fail."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.sealer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":{},"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":6,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1468,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankHeavyFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Large oxygen tank is an oxygen storage tank that can hold up to 2700 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":14,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32406,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankHeavyFull","Count":2,"Damage":2700,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1469,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.sludge","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bacterial Sludge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bacterial Sludge is a fluid block that generates naturally on Mars.\n\nIt generates in the giant underground caves in Mars and floods over almost the whole cavern floor.\n\nCollect it to produce mutagen for bees mutation in gendustry."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":256,"tag":{"Fluid":{"FluidName":"bacterialsludge","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:shears","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1470,"preRequisites":[1469],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.cavernVines","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cavernous Vine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cavernous Vine is a poisonous plant that grows naturally in the Mars underground. It grows from the ceiling down to the floor in the huge caves flooded with Bacterial Sludge, emits light and can trap mobs in it.\n\nAny mob that touches this plant will be poisoned, dragged up and lose health down to 1 health point (half a heart) while trapped in this plant. Mobs that are immune to poison, like Zombies and Skeletons, will not lose health.\n\nThey grow from the bottom face of a solid block down to 1 block away from the floor.\n\nCavernous vines can be broken by hand without taking damage or being poisoned but they will drop nothing. They can be obtained as an item using shears. Even picks with Silk Touch enchant will not obtain anything.\n\nOnce obtained, they can be replanted elsewhere and regrow, like cactus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.cavernVines","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":6,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1471,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Slimeling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slimeling is a utility mob that spawns from Slimeling Eggs found on Mars surface. It shares some features from vanilla wolves and mules: it can be tamable and attacks mobs that threaten its owners, and can be equipped with a special chest to transport items.\n\nAs an allied mob, Slimelings will actively help and follow the player-owner and will attempt to protect them. They can also have a neutral behavior, that is, they can attack if provoked or hurt by non-owners.\n\nItems that you can feed Slimelings with:\n\nBoat\nCooked fish\nGunpowder\nGold ingot\nRedstone repeater\nWooden door\n\nSlimelings can be equipped by their owners with a Slimeling Inventory Bag to transport items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:boat","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_fished","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:repeater","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1472,"preRequisites":[1462],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.grapple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Grapple","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Grapple is a grappling hook and rope which can be thrown by a player, and then used to swing the player in the direction it was thrown. Useful for reaching places that are otherwise too high to jump to, or traveling around the Asteroids.\n\nRight-click to aim the Grapple at a block you want to reach, similar to aiming a Bow. Release the right-click - similar to firing an arrow from a bow - to grapple yourself in that direction.\n\nFor best results, aim the Grapple at a point 1 or 2 blocks higher than the point you want to reach.\nIf there is no safe platform to land at that point, you can fall back down and you will take fall damage, so it takes some skill to use the Grapple safely.\nTake care using the Grapple near a Nether Portal, End Portal or at a low height (less than y = 30) on a Space Station. There can be strange consequences if it crosses into another dimension."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":14341,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.grapple","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.battery","Count":16,"tag":{"electricity":0},"Damage":100,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11341,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1473,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nice and comfortable - in space!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These thermal clothes will keep you nice and warm even in the coldest depths of outer space."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.TungstenString","Count":96,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":96,"Damage":29028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ThermalClothT2","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":1,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":2,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":16,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1474,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:drum","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWant to join a band?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or at least play with drums? If you have extra Meteoric Iron after building your rocket and thermal padding, turn it into Meteoric Steel and use it to make some drums. These drums can hold 256 buckets even after breaking."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17305,"OreDict":"plateSteel"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28341,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5134,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ExtraUtilities:drum","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:drum","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1475,"preRequisites":[10],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":34,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCows are supposed to Moo!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What the? You noticed sometimes when you kill something, even a cow or chicken, that it explodes! What madness! To stop it, use a proper GregTech Knife or Butchery Knife. Craft a flint GregTech knife with a stick and a piece of flint (last NEI page) and I will give you an old iron one to use once it wears out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"Iron","MaxDamage":25600,"SecondaryMaterial":"Iron","Damage":2800}},"Damage":34,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:porkchop","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1476,"preRequisites":[492],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":16},{"lvl":2,"id":21}],"GT.ToolStats":{"PrimaryMaterial":"Iron","MaxDamage":25600,"SecondaryMaterial":"Iron"}},"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAll the finest cuts of meat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This knife is not going to work for slaughtering the hundreds of animals you will need for food and materials. Make yourself a GregTech Butchery Knife. It stops the explosions, and kills the cows much faster. Later when you get Stainless Steel, you can make a new one that will kill cows in one hit.\n\nNote: GT Tool damage is based on mining level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":21}]},"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"minecraft:leather","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:beef","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1477,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #6 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sixth item you'll need a lot of. For the scanner and the seismic prospector."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":29501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1478,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #5 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fifth item you'll need a lot of. For the microwave, the scanner, the precision laser engraver, etc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1479,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Ring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber rings? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":28880,"OreDict":""}]}]},{"questID":1480,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:dustRadium226","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRadon Decay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Radon is used for quantum eyes, quantum stars and emitters and sensors in the EV machines. Try to find a Uranite vein first. \n\nYour washed Uranium 238 ore goes to the sifter and you get a small chance of Radon 226. It needs up to 4500 ticks or 75 mins to decay. So get used to your hazamit suit around base or sit and enjoy a few sunsets. Make sure to send it out for cleaning after you are done. After decaying you can electrolyze radon gas out of it.\n\n§4This Vein can be found on Phobos, Deimos or Ceres."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:itemDustDecayedRadium226","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1481,"preRequisites":[198],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXQuad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§l4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1482,"preRequisites":[1477],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.detrav.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":1000,"SecondaryMaterial":"Steel"}},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lPortable prospecting tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have some tech, you've discovered a way to prospect for ores. This tool only has a chance at finding the ores in a chunk. If you are clever, you can use it to locate ores.\n\nUnfortunately, the tech to make it repairable or rechargeable doesn't work yet, so you'll have to make a new one each time it breaks. It does work better at higher tiers and lasts longer with better materials.\n\nAnd since it doesn't make a convenient book like the seismic prospector, you'll have to keep track on your own where the ores are found.\n\nIt can be hard to choose a good material for the Basic Prospector. Here are some good choices for you, the size searched, and their durability:\n\nArdite 5x5 - 4500\nDamascus 3x3 - 5600\nVanadiumsteel 3x3 - 8400\nVibrant Alloy 5x5 - 17700\nShadow 5x5 - 36000\n\nEach chunk successfully scanned costs 100 durability. Each failed chunk costs 25. The average for MV is ~55 per chunk when scanning a large area.\n\nGood luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1483,"preRequisites":[1410,1584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MalformedSlush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Really op food","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You hear about Dezil's Marshmallow a really OP food which can be found from time to time in chests. What about I show you a way to cook this stuff yourself?\n\nAfter you mastered the flowing spirit in the dream dimension put a bit of flour, sugar, salis mundus and draconium dust in your IV Mixer. \nThe recipe starts when you give flowing spirit to it and gives you malformed slush, a very stinky and disgusting piece of...something. \n\nBe careful you'll get blindness II when holding it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2881,"OreDict":"foodFlour"},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":14,"OreDict":""},{"id":"minecraft:sugar","Count":2,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":2,"Damage":0,"OreDict":"dustDraconium"},{"id":"witchery:bucketspirit","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MalformedSlush","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:bucketspirit","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1484,"preRequisites":[1483],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Uncooked Slush","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to form this slush a bit. Use a Mashmallows form and press it with your iv forming press. Remember to sterilize it after using.\n\nBe careful you'll get bindness and hunger II."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MalformedSlush","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MarshmallowFormMold","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MarshmallowForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1485,"preRequisites":[1150,539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Carbon"},"Damage":1503,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBrittle but hits like a sledgehammer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Carbon crossbow limb is 1/3 the durability of the magnalium limb, but hits a lot harder and shoots a little faster. But you'll want to carry around a tinker table and extra ingots to repair it constantly, and watch that you don't break it in the middle of combat!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Carbon"},"Damage":1503,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1486,"preRequisites":[1484],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowing Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is heating up your Marshmallow in a Electrc Blast Furnace at 4500k whit some radon gas and make it glow.\n\nNow you get a Paralysis II effect in addition to the others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""},{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6098,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1487,"preRequisites":[1486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cooling your Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In the next step you cool your glowing Mashmallows in an HV Vacuum Freezer to make it more stable.\n\nYou still get Weakness II and Nausea II."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:epicbaconItem","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1488,"preRequisites":[1487],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dezil's Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In the last step you need to infuse your Marshmallow with some epic food in the thaumcraft infusion altar. Before you can do it you need to unlock the research.\nWarp will be added."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:epicbaconItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:deluxechickencurryItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1489,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32655,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lNow you realy gonna hate this 1-4 in LuV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in LuV. Go and craft one of each with your new Assembly Line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32655,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1490,"preRequisites":[1489],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32695,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lNow you realy gonna hate this 5 and 6 in LuV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32695,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1491,"preRequisites":[86,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lHSSG","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make Tungsten Steel upgrade your Electric Blast Furnace with new Coils you are able to make HSS-G Ingots. This ingot becomes very important in LuV tier.\n\n§4HSS-G is made out of tungstensteel, chrome, molydenum and vanadium dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1492,"preRequisites":[942,97,1549],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:MU-metatool.01","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plunger 2.0 The Hand Pump Replacement","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What? Lost your hand pump already? Well here is a replacement. Well sure it costs a few coins too, don't be such a fumble fingers next time! What do you think I am, a hardware store?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1493,"preRequisites":[213,1412,215,1491,1413,1414],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lTier 7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"LuV-Level. You will need chrome for machines. Suggested planets and moons to visit: Jupiter's Moon Io, Venus and Mercury. Machine parts will now require an Assembling Line - Check Multiblock Goals for details."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:venusblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1494,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lStainless taking too long?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time for a second blast furnace! \n\nYou can make ingots faster 3 ways - better coils, higher tier energy hatches, or adding more furnaces. It's probably time to add a second EBF to your base. EBFs can share walls and input/output hatches, but not mufflers or energy hatches.\n\nRemember pollution will be very high with two EBFs active at once!\nWatch out for high pollution effects. Use the best mufflers available and don't place the EBFs in the same chunk as farmland or other high pollution machines like pyrolyze ovens and large boilers.\n\nYou can use whatever coils you have lying around, but you might want to start searching for Mica if you haven't found any yet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":92,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32529,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":172,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1495,"preRequisites":[1204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:command_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lAll alone in the night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are playing single player survival, updates mean having to reload default quests. Use this block to do it for you without having to enter creative mode - you don't lose progress, but you'll have new quests to complete!\n\nSorry, no rewards, other than the satisfaction of knowing it's you versus the world. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1496,"preRequisites":[28],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lHow the heck do I find ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GregTech ore generation is based on veins. Veins are centered on orecenters, based on the chunk number. To find the chunk number, hit F3. In the X and Z lines you will see numbers like\nc: 3 (14)\nc: -2 (1)\n\nThe 3,-2 is the chunk's address. Ignore the negative sign. Now, the orecenters are located at 3N+1 chunks. So, 4,7 is an orecenter. 10,16. -22,19. Etc. \n\nProtip: to find out if a number is divisible by 3, add the digits and see if the sum is divisible by 3. So 86 = 8+6 = 14. So you need to go down 1 chunk or up 2 chunks so that you are on a 3N+1 chunk.\n\nFor reading all the way, I'll give you an ingot of iron."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1497,"preRequisites":[1496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:gold_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lDigging deeper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you know where to dig, dig all the way down to bedrock to find if there is a vein located there.\n\nNow, what if you know what you want but not where to find it? Our fancy bartimausnek developer has added a nifty feature to NEI that shows you where to find ores! Simply look for the oreblock in NEI, and click on it for info on where to find that ore.\n\nMake sure you look for the Gregtech variety of the ore."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"amount":1,"rewardID":"bq_standard:xp","isLevels":1,"index":0}]},{"questID":1498,"preRequisites":[1497],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:coal_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA dimension by any other name...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use this table to decode dimension names\n\nOW - Overworld\nNe - Nether\nTF - Twilight Forest\nEN - End\nVA - Vanilla End Asteroids\nEA - End Asteroids\nMo - Moon\nMa - Mars\nAs - Mars Asteroids\nBC - Barnard C\nBE - Barnard E\nBF - Barnard F\nCa - Callisto\nCA - Centauri A\nCe - Ceres\nDe - Deimos\nEn - Enceladus\nEu - Europa\nGa - Ganymeade\nHa - Haumea\nIo - Io\nKB - Kuiper Belt\nMM - Makemake\nMe - Mercury\nMi - Miranda\nOb - Oberon\nPh - Phobos\nPl - Pluto\nPr - Proteus\nTE - Tau Ceti E\nTi - Titan\nTr - Triton\nVB - Vega B\nVe - Venus\nDD - Deep Dark/Underdark\n"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1499,"preRequisites":[91,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":541,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChemical bath","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wait, what? You want more byproducts from your ores? A cheaper way to make paper? Well, the chemical bath is perfect for you! \n\nYou'll have to provide liquids like mercury to extract different products like nickel, silver, copper, and platinum from ores. \n\nFor paper you'll only need some water and wood pulp. Maybe you'll find more uses for it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":541,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1500,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"questbook:ItemQuestBook","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBetter Questing?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For quests to save properly, you must be online and logged into your Mojang account. Sorry, it's a limitation of Better Questing."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1501,"preRequisites":[1500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:blockCampFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBackup your stuff...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Single player? Please install your preferred backup mod, or use the command line to backup your game. Not sure which to use? §6AromaBackup for 1.7.10 §rworks pretty well.\n\nRemember though Journeymap and Thaumcraft Node Tracker information isn't included with AromaBackup, so you should backup your journeymap and tcnodetracker directories after exploration."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1502,"preRequisites":[166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockWirelessCharger","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTesla would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of sticking your EnderIO items in the capacitor bank to charge it? Time to make a wireless charger."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockWirelessCharger","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1503,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lNobody wants an explosion...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...right? So when building multiblocks, make sure you\n\n1. Don't cross chunk boundaries with the multiblock.\n\n2. Don't rely on resources coming from outside the chunk to prevent explosions. In other words, make sure you source your water locally.\n\nGood luck."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1504,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ifu:ifu_buildingKit","Count":1,"tag":{},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§e§k§l§r§3§2§lDivine rod of the gods?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ore finder rod takes some of the tedium out of finding an ore. You'll need to find some first to make it, but once you have it you can use ore blocks to find more ore. It only tells you if that specific ore is nearby. Later you will want to return with better digging tools and check every spot.\n\n§4Be sure to use your NEI skills to figure out which ore block is the best choice for your needs.\n\n§4Other basic ore blocks can be purchased from the Coins tab.\n\nTo use, shift click when looking at the ground to open inventory and put the ore block into the slot.\n\n§rAs you get close, you will see and hear a response from the ore finder tool. You will see the durability bar change when it discovers a match. Watch out - it will respond to small ores as well as normal ores so Lapis and Redstone you will want to wait for large signal before digging. If it detects a large quantity of the ore you're looking for the wand will flip upside down completely and fill the durability bar. If you play with your sound on you will hear an obvious sound to notify you as well. The wand works in both your inventory and hotbar and you don't need to be actively holding it, though you get style points if you are holding it.\n\n§4Also, because of the magical nature of the wand, the ore is stored with the player, not the wand. If you want to give the wand to someone else, please remove the ore first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"woodStick"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},{"id":"minecraft:redstone","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"ifu:ifu_buildingKit","Count":1,"tag":{},"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":1,"Damage":35,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":937,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":870,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":834,"OreDict":""},{"id":"minecraft:clay","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1505,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNot enough items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More like too many items!\n\nHere are some tips for using NEI.\n\nWhen you have your inventory open, you can type the search terms in the text bar. Make sure your GUI size is set correctly, or you won't be able to see it. Double-click the bar to highlight any matching items in your inventory. Handy for searching that obsidian chest!\n\nEven better, you can use T to search nearby inventories, which will emit some particles. We have also provided the special Y command to look for a machine in the world, in case you've forgotten where you placed that Advanced Circuit Assembler.\n\nO will make the NEI information hide."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1506,"preRequisites":[1505],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNEI is more powerful than you imagine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"NEI has some really nice advanced features too.\n\nClick on an item to see the recipe to create it, and press Backspace to go back to the previous recipe. \n\nHold Shift to stop the oredict toggling items, and to show the oredict entries for the current item under your cursor.\n\nSearch using #oredict to find items that match that oredict; for example, #dyewhite will list all white dyes.\n\nSearch using @mod. to find all items from that mod; for example, @mod.gt++ will list all GT++ blocks.\n\nUse * (asterisk) as a wild card. For example large * fluid pipe will show you all the large fluid pipes.\n\nIt has more advanced features, you should check the web for details."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1507,"preRequisites":[36,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:item.BiblioClipboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lMaking a list, checking it twice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As your base grows, you're going to have a dozen different long term goals each with many steps. Build a clipboard to keep track of what you need to do."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.BiblioClipboard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1508,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:CraftingStation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA better crafting table","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of your stuff falling out of your crafting table every time you walk away? This fancy table from Tinker's Construct has slots to hold the items in your recipe. \n\nYou can use it to upgrade tools with 8 modifiers at a time. Very handy for additional speed or looting!\n\nWhen it is placed next to a vanilla chest, it will even show the chest's inventory in the crafting window. Single or double vanilla chests only please.\n\nCut it again for a sleek, low profile version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:CraftingStation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"harvestcraft:plumjellysandwichItem","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1509,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemTravelStaff","Count":1,"tag":{"Energy":250000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTravelocity!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A staff of traveling can get you really moving around your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemTravelStaff","Count":1,"tag":{"Energy":0},"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1510,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"naturescompass:NaturesCompass","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBiomes everywhere, but not the one you want?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of searching all over the map for that Bamboo Forest or Tropical rainforest? Desperate for clay dust and need to find a Canyon biome?\n\n§4Nature's compass will lead you to the biome you are looking for, if it is within range."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"naturescompass:NaturesCompass","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1511,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:habitatLocator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Humid and warm?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stop guessing what the humidity and temperature are for your biome. Use the habitat locator to get a reading on your current climate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:habitatLocator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1512,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Put the drones in a jar and shake it up","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you get good effects from your bees, instead of just trashing the excessive drones, you can put them in collector's jars to get the effects anywhere in your base.\n\nHealing? XP? Poison?\n\nThe collector's jars can even be piped or connected to a conveyor so that drones last a long time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1513,"preRequisites":[1114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameMagic","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alternatively, you can try going through the Apimancy tree of your Thauminomicon to make Magic Frames. They're the core of magically endowed frames. They also have a special ability - no maximum production chance. Normal frames are ineffective once you reach 10x production but with magic frames you can keep going - just watch out, above 16x you'll be working your bees so hard they have a chance to degenerate into ignoble, or die outright. Frames to lower genetic decay will lower chances of this happening."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameMagic","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:frameMagic","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":1514,"preRequisites":[1114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.cocoa","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chocolate frame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The chocolate frame can be used to increase production, but reduces lifetime. A shrewd beekeeper can use this to speed up mutation by using 3 in an apiary to kill off queens quickly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:hiveFrame.cocoa","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.cocoa","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":26,"OreDict":""}]}]},{"questID":1515,"preRequisites":[1514],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.soul","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are the bees buzzing, or screaming?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Soul frames don't shorten the life of the bee as much as chocolate frames, but they greatly increase the chances of a mutation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:hiveFrame.soul","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.soul","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":1516,"preRequisites":[1513],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameOblivion","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bees buzzing beyond the dark","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If even the soul frame takes too long for your taste, the oblivion frame will destroy a bee in a single bee tick (27s). Be careful using more than one, there are rumors it might harm your princesses..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameOblivion","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":1517,"preRequisites":[932],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"avaritiaddons:CompressedChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNeed a place for all those ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about a compressed chest from Avaritia? This 243 slot chest will hold contents when broken, so no need for slow-inducing dolly!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"avaritiaddons:CompressedChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1518,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:sprinkler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll the crops you could want","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of applying bonemeal or fertilizer by hand? A sprinkler can take water and boost your crop growth rate. Bonemeal or fertilizer will make it work even faster.\n\n§4Note that this sprinkler does not work with IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:fertilizerCompound","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"OpenBlocks:sprinkler","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11364,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1519,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32405,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lPortable tanks too small?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about large steel fluid cells instead? Each holds 8, and they can stack to 64. Unfortunately, you have to load and unload them using GT machines, but hey, 512 buckets in a single slot is pretty good!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32405,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1520,"preRequisites":[1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLarge Aluminium Fluid Cells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"512 buckets in a stack not cutting it? Aluminium cells can hold 32 buckets per cell, and stack to 64. 2,048 buckets in a single stack? That's half a supertank!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1521,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":643,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSeparating gems from the dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sifter runs so slow, you should make an HV sifter to get gems faster. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":643,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1522,"preRequisites":[86,1410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNiobium-Titanium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Niobium-Titanium becomes more important in LuV Tier. It needs a EV Mixer to mix and an Electric Blast Furnace with Tungsten Steel heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2047,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11360,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1523,"preRequisites":[1504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ifu:ifu_buildingKit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Can't find those ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having trouble locating some of the basic ores? Trade in some coins for oreblocks to use in the Ore Finder Wand.\n\nIf you are clever, you can use one oreblock to find a vein containing another oreblock to use to find another vein. For example, if you choose Redstone, you can use that to find Cinnabar, which can be used to find Thaumcraft Aspect Shard ores in the Twilight Forest. Experiment and find some combos!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":60,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":1,"Damage":937,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":35,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":870,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":834,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":500,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":526,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":530,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":523,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":535,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":57,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":936,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":935,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":838,"OreDict":""}]}]},{"questID":1524,"preRequisites":[951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1650}},"Damage":1602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are in MV and have an EBF, you can make new bolts with vanadiumsteel-tipped magnalium. Your enemies will tremble at your might.\n\nCheck \"fletching\" under NEI for fletching options.\n\nGood hunting!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11371,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1650}},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1525,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1573}},"Damage":1635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBest bolts?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That meteoric iron you found on the moon, when sent through the EBF, turns into this amazing meteoric steel, able to keep a fine edge. Put some on an Energetic Alloy tool rod to make an awesome bolt. Your next bolt you'll have to figure out yourself.\n\nFletching left as an exercise for the reader."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1573}},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1526,"preRequisites":[990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§k§r§9§m§l§r§m§n§o§r§9§lBest crossbow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic alloy has proven to be an amazing material. It's light weight and high stiffness makes it perfect for a crossbow limb. It is slightly slower to draw but still has amazing stopping power with its very high bolt speed. Durability is much improved over a carbon limb. \n\nThe material would also make an excellent bolt body. Perhaps you will find a suitable tip to match?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":52,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1527,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockReinforcedObsidian","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCaging a demon - Wither killing chamber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever wanted to trap a wither but the only option was non moveable bedrock? Now that you made dark steel you can get reinforced obsidian which is wither-proof. Useful for hand killing and even automation once you get a powered spawner supplying you with wither skeleton skulls.\n\n§4Hint: Unlike vanilla obsidian reinforced obsidian CAN be moved by pistons which might come in handy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockReinforcedObsidian","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1528,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPersonal Chunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's craft some personal chunkloaders. 3x3 chunks are loaded. You need coins or ender pearls to power the chunkloader. \nEnder pearls power personal anchors for 4 hours per pearl, and 1 hour in passive anchors . Personal anchors can also be powered with ender fragments for 1h. \n\nPersonal anchors are loaded once the owner visits, and stays loaded while the player is logged in. \nPassive anchors are loaded once the owner visits, and stays loaded until the server resets.\n\nIf you are playing single player or on a private server, you can cheat in admin anchors or use FTB Utilities to control chunkloading."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1529,"preRequisites":[770],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your hv assembler you can craft a world anchor.\n3x3 chunks are loaded. You need coins to power the chunkloader. \nPersonal anchors can be powered with ender pearls for 4 hours per pearl, passive anchors 1 hour per pearl. \n\n§4World anchors are always loaded, even after a server reset."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChunkloaderTierII","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1530,"preRequisites":[1454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:ceresblocks","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ceres Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours and hours you will find a Ceres dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 4 rockets.\n\nThis will open the Planets Venus and Mercury and the Jupiter Moon Io."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ceresblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier4Key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1531,"preRequisites":[1532],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The fourth tier schematic circuit uses an elite circuit and a heavy duty plate tier 4 and the data stick in a iv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier4","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":4},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1532,"preRequisites":[80,1530,1533,1534],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 12 tier 4 heavy duty plates out of tier 3 plates and compressed ice plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":12,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceCompressedPlate","Count":66,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyAlloyIngotT4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceCompressedPlate","Count":12,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1533,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":389,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCallisto Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Callisto Ice is the material you need for Tier 4 Rockets. Look at Y 40-60."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Callisto","range":-1,"index":0,"dimension":45,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":389,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1534,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":390,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§b§lEuropa Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ledox is the material you need for Tier 4 Rockets which can be find on Europa. Look at Y 55-65."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Europa","range":-1,"index":0,"dimension":35,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":390,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1535,"preRequisites":[1532,1531,1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After weeks of hard work and a thousand stacks of iTNT your fourth rocket is finally ready. But before you can go to Io, Venus or Mercury you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":6,"Damage":2,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":128,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1536,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:ingredient","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lI ain't afraid of no ghost!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've found a use for the Ectoplasm you can collect from spirits of the dead.\nIt makes a very useful glass that you can walk on, but mobs cannot. However, they think they can! So you can use this to create a moat around your base that drops mobs to the death in various ways, or just to shuttle them off somewhere else. Separate babies from mothers? Use it in a mob farm? Capture pigmen walking into the Overworld from you Nether portal? So many possibilities!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:ingredient","Count":1,"Damage":3,"OreDict":""},{"id":"minecraft:glass","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"RandomThings:spectreGlass","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"harvestcraft:stuffedeggplantItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1537,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":65536000,"SecondaryMaterial":"Neutronium"}},"Damage":120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBlack and Decker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of having to replace tools all the time? Now that stainless steel is available, it's time to make some electric versions of the screwdriver and wrench! Charge them up like a battery, and they will last much longer than normal versions of the tools.\n\n§4You can use lithium batteries, or if you are on a budget cadmium batteries instead. \n\nLater Vibrant Alloy will make excellent tools with great durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":120,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":150,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32518,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1538,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":828,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCeres Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sheldonite, Platinum and Palladium you can found on Ceres. Look at Y 5-30.\nYou can get also Iridium out of a high tier material you need later."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Ceres","range":-1,"index":0,"dimension":42,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":828,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":85,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":52,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1539,"preRequisites":[1413],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32725,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Star","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The emitter and the sensor in iv need a quantum star to craft. Put your netherstar in a hv chemical bath and infuse it with radon gas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:nether_star","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32725,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":9,"Damage":1,"OreDict":""},{"id":"miscutils:dustRadium226","Count":8,"tag":{"TickableItem":{"maxTick":90000,"CreationDate":422439,"Tick":0,"isActive":1}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1540,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":908,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnesite the source of Magnesium can be found in Twilight Forest at Y 10-40. Fullers Earth can be found on the Overworld at Y 50-70. Marble dust can be used for magnesium dust also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":908,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":928,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1541,"preRequisites":[721,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCropnalyzer","Count":1,"tag":{"uid":-73442049,"charge":100000,"Items":{}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyze your crops","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The cropnalyzer is a powered tool used to analyze IC2 crop seedbags. Charge it by placing it in an MV machine; recommended to put an MV battery in it as well to keep it full. To fully analyze a seed bag, you will need to put it through the cropnalyzer four times. If the crop is already planted, it is better to analyze it with the portable scanner instead of breaking it just to scan it - you have a chance of losing the seed every time you break it.\n\nThe cropnalyzer also has a feature called the IC2 Crop Calculator, where you can find the mix of outputs of breeding together any crops. To access the calculator, hit the IC2 side inventory key while holding the cropnalyzer. You can select any crop available and discover which crossbreeds have high chances.\n\nYou can choose up to four crops to breed together. Then click \"process\" and the bottom row will show the possible crossbreeding outputs, and their weights. You can use the + and - gui buttons to scroll through the row(s) of crops. You can also use a button in the GUI to sort the rows by tier or weight. You can invert the sorting by hitting the sorting button while holding shift.\n\nWhen trying to get a specific crop, you generally want to maximize its weight. But more specifically, you want to maximize the proportion of its weight out of all the weights. To determine the best crops to breed, look at their attributes. Parent crops that share more attributes with a crossbreed increase its chances. This means there are no benefits to breeding 3 or 4 identical crops together instead of 2, since all weights are increased evenly. \n\nUse the crops guide at https://tinyurl.com/GTNH-Crops for more details.\n\nTry a variety of combinations to get the crops you want. Often, breeding together two of the same crop is a surprisingly good option or even the best one. A large field of stickreeds has a good chance at making lots of valuable crosses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropnalyzer","Count":1,"tag":{},"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":4,"tag":{"owner":"berriespp","name":"Glowflower","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":200000},"Damage":32529,"OreDict":""}]}]},{"questID":1542,"preRequisites":[721,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crop automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crop-Matron is a LV machine that will monitor crops in a 9x9x3 area and automatically apply fertilizer, Weed-EX, and Water as needed. Water can be pumped in directly or use IC2 Universal water cells, normal cells aren't returned when they are used.\n\nThe Crop-Matron is rainproof, but make sure you cover up your power supply (you might find a fancy way to do this), or use an LV battery. A Lithium Ion will last about 2 hours.\n\nUse Weed-EX sparingly, since overuse will affect crops negatively. \n\nTilled dirt still requires a nearby water block to be hydrated as the Matron will only water the crop, not the soil. Try putting a lily pad on top so it isn't annoying to walk on, or using Garden Soil instead.\n\nYou'll need Stainless Steel to make the Crop Harvester.\n\nAs an alternative to the Crop Matron and Crop Harvester, you can make the Forestry Multifarm. It can also pick crops from cropsticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":2,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMachine2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemWeedEx","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemFertilizer","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1543,"preRequisites":[1273,1542],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeedEx","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed Ex","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weed-EX is used to prevent the growth of Weeds on empty Crop blocks at the cost of crop quality. Damage to the crop's quality is permanent and cannot be reversed, aside from complete removal.\n\nUsage:\nWhile holding Weed-Ex, right-click on a Crop to apply it. It can also be placed in a Crop-Matron to automatically apply it to your crops. Overuse will reduce crop quality, capping their stats at 10."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemWeedEx","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spider_eye","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32402,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1544,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fish","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFish Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make some bio diesel you need seed oil or fish oil and mix that with ethanol or methanol. Seeds give seed oil and fish produce fish oil when placed in a fluid extractor. \n\n§4There are rumors of a weird crop in the shape of a fish...\n\nOtherwise look under Fishing Farming Cooking tab for fish catching options. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30711,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1545,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1158,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to ore drill!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Auto Miners are nice but you're going to reach a point where you will want MOOOOOOOOOOOOORE ores. This multiblock will help with that. It will also pre-macerate your ores and give you a little bonus crushed ores as well.\n\nHigher tiers of power will drill faster. You need to upgrade the energy hatch corresponding to the power tier. \n\nLater you can upgrade the ore drilling plant so it extracts from more than a 48 block radius. Each tier of the controller also gives 5 bonus fortune for small ores. At tier 3 you'll want to spread the wealth to multiple compressed chests!\n\nYou need mining pipes in the machine block and drilling fluid in the fluid hatch.\n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1158,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":15,"Damage":4401,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":72,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":82,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_drillingfluid","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1546,"preRequisites":[1504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRare ores","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you look for days to find Diamonds, Redstone, Tantalite, Certus Quartz or Mica?\n \nWell for a few mixes you can use different ores like Coal for Diamond Vein or Quarzite Ore for Certus Quartz Vein. Mica ore mix can be found if you have Cassiterite Ore (not the sand).\n\n§4Tetrahedrite in the nether can be found with copper ore."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1547,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPress all the things in MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the mv forming press you can make aluminiun iron plates for solar panels and a few rotors blades for turbines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1548,"preRequisites":[739],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Input chest for Ghetto ME System","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To be able to put items into the Ghetto ME system you need just a few additional pipes.\nThe Extraction pipe should be connected to the chest you want to take items from.\nInside the Extraction pipe you need to put the Item Extraction chip, and configure it to blacklist if you want it to take all items from the chest.\n\nThe Routed Junction pipe is needed so the items inside the pipes know which direction to take, without this they will just fly around inside the pipes without knowing where to go.\nYou might also need some additional item transport pipes depending on your setup."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1549,"preRequisites":[942,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"miscutils:MU-metatool.01","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPlunger 2.0 The Hand Pump","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The new hand pump can remove fluids out of your machine input slots. The old plunger removes the fluid - only the hand pump can store it and drain it to a tank.\n\nUse your items in an LV assembler to craft your pump token, and then again to make the hand pump.\n\nWhen you tier up your assembler, you can make better hand pumps, up to EV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32700,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1550,"preRequisites":[109],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More seed types","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This fancy addon allows your cart to plant/harvest more seed types. If you got an MV+ centrifuge you might want to look at glow flowers for some free redstone and gold."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1551,"preRequisites":[112,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockRubSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More tree types","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The standard wood cutter can only chop down (and replant) vanilla trees. If you want to use saplings from other mods however this addon will come in handy. Who knows - maybe you are tired of clicking rubber trees with a treetap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":88,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1552,"preRequisites":[108],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockDistributor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Further automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to load and unload a lot of different items from your cargo manager the pipes can get quite messy. The external distributor is a block you can place next to your cargo manager and it will help you to access different slots which you can specify in its GUI. Quite handy for pumping items in and out!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockDistributor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1553,"preRequisites":[108],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockAdvDetector","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced detector rail","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a cargo manager you need a specific rail so that your cart can interact with it. Just place it next to the cargo manager, depending on the color of the side it is on you will have to adjust settings in the cargo manager GUI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockAdvDetector","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1554,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Exhale of the horned one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Exhale of the Horned One is an ingredient used in many recipes. It is acquired with a random chance when burning Oak saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1555,"preRequisites":[334],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutate your saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mutandis is a mutagen that is used by witches and warlocks to mutate plants into other species. Simply use Mutandis on small plants, grass, flowers, saplings, etc. and it will be randomly converted to another plant. Mutandis cannot mutate multi-stage plants like wheat and cactus.\n\nMutating plants is the only way to acquire Rowan, Hawthorn and Alder saplings.\n\nMutandis has another interesting property when crafted with raw meat. It seems to mutate it into another type of raw meat. It even seems to have an effect on Rotten Flesh.\n\nSome recipes require Mutandis as an ingredient.\n\nMutandis can be upgraded to Mutandis Extremis to have an effect on a wider variety of plants.\n\nMutandis is made in a Witches' Cauldron using Mandrake Root, Exhale of the Horned One and an Egg."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:egg","Count":8,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":22,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":48,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1556,"preRequisites":[1554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":32,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Use some Mouthwash of Olympus!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Breath of the Goddess is an ingredient used in many recipes. It is acquired with a random chance when burning Birch saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":32,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1557,"preRequisites":[1555],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchsapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutated saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rowan saplings grow into Rowan trees when planted. Rowan trees can be harvested for Rowan logs and Rowan leaves (which yield more Rowan saplings). Rowan saplings cooked in an oven yield Wood Ash, and have a chance of producing a Whiff of Magic.\n\nRowan saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random it may take a few goes before Rowan saplings appear.\n\nHawthorn saplings grow into Hawthorn trees when planted. Hawthorn trees can be harvested for Hawthorn logs and Hawthorn leaves (which yield more Hawthorn saplings). Hawthorn saplings cooked in an oven yield Wood Ash, and have a chance of producing Odour of Purity.\n\nHawthorn saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random it may take a few goes before Hawthorn saplings appear.\n\nAlder saplings grow into Alder trees when planted. Alder trees can be harvested for Alder logs and Alder leaves (which yield more Alder saplings). Alder saplings cooked in an oven yield Wood Ash, and have a chance of producing Reek of Misfortune.\n\nAlder saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random, it may take a few goes before Alder saplings appear."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:witchsapling","Count":1,"Damage":2,"OreDict":""},{"id":"witchery:witchsapling","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":16,"Damage":14,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1558,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Whiff of Magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Whiff of Magic is an ingredient used in many recipes. It is acquired with a random chance when burning Rowan saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1559,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Odour of Purity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Odour of Purity is an ingredient used in many recipes. It is acquired with a random chance when burning Hawthorn saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1560,"preRequisites":[483],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:seedsbelladonna","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Witchery Seeds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Witchery seeds, use a hoe on grass blocks away from water. To open the rest of the questline, you will need to do Thaumcraft quests and research the Witchery tab in the Thaumonomicon.\n\nAccording to the legend, when the root of the Mandrake plant is dug up it screams and kills all who hear it. This is only partially true. A fully grown Mandrake may scream causing immense discomfort to those around. This is why it is best to harvest the Mandrake root at night when the plant is more likely to be dormant. Mandrake is grown from Mandrake Seeds which may be obtained by breaking tall grass, or by breaking a partially (or fully) grown Mandrake plant.\n\nBreaking a fully grown Mandrake plant will either yield Mandrake Root or the Mandrake may awaken and cause all sorts of mischief (and pain to the ears!).\n\nBelladonna seeds can be planted and eventually grow into the multistage belladonna plant. The fully grown belladonna plant can be harvested to obtain more Belladonna seeds and a Belladonna flower.\n\nSnowbell seeds can be planted and eventually grow into the multistage snowbell plant. The fully grown snowbell plant can be harvested to obtain more Snowbell seeds, snowballs and occasionally a Icy Needle.\n\nWater Artichoke seeds can be planted and eventually grow into the multistage Water Artichoke plant. The fully grown Water Artichoke plant can be harvested to obtain more Water Artichoke seeds and a Water Artichoke Globe.\n\nWater Artichoke seeds can only be planted on still water blocks.\n\nGarlic is a plantable crop that can be used to make tasty food, and to deal with vampires. Garlic can be obtained by breaking tall grass, although it has a very low drop chance. It may be planted on tilled farm land, and will grow in five stages. When full grown the plant may be harvested for up to three dropped garlic bulbs. Which may either be replanted, or used in a crafting recipe.\n\nGarlic bulbs can be used to make meaty stew, a particularly nourishing meal. It is also the main ingredient in making a Garlic Garland, a useful tool in warding off vampires. Finally, garlic can be used by witches in a Witches' Cauldron to make a vampire Weakening brew, and by Witch Hunters, to make vampire resistant armor.\n\nWolfsbane seeds can be planted and eventually grow into the multistage Wolfsbane plant. The fully grown Wolfsbane plant can be harvested to obtain more Wolfsbane seeds and the Wolfsbane flower.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:seedsmandrake","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedsbelladonna","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedssnowbell","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedsartichoke","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:garlic","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedswolfsbane","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:wheat_seeds","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1561,"preRequisites":[1559],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purified Milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Purified Milk is an antidote in a similar way to normal milk, although it only has a chance of working and will only remove a single status effect. It is advantageous because it can stack to 64 items.\n\nPurified Milk is an ingredient in the Brew of Sleeping."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},{"id":"witchery:ingredient","Count":3,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":31,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":34,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":36,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1562,"preRequisites":[336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":3,"Damage":75,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Brew of love","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Love is a throwable potion that causes farm animals and villagers to get their luvin' on. When used on animals the effect is the same as if all hit animals were fed and their breeding cooldown is reset.\n\nIn the case of villagers, two (or more) must be hit by the same brew.\n\nThe Brew of Love may be thrown at a group of two or more enthralled zombies (created with a Brew of Raising or enthralled with the Infernal Infusion power), which will cause pairs of them to produce a baby zombie. It will also cause them to become a zombie villagers. Zombie villagers can be turned back to villagers either using the normal method, or by casting a Rite of Fertility.\n\nThe Brew of Love is created in a kettle using the recipe found in the book Witchcraft: Brews & Infusions. Into the pot, throw a Rose, a Golden Carrot, Whiff of Magic, a Lily Pad, a Water Artichoke Globe and Cocoa Beans.\n\nWear a Witches Hat (and/or robes) while brewing to get more brews than just three."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":3,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":75,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1563,"preRequisites":[1562],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sleep well!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Sleeping is the normal way for a Witch to enter the Spirit World. \n\nNeedless to say an unprepared witch will almost always experience a nightmare when they head to the spirit world this way. \nThe witch must drink the brew and then will fall into a deep sleep, leaving their body and items behind and entering the world of spirits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":75,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":105,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""},{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1564,"preRequisites":[1563],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Spirit world nightmare","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The spirit world is an alternate reality that mirrors the Overworld in topography. When people dream they often end up in the spirit world without realizing it (often appearing as one of its many denizens). Powerful witches can create Brews of Sleeping that allow them to pass their awake consciousness into the Spirit World, leaving their bodies and gear behind.\n\nThe Spirit World is the only source of Wispy Cotton, Disturbed Cotton, and Mellifluous Hunger - the materials needed to make Dream Weavers. Also Brews of Flowing Spirit can only be made in the Spirit World.\n\nVery few things can pass into, or return from the Spirit World - keep this in mind when heading there (Icy Needle always stay in the inventory). Wispy Cotton, Disturbed Cotton, Mellifluous Hunger and Brews of Flowing Spirit can pass from the Spirit World to the Real World but not the other way.\n\nTwo important things to note: Circle magic does not function in the Spirit World; and Endermen cannot enter the Spirit World."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""}]}]},{"questID":1565,"preRequisites":[1106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nights not dark anymore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hardcore darkness is a pain but now the night will be bright. Be careful the mobs are the same."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":16,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:nether_wart","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1566,"preRequisites":[1564],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:grave","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Early bird gets the...nightmare?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You wake up very early because of the nightmares following you in this dimension.\n\nYou weren't prepared for it. Let get some stuff first and enter a second time to get some wispy/disturbed cotton.\n\nIf you haven't unlocked your Brewing stand yet, you have to do it first. Look in the Novice Thaumaturge tab for the quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":78,"OreDict":""},{"id":"minecraft:potion","Count":4,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:alchemyFlask","Count":1,"tag":{"CustomFlaskEffects":[{"durationFactor":2,"concentration":0,"potionID":104,"tickDuration":1200}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1567,"preRequisites":[1566],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":99,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wake up early","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your second visit was much more relaxing I guess. With night vision and flight potion you found a few wispy/disturbed cotton already. \n\nDisturbed Cotton can be spun into Tormented Twine. It cannot be replanted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8262,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1568,"preRequisites":[1558],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Attuned stone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An attuned stone, is a diamond that has been infused with natural magic in a fiery medium. Attuned stones can be used to link non-magical devices to the magical currents present in the world, and are one of the main ingredients in crafting distilleries, kettles, altar foci and poppet shelves.\n\nThe other main use of attuned stones is to act as a portable power source for circle magic rites, when a nearby altar is not available. To act in such a way, the attuned stone must first be charged with a Rite of Charging."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1569,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":35,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reek of Misfortune","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reek of Misfortune is an ingredient used in many recipes. It is acquired with a random chance when burning Alder saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":1,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1570,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tormented Twine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tormented Twine is spun from Disturbed Cotton using a Spinning Wheel. It is an ingredient used to make Dream Catchers.\n\nIt is made in a Spinning Wheel using Disturbed Cotton, String and Reek of Misfortune.\n\nAn Altar must be nearby to power the spinning wheel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":3,"Damage":35,"OreDict":""},{"id":"witchery:ingredient","Count":12,"Damage":99,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1571,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:distilleryidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Distillery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A distillery used by a witch is a construct used for distilling magical ingredients. It is unlike a normal distillery, because it heats itself using energy obtained from a nearby altar. The distillery must be within about 14 - 16 blocks of an altar to draw power from it - a small icon is shown in the interface if no power is available.\n\nOne or two ingredients are distilled together and will result in up to four resulting materials. A supply of clay jars is also needed to capture the some or all of the distillates.\n\nA distillery is crafted using Iron Ingots, Gold Ingots, an Attuned Stone and Clay jars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:distilleryidle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1572,"preRequisites":[1570,1574],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nightmare protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Nightmares has two effects, firstly it will add a short weakness effect to a player when they wake up from a good nights sleep. Secondly, it will corrupt all other nearby dream weavers so that they have the opposite effect. If the dream weaver is itself corrupted by another nearby Dream Weaver of Nightmares, it will add a short blindness effect instead of nausea.\n\nThe Dream Weaver of Nightmares can also be used to fend off nightmares when a Brew of Sleeping is drunk. Having the Dream Weaver nearby will reduce the chance of a nightmare to 50 percent (this can be decreased further by other means!)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":101,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16454,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16452,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1573,"preRequisites":[1571],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":30,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oil of vitriol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oil of Vitriol is an ingredient produced in a distillery by using Foul Fume and Quicklime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":28,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":16,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":24,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1574,"preRequisites":[1573],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diamond Vapor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond vapor is an ingredient made by distilling diamond in a distillery according to the recipe in the book, Witchcraft: Distilling, using a Diamond and Oil of Vitriol."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":30,"OreDict":""},{"id":"witchery:ingredient","Count":6,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1575,"preRequisites":[1556],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Foul Fume","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A foul fume (commonly known as sulfur dioxide) is an ingredient used in many recipes. It is acquired with a random chance when cooking vanilla food items (such as bread or raw meats) or jungle saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1576,"preRequisites":[1572],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Spirit world daytime","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing your Dream Weaver of Nightmares close to where you sleep and entering the Dream World again, you have a 50% chance now that it be will be Daylight. Try a few times if necessary."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Dream World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""}]}]},{"questID":1577,"preRequisites":[1576],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:somniancotton","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wake up later","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your third visit was much more relaxing I guess. In the daytime you can find a few wispy cotton, which are needed for futher progression. \n\nIt can be collected and replanted, but will only spread if planted in the Spirit World, on Dirt or Grass that is next to a pool of Flowing Spirit.\n\nPlanting Wispy Cotton nearby when using a Brew of Sleeping near to a Dream Weaver of Nightmares will further reduce the chance of a nightmare by 10 percent for each cotton plant (up to 2).\n\nWispy Cotton will remain in a players inventory when they return from the Spirit World.\n\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8229,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1578,"preRequisites":[1577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fanciful Thread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fanciful Thread is spun from Wispy Cotton using a Spinning Wheel. It is an ingredient used to make Dream Catchers.\n\nIt is made in a Spinning Wheel using Wispy Cotton, String and Odour of Purity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":36,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1579,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better Nightmare Protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Charm of Fanciful Thinking is the only way to protect oneself from some of the worst effects a nightmare can throw at you. It just needs to be in a player's inventory for it to function.\n\nA Charm of Fanciful Thinking is crafted using Sticks and Fanciful Thread."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},{"id":"minecraft:stick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1580,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Digging faster!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Iron Arm will add a mining speed boost to a player when they wake up from a good nights sleep. If the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a mining speed slowdown effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16456,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16457,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1581,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moving faster!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Fleet Foot will add a speed boost to a player when they wake up from a good night's sleep. \n\nIf the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a slowdown effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16458,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16450,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1582,"preRequisites":[1583],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hunger no more!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Fasting will add a boost to the saturation of a player when they wake up from a good nights sleep, essentially meaning they will not get hungry for the duration of the effect. If the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a hunger effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16421,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1583,"preRequisites":[1579],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mellifluous Hunger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mellifluous Hunger is an ingredient used in other recipes. It is dropped when a Nightmare is killed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8258,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1584,"preRequisites":[1593,1595],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":96,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion of flowing spirit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Flowing Spirit captures the essence of the Spirit World in liquid form. It can only be brewed in the Spirit World!\n\nThe Brew can be thrown at the ground and the liquid will burst out (the source block can later be picked up in a bucket). Standing in the liquid will have a minor healing effect for most creatures. Demonic or undead creatures will be weakened. Nightmares standing in the liquid will lose their invulnerability effect!\n\nHaving a pool of flowing spirit near a Dream Weaver of Nightmares will decrease the chance of a nightmare by 10 percent for each source block (up to 3)."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},{"id":"witchery:spanishmoss","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":22,"OreDict":""},{"id":"witchery:glintweed","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":96,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1585,"preRequisites":[338],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We need another oven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First of all you can't visit any other dim to get materials. Not the Twilight Forest, not the Nether or the End. Lets start with crafting a new oven and a stack of jars to start with some basic ingredients. For 500 Coins you can tranfer it to the Spirit Dim."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1586,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"More coins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second goal is to have a cauldron to make some mutandis but you need more coins anyways. \nYou have two options here - killing a few nightmares to get coins or selling some wispy cotton.\nYou need to switch a few times between dimensions to compress the coins first."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1587,"preRequisites":[1586],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Another Cauldron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After we have enough coins we can craft the cauldron and transfer it with 1000 coins to the spirit world."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1588,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSwordElemental","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Nightmares","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need more coins? Killing a few nightmares to get coins. "}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":100,"Name":"generic.maxHealth"},{"Base":1,"Name":"generic.knockbackResistance"},{"Base":0.35,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":100,"id":"witchery.nightmare","Victim":"","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":3847374037349003000,"Health":100,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":36378736087929,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"witchery.nightmare","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1589,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:somniancotton","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Wispy Cotton","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need more coins? Selling wispy cotton for coins."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"witchery:somniancotton","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1590,"preRequisites":[1587],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Dreaming mutandis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Go and find some chicken and eggs, brew some Exhale of the Horned One in your oven and plant some mandrake. Make a stack of mutadis to get some witchery tree saplings. Gravel hoes are good enough for planting stuff."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":55,"index":0,"dimension":0,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:egg","Count":10,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":10,"Damage":22,"OreDict":""},{"id":"witchery:ingredient","Count":10,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":60,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1591,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Exhale of the dreaming horned one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For later use do a few Exhale of the Horned One."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1592,"preRequisites":[1593],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Offerings in your dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For all your offerings you'll need an altar too. The spinning wheel needs it also.\n2000 coins are needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:arthana","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1593,"preRequisites":[1587],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kettle for the Spirit World","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A kettle is needed in the spirit world too. For a fee of 1500 coins you can transfer it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1594,"preRequisites":[1592],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"spinning your dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need the spinning wheel for the fanciful thread to finally make the Potion of Flowing Spirit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1595,"preRequisites":[1594],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fanciful Thread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fanciful Thread is spun from Wispy Cotton using a Spinning Wheel. It is an ingredient used to make the Potion of Flowing Spirit. This can be brewed only in the spirit world."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":36,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:ingredient","Count":32,"Damage":14,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:shears","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1596,"preRequisites":[1590],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Odour of Purity in dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For later use do a few Odour of Purity."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":64,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1597,"preRequisites":[1584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More Power now!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Intensity has two effects, firstly it will add a very short night vision effect (or blindness if corrupted by a nightmare) to a player when they wake up from a good nights sleep. Secondly, it will intensify all other nearby dream weavers so that they have either a stronger (but shorter lasting) effect or their duration is increased."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":96,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":104,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":8,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1598,"preRequisites":[897,895],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAvengers, assemble! 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to make the MV variant of the assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":212,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1599,"preRequisites":[114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:nodeUpgrade","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNode upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nodes can take many upgrades. For now, try building a World Interaction Upgrade. With it, you can setup simple autocrafting. \n\nPut a WIU in a transfer node attached to a crafting table. On the other side of the table, the 3x3 area is now treated as a crafting grid. Place items in inventories on the other side and if they make a valid recipe, the WIU will craft it. To speed it up, you will need to wait until HV for stainless steel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:nodeUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:BabyChest","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1600,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:reeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reed and resin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the first useful crops you'll get is Stickreed. It's fast growing, and can produce sticky resin and sugarcane (harvest before it reaches full maturity). It's also great for crossing with other crops to raise their stats.\n\nI'll trade you some fertilizer for 2 stacks of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:reeds","Count":128,"Damage":0,"OreDict":""},{"id":"IC2:itemHarz","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"stickreed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1601,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32530,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Metals from the Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With higher tier crops you can even increase your ore production. Mixing these fibers and leaves with crushed ores can quadruple your output, or you can convert them directly to tiny dusts. Later you can mix these materials to make purified ore with some UU matter.\n\nShow me your ability to get these metal crops and I'll give you some more fertilizer and some decent stat seedbags of rarer crops. Good source crops are essence berries or any of the oreberries.\n\nYou will need the proper oreblock beneath the crop to reach 100 percent maturity. For best growing conditions use dirt in between the oreblock and the crop.\n\nFor Ferru and Aurelia you will have to use a block of metal instead of a GT oreblock - a vanilla oreblock automined from the Twilight Forest will work. WAILA will tell you if the crop will accept the block you are using."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32530,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32527,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32540,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32528,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32503,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"aurelia","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Argentia","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Pyrolusium","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1602,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellHydrant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Water water everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Even though you have to plant crops near the water, they don't actually get any hydration unless you apply water manually. Make a hydration cell and use it on your crops to increase their growth speed. \n\nYou can recycle empty cells in a centrifuge."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellHydrant","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellHydrant","Count":2,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1603,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Feeling a little like a noob...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So could you grow me some essence berries so I can level up? You can plant the ones you get from the bushes, or breed up some.\n\nAs a reward, I'll give you a silly seed a friend of mine came up with. It will definitely keep you on your toes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TConstruct:oreBerries","Count":64,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Essence Berry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Goldfish Plant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1604,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32557,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I prefer to call it Canola","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This crop is a great source of seed oil for your biodiesel needs.\n\nYou can try getting it from dandelions, cocoa, potatoes or lemons."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Rape","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":35,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1605,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTerraWart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better than milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I haven't been feeling well lately. Would you grow me some Terrawarts? They are better than milk, since they only remove negative effects, and stack to 64. Really nice when fighting that Alchemist infernal!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"terraWart","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemTerraWart","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1606,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:foodBerries","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sweet tooth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcane or Reed not keeping up with your sugary needs? Sugar beets give 8 sugar per beet. Potatoes or carrots should easily give you sugar beets.\n\nHmm, now I want some candy. Give me some sugar from your beets. I'll share some with you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Sugar Beet","scan":4},"Damage":0,"OreDict":""},{"id":"berriespp:foodBerries","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:sugar","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:jellyBabies","Count":64,"Damage":0,"OreDict":""},{"id":"harvestcraft:honeycombchocolatebarItem","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1607,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":40,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Swipe swipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you get some large fields, collecting the crops can be a real hassle. Make yourself the GT scythe, Sense, to make it 5x5 = 25 times easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":40,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1608,"preRequisites":[103,1172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1386,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Annealead Copper Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some annealead copper cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1386,"OreDict":""}]}]},{"questID":1609,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1426,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Gold Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some gold cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1426,"OreDict":""}]}]},{"questID":1610,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1341,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Cupronickel 2x Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some cupronickel wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1341,"OreDict":""}]}]},{"questID":1611,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1442,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Electrum 4x Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some electrum wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1442,"OreDict":""}]}]},{"questID":1612,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":67,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Bastnasite, Monazita and Neodymium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A lot of EV machine parts need Neodymium. Rare Earth is a good source but on the Moon you can find a vein with pure Neodymium ore.\n\n§4The Bastnasite is a great source of fluorine as well.\n\nThe vein can be found on moon at Y Level 20-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":905,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":520,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":67,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1613,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":906,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSource of Nickel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Garnierite, Nickel, Cobaltite, and Pentlandite, sources of Nickel, can be found in the Twilight Forest at Y 10-40. In MV you'll need tons of Nickel for Cupronickel.\n\nFind a Greatwood and Silverwood to unlock the Tier 0 quest What is That...? to open the Novice Thaumaturge tab and start your Twilight Forest adventure.\n\n§4Note: You can find small quantities of Pentlandite ore in the Overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":906,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":827,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":909,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:epicbaconItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1614,"preRequisites":[897],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":911,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lChemical Dehydrator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dehydrate your grapes to raisins. Or make some Styrene, Benzene or Ethylene at MV. Either way, this device is a nice to have."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":911,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1615,"preRequisites":[766,943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"lightlysteamcracked.naphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSynthetic Rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some synthetic rubber like styrene-butadine rubber?\nI'll show you a way you can get it. All you need is an Oil Cracker and a Distillation Tower. There are different ways to do it and this quest is only an example of how you can make it.\n\nFist step is to cracking your Naphtha with steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":30739,"OreDict":""},{"id":"IC2:itemFluidCell","Count":40,"tag":{"Fluid":{"FluidName":"steam","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":40,"tag":{"Fluid":{"FluidName":"lightlysteamcracked.naphtha","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1616,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1467,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Silver 2x Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some silver cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1467,"OreDict":""}]}]},{"questID":1617,"preRequisites":[1615,768],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30646,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Distillation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next steps you need a few fluids/gases like Benzene, Ethylene and Butadiene. Run your distillation tower a few cycles to get it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30739,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1618,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1386,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Copper Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some copper cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1366,"OreDict":""}]}]},{"questID":1619,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber sheets? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""}]}]},{"questID":1620,"preRequisites":[1621],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30637,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lStyrene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Styrene you can use the chemical dehydrator or your large chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:Ethylbenzene","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30637,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30686,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1621,"preRequisites":[1617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:Ethylbenzene","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEthylbenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Putting Benzene and Ethylene in the Chemical Reactor gives you Ethylbenzene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:Ethylbenzene","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1622,"preRequisites":[1620],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2634,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRaw Styrene-Butadiene-Ruber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is Raw Styrene-Butadiene Rubber. Mix your Butadiene, Styrene and Air (you can use oxygen as well) to make the dust. \n\n§4An HV chemical reactor is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30637,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30646,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":30,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":2634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30637,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1623,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Let's get some pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First we're gonna need some pipes to connect everything. Do not use these pipes in junctions or the items will choose which path to go at random and you don't want that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass_pane","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1624,"preRequisites":[1623],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Junctions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So how do we deal with junctions then? We use these pipes. They are smart and they will send everything where it needs to go, so if you make a junction make sure you put this pipe there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30645,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1625,"preRequisites":[1624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interacting with stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That's all nice and all, but none of these pipes connect to chests and machines. What am I supposed to do with them?\n\nI'm glad you asked. You are going to need a special pipe for that. This is a pipe you need to use to connect to machines and chests. You'll have to set it up with chips that we'll make soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17086,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":308,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1626,"preRequisites":[1625],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you need to make some chips to use in those interface pipes. These ones do not do anything but are needed as a material for crafting the others.\n\nNow would be a good time to look into IC2 crops to get all the dyes you will need for your advanced chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1627,"preRequisites":[1626],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item responder chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip also stores items in connected invetory. It designates a storage for items that are set in the filter of this chip. They do not actively request for items they only serve as a destination for items to go. You can open up the menu by rightclicking the chip. There you can set which items should it accept and the priority. Items will go to item responders with higher priority first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1628,"preRequisites":[1626],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item overflow chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip stores the items in connecting inventory. It designates a storage for items that have no other place to go. It is strongly recomended to have a default storage for items in every pipe system, otherwise bad stuff can happen. Best used with some large chest (diamond one for example).\n\nIt seems to have some bugs though, so don't craft more than one without testing it first.\n\nYou might have to just use a normal item responder and add the items you want routed back to you overflow spot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1629,"preRequisites":[1627],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dynamic item responder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dynamic item responder chip behaves exatly like an item responder chip, but instead of you setting up which items it should accept, it looks in the chest what items are there and those items it will accept."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1630,"preRequisites":[1627,1628],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item extractor chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip will extract items from the connecting inventory. The extracted items then look for pipes with item responder chips where there's a free space they could go. If they don't find any they will go to the overflow default storage chest.\n\nIf you want it to extract everything leave the filter empty and set it to blacklist."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1631,"preRequisites":[1630],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item broadcaster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Item broadcaster is a chip that tells everyone in the pipe system what items it has in the connecting inventory and if anyone needs anything it will send it to them. Right click it to set the items it will transmit. If you leave it empty and set to blacklist it will transmit everything.\n\nDefinitely use one in combination with an item overflow chip on your default storage chest. That way overflow will end up in the chest, but will be useable by the rest of your system."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1632,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item stock keeper chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Item stock keeper looks at the connecting inventory and keeps item stocked in there. If the item is missing it will keep bothering item broadcasters every few seconds if they have the item and if they can send it. It's basically like an annoying child. \n\nIt is really useful though. Want a chest that will always have 64 cobble and dirt in it and if you take them they will get replaced? This guy is perfect for that job. It's great for keeping machines stocked. When stocking GT machines, the top left slot of the 3x3 is equal to the left slot of the machine. Want a chemical reactor that keeps 3 hydrogen cells ready to go to make ammonia, just add nitrogen? This is the chip for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1633,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crafting chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting chip does exactly what it says. It's not just for default crafting. You can use it with GT machines. Just put in the matrix that it should insert and the output is what it should extract. Great use for them is in combination with fluid canners or super tanks for filling cells. I would strongly recommend not overusing them. Wait untill you have access to AE2 for autocrafting stuff."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1634,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Request pipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This pipe let's you request stuff from the system. It shows all items that are avaible thanks to broadcast chips and even stuff that can be crafted thanks to crafting chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":32,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1635,"preRequisites":[1634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple storage system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to build a simple system to store your stuff. Place down the drawer controller and place the drawers around it. Connect the interface pipe to the drawer controller and put the dynamic item responder and broadcaster chips inside. Don't forget to set the broadcaster to transmit everything by leaving the filter empty and setting it to blacklist. Now you can request stuff from your storage and if you have a chest with a pipe and extractor chip everything you put inside will be sorted into the storage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1636,"preRequisites":[1632,1633],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:bucketOil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Desulfuring oil automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This quest line will show you how to automate desulfuring of oil products. Return here once you have unlocked the LV distillery quest and have some polyethylene plates."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1637,"preRequisites":[1636,547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Storing the fluids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First we should make some place to store all the fluids we'll use. 2 super tanks are required for this quest but you'll need one more later so it's better to build 3 right now.\n\nIf you're interested what they'll be used for:\n1 for oxygen\n1 for hydrogen\n1 for sulfuric acid"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":130,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1638,"preRequisites":[1637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:flowing_water","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electrolyzing water","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now let's automate electrolyzing water into oxygen and hydrogen. You'll need hydrogen for tons of stuff including desulfurization, obtaining tungsten, and nitric acid production. Oxygen is also useful as I'm sure you noticed when making steel.\n\nHow to set it up:\n\nPlace the electrolyzer down and connect it to water and electricity. Place the 2 super tanks nearby. Set the electrolyzer to produce hydrogen gas and oxygen cells. Use normal GT fluid pipes to output the hydrogen gas into one super tank. That is now your hydrogen storage. Now connect interface pipes to all 3 machines.\n\nFor the electrolyzer put in item stock keeper set to keep 2 empty cells stored. Also put in extractor set to extract oxygen cells.\n\nNow for the oxygen storage put it item responder chip set to accept oxygen cells and extractor set to extract empty cells.\n\nNow put some empty cells inside your default storage chest and don't forget to have a broadcaster there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":2,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1639,"preRequisites":[1638],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30737,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Desulfuring the oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it's time to start the actual desulfurization. Use a chemical reactor of your choice, fill it with sulfuric light fuel and hook it to power. Now connect an interface pipe to it. Put an item stock keeper inside set to store 4 hydrogen cells. Then put in item extractor set to extract Hydrogen sulfide and empty cell.\n\nGo to your hydrogen storage super tank and put in a crafting chip set to make one hydrogen cell from one empty cell.\n\nAnd that's all."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1640,"preRequisites":[1639],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30460,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dealing with H2S","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now let's convert all that H2S into sulfuric acid. Hook up a chemical reactor to electricity, water and interface pipe. Put inside an item responder chip set to accept H2S cells and extract empty cells. Distill that diluted sulfuric acid in distillery and store it in super tank.\n\nCongratulations. You now have a completely automatic desulfuring of oil, automatic production of hydrogen and oxygen and you also store all that sulfuric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1641,"preRequisites":[1632],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Small reward","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Here's a small reward for making all those chips."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":28,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":24,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":20,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":32,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":33,"OreDict":""}]}]},{"questID":1642,"preRequisites":[1640],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reward for desulfuring automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The greatest reward is having your stuff automated if you've done everything correctly, but here's a reward for making it this far.\n\nSome other setups to look at automating are making polyethylene and nitric acid. \n\nWith stock keeper chips you can always keep a set amount on-hand and when you pull out the cells to use elsewhere, your setup will automatically make more."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":28,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":24,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":20,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":32,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":33,"OreDict":""}]}]},{"questID":1643,"preRequisites":[1527],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThere can be only one...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...so make them lose their heads. \n\nMake yourself a Cleaver with your tool forge and collect some wither skeleton skulls.\n\n§4If you have problems finding wither skeletons, once you get to HV you can put a powered skeleton spawner in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartLargeSwordBlade","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":3,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1644,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Salt for your salty mouth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Modpack too easy? Tired of all the quests making the game trivial? Hateposting in github about the noobs making steam too powerful? Well here's a quest for you to turn all those OP coins into salt."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":500,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2817,"OreDict":""}]}]},{"questID":1645,"preRequisites":[333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Now I feel bad...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...that I know creepers have hearts. Extract a few with your Arthana. You might want to add a few levels of Looting to get more drops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":21}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1646,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rumplestiltskin!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spinning hay into gold sounds like a fairy tale, but with your new magical spinning wheel you too can try tricking a queen into giving you their first born child.\n\nYou will need three for your witchwear, and can turn extra into gold nuggets in a furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":2,"Damage":102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":102,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1647,"preRequisites":[1574],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":72,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Leather goddess of Robe-us","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make appropriate witchwear, you'll need to make some impregnated leather with your diamond vapor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":12,"Damage":72,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":4,"Damage":72,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1648,"preRequisites":[1646,1645,1647],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The witch is back...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...and you're going to be in trouble. \n\nDress for success in your new Witches Hat and Robes. A girl has to look her best, so I'll give you a nice bag as reward.\n\nCheck NEI uses for impregnated leather for other accessories to your outfit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":102,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":11,"Damage":72,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:witchrobe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:brewbag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1649,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Books are for nerds...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...And sexy male librarians. And also smart witches who want to learn their way around. Craft the first group of Witchery books."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":81,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":106,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":127,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":46,"OreDict":""},{"id":"witchery:cauldronbook","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1650,"preRequisites":[1649],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":107,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Going to need a big hat...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...to fit all this knowledge. Get some more books!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":107,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":47,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":48,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":49,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1651,"preRequisites":[1650],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BloodArsenal:vampire_cape","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A dark path to travel down...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...but a path laden with power beyond imagination. Behold mortal, and be terrified!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:vampirebook","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BloodArsenal:vampire_cape","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1652,"preRequisites":[768],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of a jet engine...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Large Gas Turbine lets you burn gaseous fuels like hydrogen, methane, or benzene. You'll have plenty to turn into EV EU with your new distillation tower.\nJust like the Large Steam Turbine, the LGT uses turbine rotors. Use a fluid regulator to optimize the flow of gases into the turbine - not enough or too much will cause its output to drop.\n\nMake sure your dynamo hatch is rated for the amount of EU your rotor will make!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]}]},{"questID":1653,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trading_post","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAkihabra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of talking one by one with every villager to determine their trades? A trading post will show you all available trades from villagers in the area. You'll need an Assembler to finish it up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17501,"OreDict":""},{"id":"minecraft:glass_pane","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trading_post","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:emerald","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1654,"preRequisites":[784,1740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32730,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomating power on/off","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you have a GT boiler or Large Combusion Engine with a faster startup time, you can automate it to produce power on-demand. Use a machine controller cover on the controller (protip: You can put it on the bottom, or on the side next to a casing, casings will transmit redstone signal). \nWith a machine controller cover, you can use redstone to turn the machine on and off. This is handy if you don't want to use a soft hammer to disable a machine.\n \nThe best way to do that is with an RS latch. One input will turn the machine on, and one input will turn the machine off.\nUse a comparator attached to a valve to measure the steam level in your multiblock Iron or Steel Tank. Invert the signal to turn on your boiler when the steam level is low. When the steam level signal is high, turn your boiler off. Use a trail of redstone to lower the signal strength. Because of boiler/turbine warmup, try to set the ON strength to 30 percent of capacity and OFF strength to about 90 percent.\n\nRed alloy wire will hold a redstone signal for a longer distance.\n\nYou can use a Energy Detector Cover in Normal Electrical Storage (including batteries) mode to monitor the power in a battery buffer and use it to enable/disable generators in a similar way. Change mode using a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32730,"OreDict":""},{"id":"ProjRed|Integration:projectred.integration.gate","Count":1,"Damage":12,"OreDict":""},{"id":"ProjRed|Integration:projectred.integration.gate","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"ProjRed|Transmission:projectred.transmission.wire","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32734,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":4,"OreDict":""}]}]},{"questID":1655,"preRequisites":[1233,940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lOne Dragon Egg is not enough Mr Bond","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dragon eggs are very rare and only drop after a dragon's death. How about I show you a way to recreate this powerful item out of a monster spawn egg?\n\nLets start with step one. Using a mob spawn egg, growth medium, and bacteria to create a bigger egg. This process needs one hour. \n\nBe sure your cleanroom is 100 percent clean or you will risk loosing the item.\n\nIf you have not been on Mars yet you have to wait until you can make mutagen for the next step. It is on the EV tab after visiting Mars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:spawn_egg","Count":1,"Damage":32767,"OreDict":""},{"id":"Genetics:misc","Count":64,"Damage":4,"OreDict":""},{"id":"gregtech:gt.Volumetric_Flask","Count":1,"tag":{"Capacity":1000,"Fluid":{"FluidName":"binnie.bacteria","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1656,"preRequisites":[940,186,1655],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEgg mutation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you found a way to make bacterial sludge stronger and research mutagen try soaking your bigger egg in it. You need to wait a bit (up to one hour).\n\nNext use your bigger egg, a stack of uranium 238 (be sure you wear your hazamuit suit), and mutagen. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemUran238","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"mutagen","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1657,"preRequisites":[1656],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEnder Egg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step you must infuse your egg with endium dust and molten ender to get a ender egg. This process needs 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2770,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"ender","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"HardcoreEnderExpansion:spawn_eggs","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1658,"preRequisites":[1657],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDraconium Egg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to add draconium and ender goo to the ender egg to get a draconium egg. This process takes 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":"dustDraconium"},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"endergoo","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":301,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":25,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1659,"preRequisites":[1658],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDragon Egg Omlet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last step to create you dragon egg is to add enderium and a dragon heart to the draconium egg. This process takes 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"enderium.molten","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":64,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1660,"preRequisites":[1622],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lStyrene-Butadine Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we add a bit sulfur to the raw dust and get molten styrene-butadiene rubber. Use a Plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":2634,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2022,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":17635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30646,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1661,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30664,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSilicone Rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some synthetic rubber like Silicone Rubber?\nThere are different ways to do it and this quest is only an example of how you can make it.\n\nFirst step you need Chloromethane. \n\nYou can use 2 Chlorine and 1 Methane per Chloromethane in your chemical reactor.\n\nAlternatively you can use Methanol and Hydrochloric Acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30664,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30683,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1662,"preRequisites":[1661],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30663,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimethyldichlorosilane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next steps you need Chloromethane and Silicon Dust. Finally you get Dimethyldichlorosilane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30664,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":2020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":30663,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30673,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1663,"preRequisites":[1662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2633,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPolydimethylsiloxane Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put Dimethyldichlorosilane and Water into the chemical reactor and get Polydimethylsiloxane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":30663,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":21,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2633,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2633,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1664,"preRequisites":[1663],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17471,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSilicone Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we add a bit of sulfur to the polydimethylsiloxane dust and get molten silicone rubber. Use a Plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2633,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":2022,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":17471,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30664,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1665,"preRequisites":[1491],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11374,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lHSS-S","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have HSS-G, it's time to make HSS-S. This new alloy is an important part of a lot of IV, LuV and ZPM recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11374,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1666,"preRequisites":[1491],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30024,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§b§lArgon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process some of the new ingots you will find, you need argon. Your first source will come from air, in small amounts.\n\n§4Hint: Use compresed air in a vacuum freezer and get liquid air. This will be a source of argon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30024,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1667,"preRequisites":[1666,1538],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11324,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On Ceres you can find small naquadah ores. Now that you have the dust and argon, you can make some naquadah ingots.\nYour EBF needs HSS-G heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11324,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1668,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"HSSG","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make Tungsten Steel and may upgrade your Electric Blastfurnace with new Coils you are able to make HSS-G Ingots. This ingot becomes very important in LuV tier.\nHss-g is made out of tungstensteel, chrome, molydenum and vanadium dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1669,"preRequisites":[1414],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1184,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The IV circuit assembler will let you make easier MV circuits, as well as single step EV circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1184,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1670,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Doped Monocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make the most advanced wafers, you need to make naquadah dopped monocrystalline silicon first. The process takes 750 seconds and requires silicon blocks and a naquadah ingot in the Electric Blast Furnace. You can make 64 wafers out of every boule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30024,"OreDict":""},{"id":"gregtech:gt.blockmetal6","Count":64,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11324,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32032,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmetal6","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2324,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1671,"preRequisites":[1670],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32035,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Doped Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some naquadah doped silicon wafers, place the monocrystalline naquadah doped silicon boule in a cutting machine. An HV cutting machine is needed for future advanced wafers and chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32035,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1672,"preRequisites":[1671,1006,1697],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun at EV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the EV one. It generates 2048 EU/t max. Most GregTech machines can use them as covers. First you need to produce quadruple sunnarium plate. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":20318,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17362,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17100,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32051,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":19020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32706,"OreDict":"circuitMaster"},{"id":"dreamcraft:item.IrradiantReinforcedTungstenSteelPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":6,"Damage":2380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":11318,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1673,"preRequisites":[1669,1671,1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32047,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSoC - System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make Lv and MV circuits much cheaper you need soc's. System on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32046,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32047,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24507,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1674,"preRequisites":[1407,1673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCheaper MV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the IV circuit assembler and SoC's you can now make integrated processors for a reduced price."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":26345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32080,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1675,"preRequisites":[1669],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32021,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lGlass Fiber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Glass Fiber is used in Fiber Reinforced Boards for circuits.\nBorax can be extracted out of Salt ores. Electrolyze it to get Boron and mix it with Glass dust.\nThe ingots can be turned into glass fiber in the wiremill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":46,"Damage":2941,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2009,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":56,"Damage":2890,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2611,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11611,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32021,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1676,"preRequisites":[1224,1675,1669],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17610,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§b§lFiber Reinforced Epoxid Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fiber Reinforced Epoxid Sheets are needed for the more advanced circuits. Mix glass fiber with epoxid to get your sheets. Alternatively you can use raw carbon fiber. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32021,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":64,"Damage":470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17610,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1677,"preRequisites":[1676],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lEmpty Fiber Reinforced Glass Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fiber Reinforced circuit boards require fiber reinforced epoxid resin sheets, copper foil and sulfuric acid to make an empty board. By adding annealed copper foil and Iron(III) Chloride or Sodium Persulfate you can craft a More Advanced Circuit Board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":29035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":29345,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":5,"Damage":32103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29345,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17610,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1678,"preRequisites":[1679,1249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32085,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSingle step EV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantumprocessors are your first chance to make EV circuits in a single craft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32057,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32085,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1679,"preRequisites":[1677,1249,1247],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32056,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQbit Wafer and Chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Qbit Wafer is made out ofa Nano CPU Wafer and quantum eyes. Cut it for Qbit processor chips.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32056,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32057,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30093,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2980,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1680,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32675,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lThought emitters were bad enough?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field generators are a big part of lategame crafts, and yes they always suck to make."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32675,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1681,"preRequisites":[202],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the ender quarry on its own with speed upgrade is good, why not speed it up a little bit more?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1682,"preRequisites":[1681],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things III","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If Speed upgrade II is to slow craft a speed upgrade III."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1683,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1185,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lLuV Circuits Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV circuit assembler is a nice one, giving you both cheaper HV circuits, as well as IV-UV circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1185,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1684,"preRequisites":[1685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCheaper HV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can make nanocircuits in a single simple step. They cost a new wafer, the ASoC wafer. They get more useful in zpm to make cheaper EV circuits as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":256,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":26085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32082,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1685,"preRequisites":[1671,1407,1683],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32049,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lASoc Advanced System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make HV and EV circuits much cheaper you need ASoCs. Advanced system on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32048,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32049,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24507,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1686,"preRequisites":[1683,1249,1522,1687,1688],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32089,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you're this far into LuV, you can make easier IV circuits, as well as your first UV circuit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32070,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32089,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1687,"preRequisites":[1689],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32070,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystal Chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make these chips you need Europium, as well as an HV Autoclave in the Asteroid Field dimension to achieve \"low gravity\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":30501,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":70,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32069,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17501,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32069,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32713,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32070,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32074,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":2,"Damage":70,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1688,"preRequisites":[1677,1683],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32104,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lElite Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elite circuit boards require a fiber reinforced board, platinum foil and sulfuric acid to make an multilayer reinforced board. By adding again platinum foil and Iron(III) Chloride or Sodium Persulfate you can craft an elite circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32712,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32720,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1689,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10930,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§c§lLuV Laser Engraver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV laser engraver is an important part of lategame circuit production. You need to make crystal CPU's for both wetwares, and crystalprocessors, the cheaper IV circuit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10930,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1690,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 6 > Tier 7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 6 lootbags give a better one = Tier 7."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":1691,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30605,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPolybenzimidazole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polybenzimidazole is a synthetic fiber used in ZPM Hulls and in high tier solar panels. It has many steps to produce it. Let's start with the bas eingredients.\n\nFirst we make some chlorobenzene out of benzene and chlorine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":384,"Damage":30023,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":192,"Damage":30686,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":192,"Damage":30605,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1692,"preRequisites":[1691],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30628,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNitration mixture","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We also need nitration mixture. We can do it out of nitric acid and sulfuric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30628,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1693,"preRequisites":[1691,1692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30592,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l2-Nitrochlorobenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to mixing the nitration mixture with your chlorbenzene in the hv chemical reactor to get 2-nitrochlorobenzene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30628,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30605,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30592,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1694,"preRequisites":[1693],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30596,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§b§l3,3 Dichlorobenzidine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing 2-nitrochlorbenzene with tiny copper dust gives you 3,3 Dichlorobenzidine in an EV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30592,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30596,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1695,"preRequisites":[1694],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30597,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l3,3 Diaminobenzidine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing 3,3 Dichlorobenzidine with Ammonia and Zinc in an IV Chemical Reactor gives you 3,3 Diaminobenzidine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30596,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2036,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30597,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1696,"preRequisites":[176,186,861,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":425,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lChemical reactions at IV level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High tier chemical recipes need a high tier IV chemical reactor.\n\nAlternativly you can use your Large Chemical Rector with two EV or one IV energy hatch."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1697,"preRequisites":[1695,1698],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17599,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPolybenzimidazole finally","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"3,3 Diaminobenzidine and Diphenyl Isophtalate will finally give you molten Polybenzimidazole. Use a plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30597,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30598,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17599,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1698,"preRequisites":[1699,1700],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30598,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lDiphenyl Isophtalate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mix Sulfuric Acid, Phtalic acid and Phenol to get Diphenyl Isophtalate. An IV Chemical Reactor is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30595,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30598,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1699,"preRequisites":[1691],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30687,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Phenol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can get Phenol in different ways, but why not try using your chlorobenzene and some water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30605,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":128,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1700,"preRequisites":[1701,1702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30595,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPhtalic acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Phtalic acid you need mix Dimethylbenzene, tiny piles of Potassium Dichromate and Oxygen in an EV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30593,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":594,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30595,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1701,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30593,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lDimethylbenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dimethylbenzene can be distilled from Wood Tar or using Benzene and Methane gas in a Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30593,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1702,"preRequisites":[1704,1703],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2594,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPotassium Dichromate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potassium Dichromate is made out of Potassium Nitrade and Chromium Dioxide in an HV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2591,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2590,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2594,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1703,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2590,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPotassium Nitrate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potassium Nitrade is made out of potassium and nitric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2025,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2590,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1704,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lChromium Trioxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chromiumtroxide is be made out of chrome and oxygen in two steps. First you make chromiumoxide and then chromiumtrioxide."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2361,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2591,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1705,"preRequisites":[1678],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Processor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantumprocessor Assembly is a IV Circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32085,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":96,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32086,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":24,"Damage":32014,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1706,"preRequisites":[1705],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32087,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lMaster Quantum Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Master Quantumcomputer is an LuV Circuit and needs a cleanroom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32086,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":192,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32087,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32043,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1707,"preRequisites":[1706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32088,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Processor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Quantumprocessor Mainframe is the first ZPM circuit you can make."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32087,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":192,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":192,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32088,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1708,"preRequisites":[1686],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32096,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crystal Processor Assembly is a LuV Circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32089,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32096,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19360,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1709,"preRequisites":[1708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32090,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lUltimate Crystal Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Ultimate Crystalcomputer is a ZPM circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32096,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32090,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32041,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1710,"preRequisites":[1709,1711],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32091,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crystalprocessor Mainframe is the first UV circuit you can make. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32090,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":64,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32091,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1711,"preRequisites":[1489,476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2400,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lSuperconductors 32768 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 32768 EU IV wires? Tetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxide is a superconductor wire and will transfer your energy without any loss. Every voltage now has superconductor wires and a base wire with only a very small EU/t loss.\n\nMix indium, tin, barium, tianium, copper and oxygen in an EV mixer. Now you have the base dust, which needs an EBF with Naquadah coils, and a vacuum freezer to cool it down.\n\nMake some LuV superconductor base wires and use an assembler to combine these wires with helium and tiny enderium pipes and an LuV pump to get your 32768 EU/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2056,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2057,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":28,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2991,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11991,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2280,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2280,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":40,"Damage":5190,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1712,"preRequisites":[1673,1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCheaper LV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the IV circuit assembler and SoC's you can now make a microprocessor for a reduced price."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32078,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1713,"preRequisites":[1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32061,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSimple SoC - System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For a replacement for vacuum tubes in simple circuits you'll need simple SoC's. System on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32060,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32061,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24514,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24540,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1714,"preRequisites":[1713],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32075,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§8§9§lCheaper Simple Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The NAND chip is an industrial replacement for the vacuum tubes that is much cheaper. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32061,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32075,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24514,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24540,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1715,"preRequisites":[1538],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOn your way to Tier 4 DIMs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tier 4 Planets are Jupiter's Moon Io where you will find the next dungeon, Venus (needs a SpaceSuit) and Mercury."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Reach asteroid belt","range":-1,"index":0,"dimension":30,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":16,"Damage":1,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:venusblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:venusblocks","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":1,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1716,"preRequisites":[1715],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":84,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIridium Mix","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nickel, Iridium Palladium and Mithril you can find on Io or Venus. Look at Y 15-40.\nYou can get also Osmium out of Iridium Ore for high tier materials you need later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":84,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":331,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1717,"preRequisites":[1715],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":391,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lVenus Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Venus has two ore mixes you really want to find. One mix is the Quantium Mix and the other is Naquadah.\n\nMake sure you are wearing proper protective equipment!\n\n§4Quantium is found at Y 5-25 and Naquadah Y 10-90."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Venus","range":-1,"index":0,"dimension":39,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":391,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":509,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":375,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":128,"Damage":324,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":326,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1718,"preRequisites":[213,86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11358,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYttrium-Barium-Cuprate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yttrium-Barium-Cuperate becomes more important in LuV Tier. It needs an EV Mixer to mix and a Electric Blast furnace with Tungsten Steel heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":11,"Damage":2045,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":22,"Damage":2063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":33,"Damage":2035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2358,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11358,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1719,"preRequisites":[1672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun 1x1 EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 2048 EU panels on a block to make them placeable in the world. Use an IV assembler to combine the panel with an EV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32540,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1720,"preRequisites":[1671,1007,1722],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPower of the Sun at IV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the IV one. It generates 8192 EU/t max. Most GregTech machines can use them as covers. First you need to produce sunnarium alloy out of reinforced iridium and sunnarium. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17358,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17346,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32053,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":18599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":20020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32088,"OreDict":"circuitUltimate"},{"id":"dreamcraft:item.IrradiantReinforcedChromePlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":6,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11318,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1721,"preRequisites":[1720],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"supersolarpanel:SpectralSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPower of the Sun 1x1 IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 8192 EU panels on a block to make them placeable in the world. Use an LuV assembler to combine the panel with an IV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32545,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"supersolarpanel:SpectralSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1722,"preRequisites":[1489],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10780,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lLuV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV assembler is needed for IV Solar Panels and other high tier stuff. Lets build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10780,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1723,"preRequisites":[1535],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:ioblocks","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"IO Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours and hours and endless swimming in lava you will find a Io dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 5 rockets.\n\nThis will open the Moons from Saturn and Uranus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier5Key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1724,"preRequisites":[80,1717,1723],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 60 tier 5 heavy duty plates out of tier 4 plates and compressed quantium plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":60,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":480,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyAlloyIngotT5","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":256,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1725,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in an HV Scanner and put the construction data on a Data Stick. The fourth tier schematic circuit uses an elite circuit and a heavy duty plate tier 5 and the data stick in a LuV circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier5","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":5},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1726,"preRequisites":[1724,1725,1730,1727,1728,1729],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier5Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a month of hard work and ten thousand stacks of iTNT your fifth rocket is finally ready. But before you can go to Saturn and Uranus Moons you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":12,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LargeFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.Tier2Booster","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier5Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":256,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1727,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Nose Cone Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone. Tier 5 rocket needs a heavy nose cone tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.LedoxCompressedPlate","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1728,"preRequisites":[1731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Rocket Engine Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. A heavy one tier 3 is needed in the tier 5 rocket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.Tier2Booster","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LedoxCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":32,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1729,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Rocket Fins Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins. Tier 5 rockets need heavy ones Tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.CompressedSDHD120","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":24,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1730,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LargeFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Fuel Canisters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 5 rocket you need to craft two medium and two large canisters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MediumFuelCanister","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LargeFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LedoxCompressedPlate","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1731,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.Tier2Booster","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Booster Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The distance between Planets and Moons is much larger now so the rocket needs bigger boosters to reach it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LedoxCompressedPlate","Count":12,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.CompressedSDHD120","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Tier2Booster","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11374,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1732,"preRequisites":[1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_jetplate","Count":1,"tag":{"electricity":100000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"EVA equipment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who wants to trudge around on the surface when you can fly? Upgrade your chestplate with a jetpack and fly around Venus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{"charge":30000},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_jetplate","Count":1,"tag":{"electricity":100000},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1733,"preRequisites":[1531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Journey to the bottom of a molten ocean","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Venus is hot, so hot it can melt lead. On top of that the atmosphere is so thick, 90x the Overworld, that it will crush you. Not to mention the Sulfuric Acid! You will need to construct a special suit to survive on Venus without dying instantly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_leg","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1734,"preRequisites":[1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_gravityboots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gravity boots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These boots will help you fall faster in low gravity environments. Or not. Maybe. Give them a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_gravityboots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1735,"preRequisites":[1205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBowl full of spaghetti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or at least factories full of item pipes. With these simple item pipes and conveyors you can take items out of one machine and feed them immediately into a second machine.\n\n§4Later you can make better item pipes. Look for \"item pipe\" in NEI for options."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5590,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spagettiItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1736,"preRequisites":[895],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPipes, pipes everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are in MV, you will want to start automating processes. Polyethylene, O2, N2, H2, rubber, charcoal, etc. Faster item pipes will help with transporting items quickly around your base. For now, use your spiffy new extruder to craft some brass item pipes. \n\nThe reward - restrictive item pipes - allow you to prioritize destinations. Locations on the other side of a restrictive pipe are treated as much further away than locations on the same side of a pipe. Very handy when you want overflow (or non-matching) items to go somewhere else!\n\nFor higher tiers, look up \"* item pipe\" in NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5641,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1737,"preRequisites":[1288],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More Red, less Wheat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When breeding together crops for an output crop, try to get crops that are close in tier to the output crop, and have similar attributes to the output crop. \n\nFor example, Redwheat has \"Red\", \"Wheat\" and \"Redstone\" attributes and is tier 6. Netherwart has \"Red\" and is tier 5. Use the cropnalyzer crop prediction mode to see how many points Redwheat has using two Netherwart. \n\nYou'll also want to make sure the light level is between 5-10 for the cross breeding to occur. \n\nReally though, once you get to MV it's better to make a Glowstone crop and centrifuge it for redstone. Red wheat == Dead wheat"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":2,"tag":{"owner":"IC2","name":"netherWart","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"redwheat","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinFarmerII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1738,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"openglasses:openglasses","Count":1,"Damage":7734,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lWhen all you have is a hammer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...the whole world looks like a nail. When looking for good tool materials, look for the generic tool in NEI and use R to find the recipe. Then use U on the source materials you have to find out their durability options. Tool parts are normally not in NEI, like the drill bit. So use NEI U on plates etc to figure out their recipes. \n\nThe GT tools each have special uses.\n\nScrewdriver - Used on covers to change their behavior.\n\nWrench - Used to change the output direction on a GT machine, or to break it. Can also disconnect/connect pipes or enable their built in shutter.\n\nCrowbar - Remove covers from machines or pipes.\n\nWire cutters - Connecting/disconnecting wires/cables.\n\nSoft mallet - Turning machines on/off.\n\nHammer - Prospecting for ores in a limited way in front of you, and smashing ore blocks into crushed ores."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1739,"preRequisites":[1231,146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockFarmStation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFarming a little easier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of the forestry farms requirements? The Ender IO Farming Station is available to ease your suffering. It just requires EU and can be easily upgraded with capacitors. Most normal crops and trees work with it, but unfortunately IC2 crops do not."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":22378,"OreDict":""},{"id":"EnderIO:itemMaterial","Count":2,"Damage":5,"OreDict":""},{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31365,"OreDict":""},{"id":"EnderIO:itemFrankenSkull","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockFarmStation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:diamond_hoe","Count":1,"tag":{"ench":[{"lvl":3,"id":34},{"lvl":3,"id":35}]},"Damage":0,"OreDict":""},{"id":"minecraft:diamond_axe","Count":1,"tag":{"ench":[{"lvl":3,"id":35},{"lvl":3,"id":34}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1740,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1171,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDo you hear that engine revving?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your old and trusty combustion engines don't quite cut it anymore, not to mention they are polluting the place. If you want to keep burning liquids, you need to build a better engine. This multiblock can produce 1A of EV voltage by default and 3A if you supply it with oxygen. However, this power doesn't come for free - you need to supply the machine with small amounts of lubricant constantly (and oxygen if you want to boost both its efficiency and output).\n\nYou will also require 3 Input Hatches, a Muffler, and a Dynamo Hatch. Their tiers are up to you.\n\nCetane Boosted Diesel and High Octane Gasoline are excellent fuel sources for this engine.\n\nYou will need to keep the area in front of the engine clear so it can pull enough air - not even torches."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1171,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":2,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":8,"Damage":13,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":19,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30998,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":7,"Damage":0,"OreDict":""}]}]},{"questID":1741,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:Natura.netherfood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lNice Nether Trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a few very useful Nether trees out there which gives resources like Redstone, Gunpowder, Bonemeal or Fertilizer.\n\nGo and get a few trees like Bloodwood, Fusewood, Darkwood or Ghostwood out of the Nether.\n\nThese trees can be planted like normal trees, except for Bloodwood. That has to planted on a ceiling and will grow down instead of up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:floraleavesnocolor","Count":16,"Damage":1,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":4,"OreDict":""},{"id":"Natura:tree","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Natura:floraleavesnocolor","Count":16,"Damage":2,"OreDict":""},{"id":"Natura:bloodwood","Count":8,"Damage":0,"OreDict":""},{"id":"Natura:bloodwood","Count":8,"Damage":15,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Natura:Dark Tree","Count":8,"Damage":0,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":6,"OreDict":""},{"id":"Natura:Dark Leaves","Count":16,"Damage":0,"OreDict":""},{"id":"Natura:Natura.netherfood","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"Natura:Dark Tree","Count":8,"Damage":1,"OreDict":""},{"id":"Natura:Dark Leaves","Count":16,"Damage":3,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":2,"OreDict":""},{"id":"EnderIO:itemAlloy","Count":4,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1742,"preRequisites":[765,810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30005,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lHelium 3 and Saltwater on Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon is rich in Helium 3 because the Sun has been embedding it in the upper layer of moon by the solar wind over billions of years. \nSalt water is also available in smaller quantities. You will want plenty of chlorine for processing Rutile to get Titanium. \n\nThere are more planets and moons with gas and fluids underneath the surface. Bring along a multiblock fluid drill to recover these fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30005,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30692,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:blockTank","Count":4,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1743,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30692,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Saltwater and Chlorobenzene on Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mars is rich on saltwater and chlorobenzene. If yu run low on chlorine you can centrifuge the fluids.\n\nMore Fluids and Gases can be found on (This list is subject to change due to balancing at any time!):\n\nSalt water\n\n Moon - v low\n Mars - Low\n Europa - High\n\nHelium3\n\n Moon - V.Low\n Mercury - Low/High\n\nChlorobenzene\n\n Mars - V.Low\n\nNitrogen\n\n Triton - high\n Pluto - high\n\nMethane\n\n Titan - High\n\nEthane\n\n Titan - Low\n\nEthylene\n\n Triton - Low\n\nCallisto\n\n Oxygen - Low\n\nSuper Heavy Oil\n\n Europa - low\n BarnardC - high\n TCetiE - low\n\nMolten Naquadria\n\n BarnardC - Low\n VegaB - high\n\nMolten Naquadha\n\n Venus - V.Low\n Titan - low\n Haumea - high\n\nLiquid air \n\n Callisto- Low\n Charon - Medium\n BarnardE - High"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30692,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"chlorobenzene","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"EnderIO:blockTank","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32708,"OreDict":""},{"id":"minecraft:tnt","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17028,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1744,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lChemical lesson part two","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More advanced recipes need an mv chemical reactor like polyethylen.\n\nHint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1745,"preRequisites":[1598,1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":48,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Welcome to OpenComputers!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hello there, my name is Teirdalin and today we shall embark on one of the most exciting and fun mods; OpenComputers! First things first though, you will need some patience to get through this mod, but it will certainly pay off in the end!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":98,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32007,"OreDict":""}]}]},{"questID":1746,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your First Microchip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Microchips will be used in most things you make, so if possible; I suggest bulk crafting quite a few of these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":4,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1747,"preRequisites":[1754,1751,1750,1753,1756,1755,1760,1762],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"universalsingularities:universal.bigReactors.singularity","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your First Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Place the power converter you gotten earlier near an electircal cable and connect it with your wire cutters. Now place your computer case by the converter and by the magic of technology it shall fuel the computer case! Now take your hard drive, memory and graphics cards and place them inside, place the disk drive next to the computer and insertin the operating system disk. Insert the bios we made into the case and turn it on."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":48,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1748,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":27,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arithmetic Logic Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Arithmetic Logic Circuits are used in numerous parts; mostly in groups of 8-16 upto 64. \nSo make sure to make plenty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1749,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"All Your Card Are Belong To Us","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Card bases are just as you might think they are; they're the base part that each card you make will use to connect onto the motherboard.\n\nI suggest making a handful of these for future cards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1750,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Short Term Memory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gotta get more ram.\n\nMemory, or ramis essentially a temporary storage of data on your computer that can be rapidly accessed via your programs..\nHence the name Rapid Access Memory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":29303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":33,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1751,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Woah Rad Graphics!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"See the digital world.\n\nYour graphics card allows the computer to draw text and other things to the screen. \nThe better graphics card you use the higher resolution, and better features can be drawn.\n\nYou also need a higher tier monitor to display colors or to get touchscreen compatability-\nbut that's something to worry about for another day."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""},{"id":"OpenComputers:item","Count":8,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":2,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32717,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"OpenComputers:screen1","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"OpenComputers:screen2","Count":2,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1752,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Control Units","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So controlling! Strangely enough, this part takes an HV circuit to craft; so here's some to make your first computer parts in exchange for MV circuits in their place. Don't spend them all in one place!"}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32702,"OreDict":"circuitGood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":16,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1753,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What did the data say to the CPU?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cache me outside.\n\nYour CPU will essentially be how fast your computer processes data. \nA stronger CPU == A faster computer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":8,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1754,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:case1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Computer Case","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"100 Percent Waterproof.\n\n\nThe computer base is the HUB of all your computer parts essentially.\nIt takes two memory sticks, a BIOs rom, a CPU, and a hard drive at the very least to run your computer.\n\nThe power converter allows you to power it from your GregTech power grid, and the floppy drive will allow you to install your operating system onto the hard drive. Both parts are essential but both for some strange reason requires the T2 microchips to craft; so here's a starting pair using T1 Microchips instead- Don't lose them!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21019,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:case1","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24890,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":23035,"OreDict":""},{"id":"OpenComputers:item","Count":3,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"OpenComputers:cable","Count":2,"Damage":32767,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":"plateAluminium"},{"id":"OpenComputers:item","Count":2,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:powerConverter","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:diskDrive","Count":1,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1755,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:wrench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"My Little Scrench","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A screwdriver and wrench in one. Not really a necessary tool, but has some purposes; I suggest referring to your computer manual."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"OpenComputers:wrench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":98,"OreDict":""}]}]},{"questID":1756,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"HDD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your hard drive is where all your programs and data is stored..\n\nYou're playing minecraft, you should already know this though."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18019,"OreDict":""},{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""},{"id":"OpenComputers:item","Count":2,"Damage":24,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":"oc:hdd1"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"tag":{"oc":"OpenComputers:openos","display":{"Name":"OpenOS (Operating System)"}},"Damage":4,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1757,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":19,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not Your Average Platter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We'll need these for our hard drives."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24890,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29019,"OreDict":"foilAluminium"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1758,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:eeprom","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BIOS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The rom disks are necessary to get your computer to start, they're also what you use to run a drone off from.\nYour BIOs go onto these little disks, get me a blank and I'll write the basic BIOs onto it for you.\n\nYou can do this later when you make more computers by flashing your existing bios onto new cards or combining a blank with the manual."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"OpenComputers:eeprom","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:eeprom","Count":1,"tag":{"oc":{"oc":"EEPROM (Lua BIOS)"}},"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1759,"preRequisites":[1748,1752,1746,1757,1749,1758],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":54,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Congratulations we have the parts to start making a computer!\n\nLet's start with the basics here."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1760,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Intelligence is the ability to adapt to change.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This block allows our computer to interact with GT machines and everything else. A must have!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"OpenComputers:cable","Count":2,"Damage":32767,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""},{"id":"OpenComputers:adapter","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1761,"preRequisites":[1747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hello World!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First things first, let's install OpenOS to the computer so you don't always need disk in the drive. Type in 'install' and then type 'Y' when asked if you wish to install OpenOS. \nWhen finished, remove the disk and toss it on your wall and reboot the computer. \nType 'df' to display all present file systems and mount points, you'll notice one named OpenOS; this is your hard drives default name after installing the OS. \nLet's change it with 'label set -a OpenOS HDD' -a checks for names starting with what you type after it with that command.\n\nNow for fun, let's make your first program! How about something functional, make a with 'edit startup' this will bring you to an edit page for a new program called startup. Let's just have it do something simple, 'print(\"Hello World!\")' Like that'll never get old.\n\nNow press Ctrl+S to save, and Ctrl+W to get out of that screen. Back in your home root let's now type startup and you'll see it display \"Hello World!\" neat huh?\n\nLet's now make startup actually work on startup. Type 'edit .shrc' .shrc is a mystic file that runs shell commands when booting your PC. So in .shrc type 'startup' save and reboot the computer. Now it should say \"Hello World!\" upon starting. Double neat right?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32002,"OreDict":""}]}]},{"questID":1762,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I love pressing the F5 key.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's so refreshing.\n\nPlace a keyboard facing a screen- or stuck to the back of a screen to make it able to interact with a computer.\nAbsolutely necessary to doing anything on your computer, but can safely be removed once you have an endlessly running program."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone_button","Count":104,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"harvestcraft:colasodaItem","Count":1,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1763,"preRequisites":[1761],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mounting your HDD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alright, you have your computer, it says \"Hello World!\" When you start it, and you feel awesome and capable of world domination. \n\nNow lets setup your HDD. Open .shrc again in the editor, and press ENTER to go down a line after the print, and type in 'cd ../' this will move your viewed directory that's being viewed to- well, the absolute base directory. \n\nNow go down another line and type in 'mount HDD C:' because why not, it's Classic; this mounts the file drive into the folder you're in. Go down another line and type cd 'C:/' save and reboot the computer.\n\nYou'll now start in C:/ nifty! Try typing 'mkdir programs' and now you have a dedicated directory to put your programs in for the sake of organization.\n'cd programs' will then take you to programs, and 'cd ../' will take you back a directory; you can also do things like- lets say you have a folder called apples in C as well but you're in apples, type 'cd ../apples' and it'll take you to apples, .. essentially just means previous directory and this can be stacked; works with copying files and moving them as well, very useful to know. \n\nut right now we're going to do something functional, come over to the next quest and bring your adapter and cables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1764,"preRequisites":[1763],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Power Display","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For this part we will learn how to use our adapter, place it next to- let's say your EBFs battery buffer and connect it to the computer with cables.\nNow lets type in lua while on the computer to open the LUA environment where we can test things without worrying about saving and trying our program.\n\nType in 'component.list()' this will display a table of all of .list from component. What we're looking for is gt_batterybuffer.\nIf you have too many nearby things it may not display and the way to search the entire list of components is too advanced for starters.\n\nSo now assign a variable to it; for example 'a = component.gt_batterybuffer'; now we can call 'a' to see what methods the batteryBuffer has.\nWhat we'll be using in this example is the 'getBatteryCharge' method. So type\n 'a.getBatteryCharge(1)' this will call the method getBatteryCharge from the first inventory slot on the gt_batterybuffer in component.\n\n So if we're using a 2x2 battery buffer; we can type something like- 'for i=1, 4 do print(a.getBatteryCharge(i)) end\nPoof you now see what all the batteries EU values. Now what can we do with this?\n\nTry making a variable called 'batteryCharge = 0', now do 'for i=1, 4 do batteryCharge = batteryCharge + a.getBatteryCharge(i) end'\n\nNow print(batteryCharge) will display the total charge. Here's a program example of this being used.\n\nPlace in your tape drive and type 'install', and follow the promps to install it into C. Then edit it, test it, figure how it works.\n\nI suppose that's enough for now; congrats! Experiment and learn, and don't forget to check google as much as possible! \nThis questline will be updated again in the future; but I figure this is a good ending point for now."}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"tag":{"oc":{"node":{"address":"9147f798-ee2f-44da-b736-b6a30beed8da","visibility":2,"buffer":0},"owners":[{"handles":{},"address":"9fbc465f-657a-437e-9f90-f18aaf9eb423"}],"oc":"PowerDisplay","fs":{"output":{},"input":{},"capacity.used":2045}}},"Damage":4,"OreDict":""}]}]},{"questID":1765,"preRequisites":[1747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:itemGenericToken","Count":16,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Online Shopping - Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey, a use for bitcoins!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1766,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Network Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Network Card for six Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":1767,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":113,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Wireless Network Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Wireless Network Card for 12 Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":113,"OreDict":""}]}]},{"questID":1768,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Memory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a pair of Tier 1 Memory Chips for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""}]}]},{"questID":1769,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Graphics Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Graphics Card for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1770,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":3600,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Graphics Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Graphics Card for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1771,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:cable","Count":8,"Damage":32767,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you 16 cables for two bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""}]}]},{"questID":1772,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:screen1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Screen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Screen for three Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:screen1","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1773,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Hard Drive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Hard Drive for eight Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1774,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Floppy Disk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Floppy Disk for a Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1775,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Keyboard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Keyboard for two Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1776,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Microchip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Microchip for two Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]}]},{"questID":1777,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32009,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Coin Conversion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sell 32 of those Dogecoins for a Bitcoin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32009,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1778,"preRequisites":[231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Warp Warnings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumcraft offers considerable power from its devices and tools. \nBut power comes with a price.... As of version 4.2, that price is represented by Warp: \nA corruption of the characters mind and soul, inflicting progressively more dire effects upon them. \nWhile the effects of warp can range from annoying to deadly, accumulating enough of it can also grant you access to greater power... at the cost of increasing madness, and attention from dark powers.\nAt least, others may call it madness... but is it truly insanity, when the voices in your head grant useful knowledge, and the monsters that appear before you leave remains behind?\n\nWarp Theory add a bunch of new Warp Effects to the Player. Be very carful because you don't want autospawning an Wither in or bside you Base.\nWarp Effects are Trickert by Warp Level.\n\nFake explosion warp effect can happen with 10 Warp\nFake creeper warp effect can happen with 10 Warp\nSpawn bats can happen with 15 Warp\nPoison warp effect can happen with 16 Warp\nJump boost warp effect can happen with 18 Warp\nRain warp effect can happen with 25 Warp\nBlood warp effect can happen with 25 Warp\nNausea warp effect can happen with 25 Warp\nFriendly creeper warp effect can happen with 26 Warp\nLightning warp effect can happen with 30 Warp\nLivestock rain warp effect can happen with 32 Warp\nWind warp effect can happen with 38 Warp\nBlindness warp effect can happen with 43 Warp\nRandom teleport can happen with 45 Warp\nAcceleration warp effect can happen with 50 Warp\nDecay warp effect can happen with 50 Warp\nRandom trees effect can happen with 50 Warp\nChest scramble warp effect can happen with 80 Warp\nSpawn wither warp effect can happen with 80 Warp"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"WarpTheory:item.warptheory.paper","Count":16,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemBathSalts","Count":4,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1779,"preRequisites":[486,49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:pistonBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Step Assistant.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Piston Boots are a bouncy pair of shoes for adventurers.\n\nIt functions as a piece of armor for the foot slot that gives a fun jump boost! They let the wearer jump up to THREE blocks in height and increase run speed. They also grant a Step Up enchantment to allow the wearer to step up a single block without jumping while sprinting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17880,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"adventurebackpack:pistonBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1780,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:pamoliveSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Olives Saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Olive trees can't be find in the overworld so the best way would be to buy some with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:pamoliveSapling","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1781,"preRequisites":[692,102,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Gear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The goggles, wings, shoes, vest, belt and boots it self are not realy special. You can zoom with the googles, have a extra inventory slot with the belt, stepup assistent with the shoe, jump boost with the wings and faster swimming ability with the vest. You get protction like with normal armor too.\nLater on you can upgrade your items to becomes more powerful ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":26303,"OreDict":""},{"id":"harvestcraft:hardenedleatherItem","Count":17,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17804,"OreDict":"plateObsidian"},{"id":"minecraft:diamond_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_boots","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:fletching","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32642,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":6,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Built":1,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelBelt","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:hardenedleatherItem","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17500,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1782,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Night Vision":1,"Built":1,"Moss":3,"Tooltip1":"Night Vision","Tooltip2":"Auto-Repair","Effect2":4,"ModifierTip2":"Moss","Effect1":0,"ModifierTip1":"Night Vision","ModDurability":0,"DamageReduction":0,"Broken":0,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":1,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Goggles upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nightvision is very usefull. If you combining your Goggles with a night vision potion, a golden carrot and a lighter inside the Tinkers Table you get Night Vison Goggles.\n\nHint:\nAutorepair can be added to the goggles aswell.\nEvery Armor have 3 slots for modofication."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Built":1,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Night Vision":1,"Built":1,"Tooltip1":"Night Vision","Effect1":0,"ModifierTip1":"Night Vision","ModDurability":0,"DamageReduction":0,"Broken":0,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""},{"id":"minecraft:potion","Count":2,"Damage":8198,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1783,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"Moss":3,"Tooltip1":"Perfect Dodge","Tooltip2":"Stealth","ModifierTip3":"Moss","Effect2":1,"ModifierTip2":"Stealth","Effect1":0,"ModifierTip1":"Perfect Dodge","Effect3":4,"ModDurability":0,"DamageReduction":0,"Broken":0,"Perfect Dodge":1,"Stealth":1,"Tooltip3":"Auto-Repair","MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Vest upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You vest can be equiped with a few modification like perfect doge and stealth.\nPerfect doge mean you're harder to hit and can be stacked up to 3 times.\nStealth turn you invisible while sneaking.\n\nHint:\nAutorepair can be added to the vest aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"Tooltip1":"Perfect Dodge","Effect1":0,"ModifierTip1":"Perfect Dodge","ModDurability":0,"DamageReduction":0,"Broken":0,"Perfect Dodge":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:potion","Count":2,"Damage":8206,"OreDict":""},{"id":"minecraft:ender_eye","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1784,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Double-Jump":1,"Built":1,"Moss":3,"Tooltip1":"Feather Fall","Tooltip2":"Double-Jump","ModifierTip3":"Moss","Effect2":0,"ModifierTip2":"Double-Jump","Effect1":1,"ModifierTip1":"Feather Fall","Effect3":4,"ModDurability":0,"DamageReduction":0,"Broken":0,"Feather Fall":1,"Tooltip3":"Auto-Repair","MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Wings upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wings can be equiped with a few modification feather falling and double jump.\nFeather fall means allow you to glide down slowly in air.\nDouble Jump means you jump while in the air to jump again.\n\nHint:\nAutorepair can be added to the wings aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Tooltip1":"Feather Fall","Effect1":1,"ModifierTip1":"Feather Fall","ModDurability":0,"DamageReduction":0,"Broken":0,"Feather Fall":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1785,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Tooltip1":"Haste","Effect1":1,"ModifierTip1":"Redstone (500/500)","ModDurability":0,"Broken":0,"Redstone":[500,500,1],"MiningSpeed":500,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":500}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Gloves upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Putting redstone on my weapon makes it faster. So why don't I put it on my hands directly!\nIt will be increases the mining speed.\n\nHint:\nEvery Armor part have 3 Slots for modification.\nGloves have 4."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_block","Count":55,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Tooltip1":"Haste","Effect1":1,"ModifierTip1":"Redstone (500/500)","ModDurability":0,"Broken":0,"Redstone":[500,500,1],"MiningSpeed":500,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":500}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:slime.pad","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1786,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Moss":3,"Tooltip1":"Slimy Soles","Tooltip2":"Water-Walking","ModifierTip3":"Moss","Effect2":1,"ModifierTip2":"WaterWalk","Effect1":3,"ModifierTip1":"Slimy Soles","Effect3":4,"ModDurability":0,"DamageReduction":0,"WaterWalk":1,"Broken":0,"Tooltip3":"Auto-Repair","MaxDefense":6,"Damage":0,"Slimy Soles":1,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Shoes upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You shoes can be equiped with a few modification like water walk, double jump, lead boots or slimy shoes.\nWater walk mean to allows you to walk over water.\nDouble jump means to jump while in the air to jump again.\nLead Boots mean to allows you to walk under water, prevents you from swimming and Blub.\nSlimy Shoes means to dampens the fall impact and reduces fall damage that you taken.\n\nHint:\nAutorepair can be added to the shoes aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Tooltip1":"Water-Walking","Effect1":1,"ModifierTip1":"WaterWalk","ModDurability":0,"DamageReduction":0,"WaterWalk":1,"Broken":0,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:iron_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1787,"preRequisites":[213,1412],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15481,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lData Reader","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Assembly Line recipes are a pain in the A*****.\nScanning the item, printing it and make a book from it is a long process and the book recipe contains only text.\nWhy not using the Data reader from Tec Tech?\nIt shows up the recipe in Nei."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32740,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15481,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1788,"preRequisites":[1116],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unlocking bee breeding lines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No Description"}},"tasks":{},"rewards":{}},{"questID":1789,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_door","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lFactory Iron Door","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new Factory you need iron doors. Well the recipe is realy hard and need steel. \nYou can choose two more doors as reward if you like."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:iron_door","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:iron_door","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stone_button","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1790,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lWooden Door","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new House you need more wooden doors. Well the recipe is realy hard and need iron/copper and a lot of wood. \nYou can choose two more doors as reward if you like."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:planks","Count":4,"Damage":0,"OreDict":"plankWood"},{"id":"minecraft:trapdoor","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:wooden_door","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_pressure_plate","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1791,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":878,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lOilsand or how you get heavy Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oilsand is an other way to get oil, heavy oil. Maybe you lucky and found in a dessert biome a oilsand vein. With your centrifuge ou are able to get heavy oil and sand blocks out of the ore.\nThe veins can be found between Y level 50-80."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":878,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:berryMedley","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberrypieItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:carrotsoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1792,"preRequisites":[531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":321,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lI guess it is an inkjet?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you use the seismic prospector, you'll need a scanner and a printer to create the books full of tasty ores and delicious fluids.\n\nUse ink sacs in a fluid extractor to get squid ink. Move using a tank or universal cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":321,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:dye","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1793,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Ztones:cleanDirt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better dirt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With an Assembler and some seedoil, you can turn dirt and sand into Garden Soil. This optimal soil does not require water nearby and crops do not break when you fall on it. It can turn into dirt if you run on it, so be careful. You might want to investigate the Slow Building Ring in Building Better Bases."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Ztones:cleanDirt","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Ztones:cleanDirt","Count":48,"Damage":0,"OreDict":""}]}]},{"questID":1794,"preRequisites":[1541],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32762,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Even more stats","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the portable scanner, you can get the crop's stats and environmental info while it is still in the ground. Look for the portable scanner quest after the EBF in Multiblock Goals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32762,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Nickelback","scan":4,"growth":5,"resistance":5,"gain":5},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1795,"preRequisites":[1601],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32531,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Metals from the Sky","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can even create metals not found on Earth using crops! You'll need the proper metal block beneath the crop in order for them to fully mature."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32521,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32522,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32531,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32532,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Stargatium","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Quantaria","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"gregtech:gt.blockores","Count":4,"Damage":2317,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1796,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Gallium and Arsenic sources","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of ways to increase your Gallium.\n\n1. Use IC2 crops under the Farming tab to get Galvania leaves, to 4x your zinc and sphalerite crushed ores to purified ores.\n\n2. Use the HV macerator on the centrifuged ores to get a 10 percent chance of a whole Gallium dust.\n\n3. Use plentiful Bauxite ores from the Moon.\n\nFor Arsenic, Cobaltite ore in the Twilight Forest is a great source. It can be multiplied 4x by the IC2 crop Nickelback."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1797,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"New threads","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of killing spiders for string? Grow some flax for an easy non-biting source of string.\n\nYou can also directly place Cotton seeds on cropsticks to grow cotton that way. With some Corium in the next quest, you can get easy tanned leather."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Flax","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1798,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The ground is crying","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need an alternate source of Chlorine? Breed some Tearstalks to get Ghast Tears for making salt water.\n\n;-;\n\nNether warts should yield tearstalks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Tearstalks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ghast_tear","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1799,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blazes too hard to kill?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Then grow some blazereed to save yourself the trouble.\n\nTearstalks should easily yield blazereed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Blazereed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:blaze_rod","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1800,"preRequisites":[1809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A girl's best friend","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need to impress a lady? How about growing diamonds on reeds?!?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Diareed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1801,"preRequisites":[1933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why does my plant bawk like a chicken?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Because it can lay eggs!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Eggplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:feather","Count":512,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1802,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vegan, but still want to eat meat?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Instead of killing animals, just mutate some crazy GMOs into making animal products for you. Science!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corium","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Meatrose","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corpseplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beef","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:fish","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:porkchop","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1803,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemNugget","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magical Metal Berry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"..is obviously the name of my cover band. But also a great crop for Thaumium or Void metals. Requires a block of iron or thaumium to get thaumium, and void metal block to get void metal. Like other ore berries, it only grows in dim light. Any oreberry should have a decent chance of yielding this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Magic Metal Berry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1804,"preRequisites":[1803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Other magic flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Other magical flowers are possible such as shimmerleaf, mandragora, wolf's bane, and more."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1805,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockgranites","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Stonelillies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stone lillies allow you to get dusts without having to look for granites, basalt, or marble. Great renewable way to get calcite, fluorine, or bulk aluminium (and a tiny bit of uranium).\n\nThese require the original block directly beneath them to grow properly.\n\nThere is also a Grey stonelilly for stone dust (who needs more of that??) and a Yellow stonelilly for sand or Endstone dust. Handy for the clever chemist!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Red Stonelilly","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"White Stonelilly","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Black Stonelilly","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Yellow Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1806,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of different glowstone crops - glowflower, glowing earth coral, and glowshrooms. Nether wart is a great source of these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowshroom","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowing Earth Coral","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowflower","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glowstone","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1807,"preRequisites":[1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Leaves of steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, steel leaves anyways. Instead of grinding Twilight Forest for steel leaves, grow a crop in peace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Steeleafranks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2339,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1808,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:fertilizerBio","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plants that make their own fertilizer?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sign me up! This plant will create fertilzer ingredients for you. \n\nDecent plants to cross to get Fertilia are spidernip, venomilia, or zomplant. Watch out for venomilia though, not only is it poisonous, it also promotes weed growth!\n\nYou can make Forestry fertilizer with the drops from this plant in a mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Fertilia","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""}]}]},{"questID":1809,"preRequisites":[1927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:HoneyDrop","Count":1,"Damage":2000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Renewable oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oil from crops? Makes as much sense as oil from bees!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Oilberries","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1810,"preRequisites":[1187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boost your speed v 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High speed transition and booster tracks get your carts moving at really ridiculous speeds. Do not use normal track without several transition tracks or else your cart will explode. Do not try turning at high speed or, you guessed it, your cart will explode."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":8,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.transition"},"Damage":26865,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1811,"preRequisites":[1874,989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":131,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEven LARGER tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"4000 buckets not enough storage? Stockpiling diesel for a lifetime? Try a Super Tank 2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":131,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1812,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30667,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTeflon Don","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make PTFE, aka Teflon, you only need a few steps. \n\nThe first one is hydrofluoric acid. If you have not reached the moon yet, the best sources for fluorine are hammering sandstone for a chance at fluorite and centrifuging stone dust or black granite dust for biotite. You can also get small amounts from Lepidolite in salt veins and Mica. Mix it with some hydrogen to get hydrofluoric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30014,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30667,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":110,"Damage":2848,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1813,"preRequisites":[1812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30668,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChloroform","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next step is to mix methane and chlorine to make chloroform. Make sure you have your circuit set correctly.\n\nNow is probably a good time to look at stockpiling chlorine. Look for salt ores, or lapis veins. You can also make salt water with ghast tears. Better get started with IC2 crops, you will need a lot of chlorine later!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30668,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":944,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1814,"preRequisites":[1813],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11473,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTetrafluoroethylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Liquid hot plastics smell great, don't they? Mix your hydrofluoric acid and chloroform to make tetrafluoroethylene. React the TFE with oxygen to make molten PTFE. Finally a fluid solidifer will make bars for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30667,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30668,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30666,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":11473,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32408,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1815,"preRequisites":[1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":132,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHow much is too much fluid?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There is no limit to how much fluid you might want to store. Make yourself some super tank III's for all your bulk storage needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":132,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":32670,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1816,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":823,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Calcite getting you down?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having a hard time finding that Lapis vein for some calcite? I'll trade you some for your hard earned coins and some stone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":823,"OreDict":""}]}]},{"questID":1817,"preRequisites":[477],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #7: Upgrade tier 8 - Electrum Flux Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the more advanced materials like Cosmic Neutronium, Tritanium and Awakened Draconium you need more than 9000K. Upgrade your EBF to 9900k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1818,"preRequisites":[1333,216],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Essentia Generator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having one Essentia Generator per Essentoia type seeems unpracticable.... Better make a Large Essentia Generator and burn all this Essentia in parallel! As another Bonus, this Generator produces 20x the Energy a Single Block Machine will produce. You might need more Magic Containment Casings than this Quest asks for."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13000,"OreDict":""},{"id":"EMT:EMTMachines","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12988,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":25,"Damage":95,"OreDict":""},{"id":"EMT:EMT_GTBLOCK_CASEING","Count":50,"Damage":1,"OreDict":""},{"id":"EMT:EMT_GTBLOCK_CASEING","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIV","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Avaritia:big_pearl","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32088,"OreDict":""},{"id":"Thaumcraft:blockEssentiaReservoir","Count":32,"Damage":0,"OreDict":""},{"id":"thaumicenergistics:storage.essentia","Count":2,"tag":{},"Damage":3,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":16,"Damage":2,"OreDict":"ingotIchorium"}]}]},{"questID":1819,"preRequisites":[1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCircuit Programmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Circuit Programmer is a useful tool that will enable you to program integrated circuits without having to deal with 24 different crafting recipes. Just charge it, put the Integrated Circuit in it and click on the Number you want it to be programmed to."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.BWCircuitProgrammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1820,"preRequisites":[1241,1480],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":64,"Damage":12600,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lLapotronic Energy Storage Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The L.E.S.U. is one of the oldest Machines that are aviable in Gregtech, its origins are in Minecraft 1.3.X, now its redone to fit into this Modpack. You can add a nearly infinite number of LESU casings to it and you'll have a hughe Energy Storage. You might also live inside your Battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12600,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.blockores","Count":128,"Damage":526,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1821,"preRequisites":[747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12634,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCable Diodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you just need a Diode, either to prevent reflow in your complex Energy System or on Thermos Server's Chunk borders. Make one 4A Diode and get a 2A one for free!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12618,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1822,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_Machinery_Casings","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lManual Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Annoyed by building Chains of transformers? Dont want an Explosion Risk at your base? Want to use these fancy 64A Hatches and Dynamos from TecTech to convert your power? Make a Manual Dynamo and convert it all!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12697,"OreDict":""},{"id":"bartworks:BW_Machinery_Casings","Count":1,"Damage":0,"OreDict":""},{"id":"bartworks:BW_Machinery_Casings","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":44,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":7,"OreDict":""}]}]},{"questID":1823,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:gt.GT2Destructopack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMobile Trash Can","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GT2's Destructorpack is a mobile Trashcan. Might be handy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.GT2Destructopack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1824,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:item.GT_Rockcutter_Item_LV","Count":1,"Damage":37,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRock Cutter LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Rock Cutter is an unbreakable and Silk-touched Mining Device. It will enable you to mine blocks without damaging them, like glass or stone, while it is charged."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:item.GT_Rockcutter_Item_LV","Count":1,"Damage":37,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1825,"preRequisites":[1820],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemDustSmall","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - LV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Adding this much Cells anywhere to your LESU will upgrade it from ULV to LV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemDustSmall","Count":1,"Damage":9,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":4,"OreDict":""},{"id":"IC2:itemToolPainterBlue","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1826,"preRequisites":[1825],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - MV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Adding an additional ammount of Cells will not only cause your storage capacity to rise, but also will enable MV Voltage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":12}},"Damage":12,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1827,"preRequisites":[1826,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPlates","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - HV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV Tier upgrade first needs over a Stack of Casings. More Casings, more Energy, more Capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":96,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32438,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1828,"preRequisites":[1827,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:genericSlab","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - EV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Close to 8 Stacks of LESU Casings, this upgrade enables EV Voltage on your LESU. It's easy until now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":477,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""},{"id":"ThaumicHorizons:focusIllumination","Count":1,"Damage":12,"OreDict":""},{"id":"thaumicbases:genericSlab","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1829,"preRequisites":[1828,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - IV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"24 Stacks of LESU Casings. These do fit in your Inventory, but crafting them is another problem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":1536,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":30,"Mate":{"Chromosomes":[{"UID1":"extrabees.species.lapis","UID0":"extrabees.species.lapis","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.lapis","UID0":"extrabees.species.lapis","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1830,"preRequisites":[1829,1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Avaritia:Singularity","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lL.E.S.U. Upgrade - LuV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach the highest Voltage Tier the LESU can offer, you need to add an additional amount of LESU Casings. 8193 Casings in total (all upgrades below and these additional) enable the LuV Input Voltage. To submit these you'll need to use the Submit Station from the Steam Tab, since your inventory isnt big enough to hold 96 Stacks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":6144,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""},{"id":"supersolarpanel:SingularSolarPanel","Count":1,"Damage":0,"OreDict":""},{"id":"Avaritia:Singularity","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1831,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCircle Shapes give me comfort","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To build a Windmill you will need a Dispenser, but that item is locked behind the next Tier. Go and find one in a Witchery Circle. They look like small versions of Stonehenge.\n\nLook for the main quest in Multiblock Goals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31032,"OreDict":""}]}]},{"questID":1832,"preRequisites":[48,1831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_PaperRotor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lGrinding with Wind","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Windmill is a grinder that uses the force of wind to macerate Items and Blocks. It is pretty slow and won't macerate ores well. You will only get one crushed Ore from it. However it does give you a bonus when you try to macerate other things. That bonus depends on the Item inserted, for example Netherrack has a chance to give two instead of one dust and Wheat will always give one and a quarter flour.\n\nThe dispensers replace a clay block in the walls. Put anything you like in the interior - a bed, stairs, torches, etc.\n\nNormal multiblock rules apply - do not cross chunk boundaries with this multiblock.\n\nIf this is your first Gregtech multiblock, as with all the rest you will need to whack the controller with a softhammer to activate it.\n\nIf you have troubles forming the multiblock, try breaking and replacing the controller block.\n\nThe controller can be fed items via hoppers etc to allow for larger batches. Just don't allow the dispenser to fill up or it will void outputs.\n\nThe rotor blades will run if the controller is disabled or has no recipe. Remove the blades when not in use or else they'll be used up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:brick_block","Count":44,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:hardened_clay","Count":45,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31032,"OreDict":""},{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28032,"OreDict":""},{"id":"bartworks:craftingParts","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"bartworks:BWRotorBlock","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12698,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31032,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:leather","Count":12,"Damage":0,"OreDict":""},{"id":"minecraft:carpet","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:paper","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1833,"preRequisites":[1817],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #8: Upgrade tier 9 - Awakened Draconium Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the most advanced materials like Infinity Catalys or Infinity need more than 9900K. Upgrade your EBF to 10800k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIV","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1834,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mushrooms","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMushroom Biomes ? why there so many?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GNTH pack is made for the rwg worldgen. If you run the vanilla biomes worlgen you get huge Mushroom biomes over the map. Go and generate a new world before you continue this one. If you run a server put this inside your server.properties file.\n\n§5 §5§4§3§2§3§b§4§3§2§3§4§5§l\"level-type=rwg\"."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WitchingGadgets:item.WG_MagicFood","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1835,"preRequisites":[128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":921,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTantalum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tantalum is used in the GT and Ender IO Capacitors and also a source for niobium. It is a cheap essentia source for Thaumcraft later on.\nYou will find Tantalite Mix at Y 20-30 on the Overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":921,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":838,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":943,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":831,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:celerysoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":26080,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1836,"preRequisites":[665,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:mortarandpestleItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kitchenware 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gregtech tools like the knives get used up when crafting foods. Pams Tool like the Cutting Board, Juicer or the Bakeware can last forever.\n \nAfter you reach stainless steel in HV you can make these forever tools."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:juicerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:bakewareItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:mortarandpestleItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:cuttingboardItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:presser","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:churn","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:oven","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:quern","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1837,"preRequisites":[1158],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodPick","Count":1,"tag":{"ench":[{"lvl":1,"id":32}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ardite and Cobalt Mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood is much harder and durable material than you imagined at first. Making Tools and Armor give them very unique features. With a Pick you can mine at cobalt Level which means you can harvest ardite and cobalt without a EBF."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodIngot","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodPick","Count":1,"tag":{"ench":[{"lvl":1,"id":32}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1838,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:tile.TFSapling","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Low on Sticks?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stay in the Twilight Forest you will find the Canopy Tree. This big tree generates a lot of logs for your Coke ovens and some roots when planted which give sticks. Be careful that no building or chest right beside or above the Tree otherwise the Tree replaces it. You might find a use for this, to sinfully get above a ceiling you really shouldn't."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFSapling","Count":16,"Damage":1,"OreDict":""},{"id":"TwilightForest:tile.TFFirefly","Count":4,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFLog","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1839,"preRequisites":[1158,1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodPlate","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood Armor is a magic armor with some special enchants. The Helm gives aqua afinity, the shoes feather falling, the plate and the legs extra protection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodHelm","Count":1,"tag":{"ench":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodPlate","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodLegs","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodBoots","Count":1,"tag":{"ench":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.ironwoodSword","Count":1,"tag":{"ench":[{"lvl":1,"id":19}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodAxe","Count":1,"tag":{"ench":[{"lvl":1,"id":35}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodShovel","Count":1,"tag":{"ench":[{"lvl":1,"id":34}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1840,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:saltItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spice up with some salt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will need massive quantities of chlorine for future plastics. There are underground salt water deposits on the Moon, Mars, and Europa. Use a seismic prospector to locate one and build the Underground Fluid Drill from multiblock goals to extract."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1841,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMoron's Manual for Massacring Monsters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have not noticed, this world is a true hellscape full of Special Mobs and Infernals around every corner. Unlike vanilla, a player has to actually stay aware and pay attention to what they are fighting. Here are some tips.\n\nIf an infernal has Vengeance, don't shoot it with your 56 damage crossbow!\n\nA high health infernal with regeneration is hard to kill. Even worse if it is a witch that can also heal itself. In those cases, run like hell, or bring a soul vial to capture it and throw it into Mount Doom. \n\nWatch out for zombies with fishing poles - they can pull you into them. And zombies with a bow and arrow - they can shoot you back!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1842,"preRequisites":[1841],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gunpowder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCreeping dread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creepers can cause the worst problems. \n\nDrowning Creeper - when it explodes, it surrounds you in a ball of cobble filled with water. Not only do you have to escape, but the cobble is infested with silverfish! And those silverfish are all infernal as well. The best way to deal with it is to first escape up or down. If you have to clear the cobble ball, first clear the water. Surrounding the cobble with a dirt moat will keep the silverfish inside and unable to hide. Put down punjis, quicksand, or lava, and/or spectral glass. Make a wall with a 1x1 window and use that to break the cobbles - fishing silverfish are especially dangerous.\n\nEnder Creeper - Randomly teleports you a short distance - possibly deep underground. "}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1843,"preRequisites":[1842],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCaught in the web","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spiders to watch for...\n\nWitch spiders reflect missile damage back at you. Look for the red X on their back, and draw your melee weapon and prepare for close combat.\n\nMother spiders will spawn a lot of baby spiders, some of which may be infernal.\n\nA flying spider can grab the oblivious flyer.\n\nGhost spiders are partially invisible and can pass through thin walls."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1844,"preRequisites":[1843],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lPorkchops with attitude","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The only zombie pigman to watch out for is the Vampire Pigman. He hardly takes any damage unless you use a wooden sword as a stake or have a magical sword."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:porkchop","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1845,"preRequisites":[1843],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFlaming idiots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Blazes are all infernals, and all nasty. Avoid like the plague. Get awesome weapons, awesome armor, and prepare for a fight. \n\nAlternatively, figure out a way to destroy them with technology.\n\nAlternative to the alternative, figure out another way to get blazepowder and blaze rods."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:blaze_powder","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1846,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:floodGateBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFilling the world with fluids...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need to make a lake? Look no further than the Flood Gate. It will fill the world with any fluid you provide it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BuildCraft|Factory:floodGateBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1847,"preRequisites":[861],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:spectreKey","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPortable hole? How about portable chunk!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With further research, I've discovered a key made of spectral iron can open a portal into a pocket dimension. It's only one chunk wide and quite short, but you can increase the height by adding more ectoplasm to the spectre core in the room. Perfect for retrieving ores from far planets, or as a quiet refuge."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:spectreKey","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1848,"preRequisites":[692,78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:spectreHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor of the Dead","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've found another use for Ectoplasm - making Spectral Iron. An armor made from it is better than diamond and highly enchantable.\n\nIt also will drop healing orbs that will heal the nearest player when picked up. \n\nUnfortunately, a side effect is that you'll become partially transparent. Side effect, I mean bonus feature!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:spectreHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1849,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:oak_stairs","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lTell me when we reach 20","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jumping up and down everywhere is exhausting, and makes you really hungry. To reduce your food depletion, make stairs instead of jumping."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:oak_stairs","Count":8,"Damage":0,"OreDict":"stairWood"},{"id":"minecraft:stone_stairs","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ladder","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""},{"id":"harvestcraft:suaderoItem","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1850,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:fan","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll we are is dust in the wind","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Looking for an alternative to flowing water for your mobfarm? Tired of getting poked walking through your fields of oreberries? Use a fan to blow mobs or items where you want. Apply a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:fan","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1851,"preRequisites":[1831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_SimpleWindMeter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lStick a finger in the air","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But you really do care. Trying to find a good place to locate a windmill? You could just build one and see, or try this fancy windsock.\n\nPaper rotors are great in low winds.\nWool rotors are cheap.\nLeather rotors are durable.\n\nDon't leave the rotors in the windmill when you aren't using it, it will use up durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:BW_SimpleWindMeter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":5,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":4,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1852,"preRequisites":[1851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_LeatherRotor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAround and around she goes...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...But she'll never stop because you'll always have something to grind. You can use a hopper to keep the windmill full of items to process. Just remember to retrieve them from the dispensers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:BW_CombinedRotor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":1,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"minecraft:hopper","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1853,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMoron's Manual for Effective EBFing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to the latest Moron's Manual, Effective EBFing!\nThis manual covers common problems encountered when using the GregTech 1000 Electric Blast Furnace.\n\nSetup\nWhen setting up your EBF, make sure to place it a few chunks away from where you will spend most of your time. Pollution is nobody's friend!\n\nDuring setup, make sure the center of the EBF is hollow. Sometimes things can sneak in there without you noticing, like a Thaumcraft light orb!\n\nMake sure your muffler faces *out*, not *in*. The EBF can't work if it is not spreading those delightful odors!\n\nWhen placing your power hatches, make sure to minimize the distance between any generators and the EBF. Especially at LV, those few meters make a big difference! Every amp of energy travelling over a cable loses a little bit - and you'll need as much as you can get!\n\nOutput hatches and buses will automatically push into tanks and inventories placed next to them. They will also void if they are full, so keep an eye on them!\n\nWhen build multiple EBFs, the GregTech 1000 Electric Blast Furnace can share walls. This can save you on input and output hatches too. Not recommended for energy and maintenance hatches!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2305,"OreDict":""}]}]},{"questID":1854,"preRequisites":[636,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:applejellysandwichItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Just like Mom used to make","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jelly sandwiches are a great food source with decent saturation and easy to make. Almost any fruit can be converted to jelly with sugar and a saucepan. There are a few different nut butters available. Peanuts can be found in Ground Gardens in forest, mountain, or taiga style biomes. Cashews are trees located in jungles or swamps. Chestnuts can be found in warmer forests. Pistachios can be found in jungles. Many of these saplings are also available for trade from villagers.\n\nUse a Forestry Worktable to keep all your recipes together in one spot for easy crafting.\n\nSome sandwiches have better saturation than others, so be sure to check before buying that sapling!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:saucepanItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:applejellyItem","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:bread","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"harvestcraft:applejellysandwichItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cherryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:blackberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:watermelonjellysandwichItem","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1855,"preRequisites":[637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I like big sandwiches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have dough, there are several options for large sandwiches. They offer great saturation restoration and are easy to make.\n\nThe veggie and cheese options aren't quite as good and need more work to produce.\n\nThere are also normal sized varieties of these sandwiches if you need more diet choices."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32565,"OreDict":""},{"id":"minecraft:cooked_porkchop","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32244,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32243,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32241,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32242,"OreDict":""},{"id":"dreamcraft:item.CoinCook","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1856,"preRequisites":[469,444],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:blueberrysmoothieItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lStaying cool in the heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you happen to be near a snowy biome, you can harvest the snow to make delicious smoothies. They are better than eating the berries directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":4,"Damage":1,"OreDict":""},{"id":"minecraft:snowball","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1857,"preRequisites":[637,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:chickenpotpieItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"No chicken escapes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you like pies? I sure do! There are many varieties of pies available for you. The chicken pot pie is one of the easiest to make. Just a chicken, potato, carrot, and some dough. The fruit pies are a little simpler, so don't quite restore as much saturation, but are great for filling tummies while you wait for the best foods to wear off."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:chicken","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32559,"OreDict":""},{"id":"minecraft:apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:chickenpotpieItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:applepieItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:cherrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberrypieItem","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1858,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMagnet","Count":1,"tag":{"Energy":100000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMagnetic personality","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you haven't received one in a lootbag already, you can craft a nice magnet with a vibrant crystal. It doesn't work great on servers if you are moving around too fast, but it makes harvesting crops a lot easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMagnet","Count":1,"tag":{"Energy":0},"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1859,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Need some leather?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some leather with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1860,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Need some wool?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some wool with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wool","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1861,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Buy some eggs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some eggs with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:egg","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1862,"preRequisites":[1542,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine3","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Robotic crop pickers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crop Harvester will pick your crops for you, which is great. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockMachine3","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1863,"preRequisites":[579],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:dropFilter","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThrowing out the trash","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Already have barrels full of cobblestone? The voiding drop filter can be setup to automatically void any item on pickup. Cobble, dirt, arrows, saplings,etc. It's handy for when you don't have much room for junk.\n\nTo use, rightclick the RT item filter in-hand. Put the things you want voided in the item filter list. Rightclick the voiding drop filter, and put the item filter inside."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:dropFilter","Count":1,"tag":{"Inventory":{"Items":{}}},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"berriespp:BppPotions","Count":1,"Damage":8,"OreDict":""},{"id":"RandomThings:filter","Count":1,"tag":{"metadata":1,"oreDict":0},"Damage":1,"OreDict":""}]}]},{"questID":1864,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNo self-healing tools here...yet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Experienced players might be confused by finding the Tinker's Construct Ball of Moss in NEI without a recipe. \n\nIt is possible to craft it, but on this world you have to first gain expertise in Thaumcraft. Go and become a dangerous wizard and you'll gain the power needed to craft the Ball of Moss and make your tools indestructible.\n\nThe Ball of Moss is in the GTNH tab of the Thauminomicon.\n\nIn general, if an item does not have a recipe, it might be gated by Thaumcraft. NEI will not show the recipe until you have unlocked it.\n\nHave a beer to prepare for your long journey."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32119,"OreDict":""}]}]},{"questID":1865,"preRequisites":[97,745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEnderman Smelterman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need enderpearls? Getting them by killing endermen can be dangerous. Instead of doing that, put an enderman into a smeltery with hot fluids and use a gem cast to get guaranteed pearls. \n\nHigher the hit points, the more pearls you get. If you can find a regenerating enderman, or an enderman spawner, you'll have all the pearls you would ever want. Later on with EnderIO you can even create your own powered spawner to make endermen on-demand.\n\nUse a nametag on a regenerating enderman to make sure he doesn't despawn. You'll want to keep him from seeing the sky or else he'll teleport away.\n\nIf you haven't found a regen enderman yet, you can buy enderman spawn eggs to put into your smeltery with coins. Maybe you'll get lucky and get a regenerating one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:name_tag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1866,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lOptions for finding aluminium at this age","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It can be hard to find aluminium gravel ores on old servers, or unlucky world seeds. Alternative to aluminium gravel ores are\n\n- Planting the Aluminium ore berries from the Smeltery quest\n- Searching for Aluminium bars in chests\n- XP buckets\n\nOnce you reach LV, you can electrolyze Sapphires and get tiny dusts from processing various ores. \nAt MV you can use clay dust or red granite dust.\nCheck NEI."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2019,"OreDict":""}]}]},{"questID":1867,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Motor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most machines in MV need a motor as well. If you have not built a polarizer already, go back to Tier 2 Quests and craft one. Motors need magnetic steel rods and alu rods, 2x cupronickel wires and copper cables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23355,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":23019,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1341,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1868,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32063,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUltra Low Power IC","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"MV Energy hatches need ultra low power ICs. Go and craft some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32062,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32063,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24542,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1869,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1116,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHydrogen, methane or some farts... (Natural gas) MV ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some centrifugal processes leave gases behind like hydrogen or methane. Centrifuge some brown and yellow limonite to get hydrogen or dump your unused food in a centrifuge to get methane gas. Wood will even give 60 mb per log. Maybe it's time to build a forestry tree farm. You can also setup a Benzene based operation (see quest to the right). Or you can start refining oil into refinery gas or naphtha to burn.\n\n§4Gas turbines produce half the pollution of combusion generators, but their fuels are generally not as efficient. Choice is up to you which power source you use.\n\nMV Gas Turbines have a 90 percent fuel efficiency."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1116,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30742,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1870,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiesel, oil or maybe creosote? MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably collected a ton of creosote and maybe even have built your first Electric Blast Furnace. Creosote will be a good fuel for the moment. So try to build a few of the combustion generators and use them besides steam as a secondary power source. Small generators will only use fuel if there is EU demand.\n\n§4Advanced Combustion Gnerators have a 90 percent fuel efficiency.\n\nThis will also unlock new quests in the Armors and Jetpacks tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30707,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1871,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32670,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lField Generator I","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field Generators are powerful devices. It will be used in high tier Tanks, Chests, in UU Matter Production or in Teleporters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32670,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17532,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1872,"preRequisites":[847],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30650,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lVinyl Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vinyl Chloride is the base product for making PVC for advanced pipes. These Pipes are needed in LuV machines or the Hermetic Casings for Super Tank II's."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30650,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1873,"preRequisites":[1872],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.99","Count":1,"Damage":649,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lPoly Vinyl Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polyvinyl Chloride is PVC which can be used for the PVC Pipes.\nYou need Vinyl Chloride and Oxygen to make it.\nYou'll also want it for SMD capacitors later.\nDo the recipe twice if you want to clean out your reactor.\nCells carrying molten polyvinyl chloride carry 144L, perfect for 1 ingot or plate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30650,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":62,"Damage":649,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1341,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30023,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1874,"preRequisites":[1873],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17649,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lPVC Sheets","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"PVC Sheets make good item pipes, and can also be used for circuit boards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":17649,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5692,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":16,"Damage":649,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1875,"preRequisites":[1099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:soulBrazier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A soul-ution for warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Soul Brazier from Thaumic Exploration will store your permanent warp. \n\nAs long as it has Ignis centi-vis and Mortuus essentia fed from underneath it will stay active, even while you are in other dimensions. Turning it off or running out of power will dump all that warp back into your body, so watch out.\n\nContaining warp does have a bit of a downside - taint. You'll need to figure out a way to stop that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:soulBrazier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":64,"tag":{"Aspects":[{"amount":8,"key":"mortuus"}]},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1876,"preRequisites":[1906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":473,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lAdvanced Amplifabricator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get UU Amplifier out of you scrap you need an Amplifabricator. You can't make UU Matter before HV so its a good time to start with it now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":473,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30721,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemScrapbox","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1426,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1877,"preRequisites":[1876],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":461,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUU Matter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next you will need a Mass Fabricator to make UU matter. This matter can be used make more things.\n\nThe downside is you can't build an HV one right now. Build an LV one and power it with 8 amps of LV to get your first UU matter. Watch your voltage levels and currents!\n\nIf you do not have a field generator, go do the tetrafluoroethylene quest and build some. \n\nFor now, just stockpile the UU matter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":461,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30721,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"EnderIO:blockTank","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1878,"preRequisites":[1248],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32707,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lData Orbs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Data Orbs are high tier data sticks to replicate materials or used as data storages."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32082,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32707,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32033,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1879,"preRequisites":[1880],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":484,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lCreate new material out of pure energy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Replicate material out of pure energy. Scan your elements first, like Hydrogen, Iron, Gold etc, and save them on a Data Orb. Later on you can use your replicator to copy this item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32707,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":482,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1880,"preRequisites":[1878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32671,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lField Generator II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field Generators are powerful devices. It will be used in high tier Tanks, Chests, in the Matter Production or in Teleporters.\nThe replicator needs it also. If you have not unlocked Tungstensteel go and do that now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32671,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1881,"preRequisites":[21],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:clay_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Clay for pennies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hard to find that clay? Have a stack for some coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1882,"preRequisites":[945],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2879,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Tired of grinding reeds?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I can trade you some chads for coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":50,"Damage":2879,"OreDict":""}]}]},{"questID":1883,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":36000,"globalShare":1,"questLogic":"AND","name":"Glassy eyed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...from all the mortars you have to use to make glass dust? Have some for trade."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2890,"OreDict":""}]}]},{"questID":1884,"preRequisites":[1009],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Shhh, don't tell 0lafe...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But here is a nice quest to get cheap fish catchers!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:cooked_fished","Count":40,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:blockFishTrap","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1885,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockCrop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Wood for sheep?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No thanks! But how about some crop sticks for coins and logs?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":1,"Damage":0,"OreDict":"logWood"},{"id":"dreamcraft:item.CoinAdventure","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1886,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFertilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Manure for fertilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I mean, what else are you going to do with this junk?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:spider_eye","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:rotten_flesh","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:dirt","Count":64,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":128,"Damage":0,"OreDict":""}]}]},{"questID":1887,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectric Furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This quest was suggested by Shawnbyday. If you have a lv machine hull, two circuits and a few cables spare just craft it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":261,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1888,"preRequisites":[534],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":64,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lRepairing your Hazmat Suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Be careful to wearing you hazmat suit all the time. The duarbility is not high. Even just falling a few blocks will damage the boots quickly. \nYou can repair your suit before you can craft a new one in late LV Age using some rubber sheets and a glue bucket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:buckets","Count":4,"Damage":25,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1889,"preRequisites":[160,600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12096000,"globalShare":1,"questLogic":"AND","name":"Healing Axe 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After party loot was limited to one loot per party not everyone can have a healing axe for free.\nGo and buy some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:delightedmealItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:rainbowcurryItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:epicbaconItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1890,"preRequisites":[1413,1705],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":215,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An IV asembler is required to make enriched Sunnarium for HV Solar Pannels . Other recipes are twice faster than with an EV assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":215,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1891,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDesh, Scheelite, Tungstate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is the material you need but first go find some desh scheelite and tungstate mix on Mars. Look at Y 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1892,"preRequisites":[1812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Fluorine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some fluorine? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30014,"OreDict":""}]}]},{"questID":1893,"preRequisites":[783,1894,1200],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32662,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFluid Regulator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Turbines require precise amounts of fluids or else they will explode. Use the fluid regulator on the pipe attached to the input bus to control the rate of fluids into the turbine. To raise the fluid limit, look at the right side of the regulator and:\n\n1L - Right click with an empty hand\n16L - Right click with a screwdriver\n256L - Right click with a screwdriver while sneaking\n\nTo lower the fluid limit, do the same while looking at the left side."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32662,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1894,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGas Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Large Gas Turbine is more fuel-efficient than singleblock turbines and can have lower pollution with upgraded mufflers.\n\nYou will also need a muffler, maintenance hatch, input hatch, and dynamo hatch. Don't forget a fluid regulator. It can be a low tier fluid regulator since the fluid/tick necessary is much less than steam.\n\nSelecting a rotor is pretty easy. Take the EU/t of your dynamo hatch, and select a rotor that has (optimal gas flow * efficiency) that is close. Now, setting up the fluid regulator is hard. The easiest way is to let in 1 L/t and use the hand-scanner to tell you the optimal flow rate. Otherwise divide the optimal gas flow by the EU/L of your gas and round down. \n\nFor example, if we are using a normal vibrant alloy turbine with 1800 EU/t optimal gas flow and 115 percent efficiency with benzene. \n1800/288 = 6.25\nRounded down that is 6L/t. 6 * 288 * 1.15 = 1987, perfect for an EV dynamo.\nOther gases may output slightly higher or lower EU depending on how close to optimal they can reach. For example refinery gas\n1800/160 = 11.25\n11 * 160 * 1.15 = 2024, still OK for an EV dynamo\nHowever hydrogen at 20 EU/L is dangerous because\n1800/20 = 90\n90 * 20 * 1.15 = 2070, above 2048, so BOOOOM. You'll have to use a multi-amp dynamo hatch to prevent an explosion.\n\nOther useful turbine options at EV are normal ardite and galgadorian.\n\nFor additional choices, see the Large Turbine Calculator in Discord."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":29,"Damage":10,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1895,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Manganese Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can't find Manganese ore because its not generated early game and you need to grow your Pyrolusium crop? Buy some Ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":80,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":8,"Damage":31,"OreDict":""}]}]},{"questID":1896,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_Naquadahcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Fuel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to upgrade the Nuclear Reactor with Naquadah Fuel Rods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_Naquadahcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1897,"preRequisites":[1896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_MNqCell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadria Fuel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want MOX like behavior from Naquadah? You have to upgrade it to Naquadria!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_MNqCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1898,"preRequisites":[191],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumDual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDouble the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1899,"preRequisites":[193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDouble the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1900,"preRequisites":[1899],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1901,"preRequisites":[1898],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§l4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1902,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockFusedQuartz","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNo Boom Tomorrow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a nuke, you can cause some real catastrophic damage to your base. You can either place it 20 chunks away, or surround it with blast proof materials. Fused quartz is relatively cheap, and can be converted into a variant that glows, or a variant that blocks light. Make some fused quartz and I'll give you some enlightened fused quartz.\n\n§4Alternatives include Warded Glass from Thaumcraft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockFusedQuartz","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockFusedQuartz","Count":64,"Damage":2,"OreDict":""}]}]},{"questID":1903,"preRequisites":[770],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§e§9§lHV Energy Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV energy hatch is crucial to a fast EBF that can do high tier recipes. You will need to make He coolant cells or NaK coolant cells. Follow NEI to figure out how."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1904,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30004,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHelium is not just for balloons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Higher tier superconducting wires and energy hatches will require helium. Compressing air and liquifying it requires 1802 compressed air cells to get 1 He cell. It is better to make it from Endstone dust or Monazite from the Moon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1905,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1154,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLarge Heat Exchanger - Fermat's Last","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have discovered truly remarkable instructions for this machine which this margin is too small to contain.\n\n\n\n\nInstead, goto https://tinyurl.com/GTNH-LHE and read it there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1154,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1906,"preRequisites":[1014],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":333,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRecycle for the Environment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have too much wood, saplings, netherrack or other garbage recycle it and get scrap. You can use it for uu amplifier to make uu matter cheaper.\n\nCertain items such as cobblestone, stone, and tiny/small dusts are too easy to make and don't give any scrap. But otherwise any excess dusts or garbage you can throw in here to get scrap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":333,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemScrapbox","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1907,"preRequisites":[1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":135,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOne in a million","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or 4? Need to store ludicrous amounts of cobble? Stone dust? Saplings? Super chests are the thing to use. A simple Tier 1 Super Chest can store 4 million items, worry free. You will need to take items out manually 64 at a time, or use conveyors etc to extract them. \n\nSticking so many items in such a small space does come with a price - no more portability. You better be really sure this is where you want those millions of logs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":135,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1908,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:NetherFurnace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLucifer's little helper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With an alloy smelter and some netherrack dust you can make Nether furnaces, which are extremely efficient cooking machines. Very handy for someone needing a lot stuff furnaced in a jiffy.\n\nThe only downside is that iron furnaces can be used in the EBF later on. Nether furnaces cannot. Then again, Nether dust is practically free, so what's the loss? You can always use them to bake stacks of bread!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:NetherFurnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1909,"preRequisites":[1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":137,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHow much is too much cobblestone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A super chest III is just ridiculous. Who would possibly need to store 16 million items? You, that's who."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":137,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":32670,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1910,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":1650,"BaseDurability":32400,"BaseAttack":17,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":1650,"ModDurability":0,"MiningSpeedExtra":1800,"Shoddy":0,"RenderHandle":1650,"Accessory":1650,"MiningSpeed":1800,"Unbreaking":0,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":32400,"MiningSpeed2":1800,"HeadEXP":0,"Head":1650,"Attack":17,"Handle":1650,"Broken":0,"Extra":1650,"RenderAccessory":1650,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"�fVanadiumsteel Hammer"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an MV extruder you can make the next level of Tinker Tools - based on Vanadiumsteel parts with Damascus steel rods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartHammerHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":1,"tag":{"material":"DamascusSteel"},"Damage":1634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TGregworks:tGregToolPartLumberHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""},{"id":"TGregworks:tGregToolPartExcavatorHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":1,"tag":{"material":"DamascusSteel"},"Damage":1634,"OreDict":""}]}]},{"questID":1911,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCraftsman used to mean quality","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an EBF you can make vanadiumsteel GT tools. With 192k durability they'll last you a long time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11371,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":16,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"Wood"}},"Damage":22,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1912,"preRequisites":[238,1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Material","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"3 plus 4, carry the 2...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When doing infusions, it's always good to know how close you are in stability. Once you get to HV you can make an Arcane Abacus to track your infusions. This makes infusions 100 percent safe, right??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Material","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":1913,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:Printing Press","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGut-enough for you? Bet you thought Newspapers were dead!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Typesetting Table and Printing Press will allow you to duplicate books, including enchanted books. The process is kinda complicated, so check out the Bibliocraft mod wiki page. You'll need to use XP to duplicate enchanted books, so now would be a good time to figure out how to collect large amounts...\n\n§4You'll need some Thaumium ingots. You can go Thaumcraft, find some in a chest, or try breeding Magical Metal Berries in IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.BiblioChase","Count":1,"Damage":0,"OreDict":""},{"id":"BiblioCraft:Typesetting Machine","Count":1,"Damage":0,"OreDict":""},{"id":"BiblioCraft:Printing Press","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:experience_bottle","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1914,"preRequisites":[1913],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":3,"id":35}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDo you feel unlucky?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well not any more! With some emeralds and a blank book, I'll give you a Fortune 1 you can use in your printing press. Once you have duplicated it a few times, you can combine the Fortune 1 books in an anvil to get a Fortune 2. Duplicate the Fortune 2 books to get a Fortune 3! \n\nWith a Fortune 3 book and a tier-specific item you can remove the trash item rewards from your loot bags. More good stuff!\n\nSoul Bound is another good enchantment, it will keep an enchanted item in your inventory in case of death."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:emerald","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:book","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":35}]},"Damage":0,"OreDict":""}]}]},{"questID":1915,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mudball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMud, can also be used for facials","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You may have found plenty of mud piles around the wetlands and thought of them as mere annoyances when jumping in the water or for that armor. Waste not! With your new extractor, you can pull out the clay hidden in the mud!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mudball","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1916,"preRequisites":[1478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32748,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWhere is that handyman when you need him?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Needs Maintenance cover will send out a redstone signal when the controller it is attached to requires maintenance. This is handy for the cleanroom you will need to build, since maintenance reduces cleanliness level and will cause voided recipes.\n\nFor the cleanroom you can place this on the top or bottom. For other machines you might want to place it on the side so you can have access to the front face. In that case, you can use a soldering iron and fine solder to have it emit a strong redstone signal that will penetrate through a block next to the cover."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32748,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1917,"preRequisites":[1916],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBEEEP BEEEP BEEEP","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knowing that your cleanroom needs maintenance is pretty important. Instead of just turning on a light, why not use a howler alarm? It will notify you up to 128 blocks away. \n\n§4§d§cWarning: May cause uncontrollable urine leakage when activated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:noteblock","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1918,"preRequisites":[1549],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trashcan","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lToo much fluid??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impossible! If you really think you have so much fluid that you want to just get rid of it, make a fluid trashcan. You can route as much excess creosote or whatever into it you want. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trashcan","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1919,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trashcan","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lToo much junk??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impossible! But if you really want to get rid of excess items, make yourself a trashcan. If you want to be really fancy, you can use a hopper with a lever next to it to make sure you only throw away items you really want. I mean, *I've* never thrown away a tool accidentally, nope, never me."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trashcan","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1920,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:itemLens","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Can't tell them apart either?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many plants look the same. Someday we'll update their DNA so they are each unique, but for now you can make a simple Plant Lens to at least identify species."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:itemLens","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Zomplant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1921,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":363,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSeparating molecules","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV centrifuge is required to separate out Tungstate from Lava. You'll need to start thinking about dedicating a setup just for lava centrifuging. Plus it's a good source of silver, tin, copper, and tantalum."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":363,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1922,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTransformers, roll out!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you get to HV you will start wanting to think about centralizing power generation and delivering power over longer distances. An HV to EV transformer will let you send power across your base without too much penalty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1923,"preRequisites":[1922],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNot enough amps?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about 4x more? A Hi-Amp transformer will transform 4 A to 16A. Great for setting up a large power grid and locating polluting power generators further from your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1924,"preRequisites":[1923],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12003,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMore than 4 amps? Crazy!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the truly insane, there is a 16 to 64 A power amp transformer. Just ludicrous!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12003,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1925,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"miscutils:blockDecayablesChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWhat's in the box?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of waiting around 7 hours with radium in your inventory waiting for it to decay? With a lead-lined box you can safely leave your radium and other materials and they will decay while you do real work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:blockDecayablesChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1926,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA quicker way to get around","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are playing single player or a local server, horses make a great way to get around. On nonlocal servers they can cause problems and desync if you have poor internet. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1927,"preRequisites":[1799],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Coal...from withereed?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Withereed is a source for coal, and more importantly, a good breeding stock for higher tiers.\n\nYou'll need coal blocks underneath it to fully mature."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Withereed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:coal","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1928,"preRequisites":[1927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemToolForgeHammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Son of Odin One-Eye","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"God of Thunder plant lets you increase your Thorium ore from the Nether by 4x. It also will give you Uranium you can use for Reactoria crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"God of Thunder","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":16,"Damage":96,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1929,"preRequisites":[1928],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemUran238","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Just cover your privates when you walk by","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reactoria crops will drop Reactoria leaves which will 4x your Pitchblende ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Reactoria","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":32,"Damage":873,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1930,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.liveRoot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ironwood is better than normal wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A necessary step for steeleafranks? Maybe not. But ironwood does make some great rollers for cooking, and a decent Sense blade.\n\nCreeperweed has a decent chance of giving liveroots seeds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Liveroots","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.ironwoodHelm","Count":1,"tag":{"ench":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1931,"preRequisites":[1797],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vegan leather?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to save your cows and horses for milk and ...glue... you can use Corium to make leather instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corium","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beef","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1932,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gunpowder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gunpowder? More like dirtpowder!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creeperweed can supply your gunpowder needs without dealing with bothersome explosions. It also has quite a few attributes, making it a good source of random crops.\n\nCorium can breed into creeperweed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Creeperweed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1933,"preRequisites":[1931],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Milk of the earth-mother","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Milkwart means you can get rid of all your cows. Isn't that nice?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Milkwart","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"netherWart","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1934,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:wovencottonItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cotton and string","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With some Farmer coins I'll trade you cotton and string. Perfect for making tanned leather!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":30,"Damage":0,"OreDict":""},{"id":"Natura:barleyFood","Count":24,"Damage":3,"OreDict":""}]}]},{"questID":1935,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:obsidianChisel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A better chisel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to decorate your base, you're going to need a better chisel. The Obsidian chisel lasts twice as long as the iron chisel. A diamond chisel would last 10x as long, but needs an LV cutting machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:obsidianChisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1936,"preRequisites":[1937],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:metalPattern","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Right tool for the job","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tinker's Construct has their own chisel tool variant, for converting Tinker blocks into different types. Not a lot of uses, but if you check NEI you can see what you can do."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:GravelOre","Count":4,"Damage":4,"OreDict":""}]}]},{"questID":1937,"preRequisites":[74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SpeedBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tinker's blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tinker's Construct offers a couple of useful blocks from the smeltery. Rough Brownstone takes Tin and Gravel and makes a block that lets you move a little faster. Cobblestone can be turned into Seared Stone, usable in the smeltery walls to make it larger without having to use clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SpeedBlock","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:Smeltery","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1938,"preRequisites":[1936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SpeedSlab","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Some handy uses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The TiCon chisel doesn't have a lot of uses, but here a couple of interesting ones. Use NEI to see other options for more decorations. You can also slab these blocks if you want something monsters cannot spawn on.\n\nBrownstone roads are slightly faster than rough brownstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SpeedBlock","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:decoration.multibrick","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:decoration.multibrick","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1939,"preRequisites":[1935,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:autoChisel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chisel all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If, for some reason, you need to chisel a large number of items, the autochisel is what you want."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:autoChisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1940,"preRequisites":[1939],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:upgrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chisel as fast as you can","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The autochisel speed is pretty slow. Craft some upgrades to make it faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:upgrade","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:upgrade","Count":1,"Damage":1,"OreDict":""},{"id":"chisel:upgrade","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"chisel:upgrade","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1941,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:marble_stairs.4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"My ancient enemy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The one place Chisel is weak is in stairs. Would be nice to have more variety, but later I'll show you how to make any block into a custom stair.\n\nYou can also search NEI for \"stairs\" to find stairs from other mods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:packedice_stairs.0","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:marble_stairs.1","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:limestone_stairs.0","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1942,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:lavastone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nChisel offers a wide variety of blocks. Searching NEI for \"chisel\" can gives pages and pages. Here is a small sample."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:antiBlock","Count":1,"Damage":15,"OreDict":""},{"id":"chisel:carpet","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:brickCustom","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"chisel:grimstone","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:lavastone","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:waterstone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1943,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fun party blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are even some really fun blocks available. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:warningSign","Count":1,"Damage":6,"OreDict":""},{"id":"chisel:obsidian_snakestone","Count":1,"Damage":1,"OreDict":""},{"id":"chisel:jackolantern16","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"chisel:technical3","Count":9,"Damage":0,"OreDict":""},{"id":"chisel:laboratoryblock","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:hexPlating","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},{"id":"chisel:futura","Count":1,"Damage":4,"OreDict":""},{"id":"chisel:futuraCircuit","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1944,"preRequisites":[1935,554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Concrete and GT stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chisel can also transform Concrete and GT stones into new interesting blocks. Some of the GT stone blocks will even prevent mobs from spawning on top. GT Concrete will let you run faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:concrete","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:concrete","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.blockgranites","Count":1,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockstones","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1945,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Builder's Wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The only thing going for the stone builder's wand is that it's cheap. It doesn't offer much in special modes, and doesn't last long either. But you can make a lot!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"betterbuilderswands:wandStone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandStone","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1946,"preRequisites":[1945],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Low tier wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Iron wand will last longer than the stone wand, and has a few modes. "}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandIron","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1947,"preRequisites":[1946],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mid tier wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier up wand is the Diamond wand. Has all kinds of fun modes. Just be careful using it, would hate to place a bunch of blocks accidentally!\n\nThe ultimate builder's wand you can get from the tab Grind, or not to Grind."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1948,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32727,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"No ASMR from your machines?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If the sounds of your machines are driving you crazy, you can add a muffler upgrade to block them out. \n\nNOTE: This also means you won't hear when the machine is out of energy. Also, once applied the upgrade cannot be removed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32727,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:sound_muffler","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1949,"preRequisites":[1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better put on that rubber suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Troll plant! What does it do? Troll you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Trollplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1950,"preRequisites":[1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:emerald","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who the hell is Bob?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want emeralds for trading or other uses? These are the source."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Bobsyeruncleranks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1951,"preRequisites":[1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.knightlyHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"And I dub thee Sir Knight","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need an infinite source of knightmetal? It will be a hard plant to grow. Make sure you provide plenty of nutrients, clean air, fertilizer and water. Don't cry to me if it dies. Any oreberry is a good source crop, with Cobalt and Ardite best, then iron and the rest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Knightly Oreberry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmetal4","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1952,"preRequisites":[492],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:trowelIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Botany","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Botany mod offers more colors for blocks and glass, and simple tile patterns or more complex patterns using a Tileworker. For now, we'll make an iron trowel.\n\nThis mod will make lots of butterflies, so make sure to do your gardening underground or under glass. The butterflies will spread and infect leaves around your area, making more butterflies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:trowelIron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":63,"Damage":0,"OreDict":""}]}]},{"questID":1953,"preRequisites":[1952],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:yellow_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finding Flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To start, you'll need to find some flowers. Then take your trowel and use it on some dirt blocks to turn it into soil. Next place your flowers on the soil to turn them into Botany flowers. If you have reached MV tier, check out the Slice and Splice tab for info on Genetics."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:yellow_flower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":3,"OreDict":""},{"id":"minecraft:red_flower","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1954,"preRequisites":[2096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Analyzer is a machine that acts in an identical way to the Forestry Analyzer, in that it reveals the genome of bees, trees, butterflies and flowers. It can also be used to reveal the gene present on the DNA Sequence. Unlike the Analyzer, the Analyzer uses power (RF or EU) and DNA Dye to stain chromosomes and determine the genome directly. The analyzer takes 15 seconds to analyse a single individual.\n\nInformation from these quests was taken from Binnie's wiki at https://binnie.mods.wiki/wiki/Tutorial/Genetics"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1955,"preRequisites":[1953],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:misc","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powder Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Botany uses various powders to enhance soil properties.\n\nRaise Ph - Ash Powder, Pulp Powder\nLower Ph - Mulch Powder, Sulphur Powder\nIncrease Nutrients - Fertiliser Powder, Compost Powder"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":1,"Damage":0,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":1,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":1,"Damage":3,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:misc","Count":64,"Damage":0,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":1,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":2,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":3,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":5,"OreDict":""}]}]},{"questID":1956,"preRequisites":[1955],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:misc","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Killing weeds and growing flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody likes weeds. Weedkiller will keep the weeds of your soil. \n\nBonemeal can be applied to germling flowers to make the mature faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":1,"Damage":15,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":7,"OreDict":""}]}]},{"questID":1957,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:soilMeter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Like having a County Extension Office in your hand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The soil meter will tell you the soil stats - how dry, how much nutrients, etc. You can amend the soil with the various powders so that it matches the requirements for your flower."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:soilMeter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:double_plant","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1958,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:pigment","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"80 new colors to play with","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you plant a vanilla flower, it is already mature. Cut it with a shears to get a germling you can replant to make more. Break the flower to get a mature flower. Turn the flower into pigment using a crafting table.\nTo get crosses, plant flowers next to empty soil blocks. Keep an eye out for weeds. Eventually a small germling will start growing.\nRemember, do this underground or in an enclosure or your TPS will regret it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:pigment","Count":4,"Damage":59,"OreDict":""},{"id":"Botany:pigment","Count":4,"Damage":78,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:pigment","Count":8,"Damage":1,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":2,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":11,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":75,"OreDict":""}]}]},{"questID":1959,"preRequisites":[1958],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:stained","Count":1,"tag":{"meta":24},"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glass of many colors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The pigments color an amazing variety of glass. Just one warning - unlike normal glass, this glass isn't fireproof."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:stained","Count":4,"tag":{"meta":59},"Damage":59,"OreDict":""},{"id":"Botany:stained","Count":4,"tag":{"meta":78},"Damage":78,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:stained","Count":16,"tag":{"meta":24},"Damage":24,"OreDict":""},{"id":"Botany:stained","Count":16,"tag":{"meta":21},"Damage":21,"OreDict":""}]}]},{"questID":1960,"preRequisites":[1958],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramic","Count":1,"tag":{"meta":59},"Damage":59,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ceramics","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With some clay and pigments, you can make pigmented clay. Put the pigmented clay in a furnace to get basic ceramic blocks. These blocks are great if you want an area of nice even colors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:clay","Count":4,"Damage":78,"OreDict":""},{"id":"Botany:clay","Count":4,"Damage":59,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:ceramic","Count":4,"tag":{"meta":78},"Damage":78,"OreDict":""},{"id":"Botany:ceramic","Count":4,"tag":{"meta":59},"Damage":59,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramic","Count":16,"tag":{"meta":75},"Damage":75,"OreDict":""},{"id":"Botany:ceramic","Count":16,"tag":{"meta":40},"Damage":40,"OreDict":""}]}]},{"questID":1961,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":20046},"Damage":16387,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mortar and tiles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make ceramic tile patterns, you need to convert your blocks into tiles. First make mortar, and then use the mortar with your blocks in a 3 block + 1 mortar pattern in the crafting table to get ceramic tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":20046},"Damage":16387,"OreDict":""},{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":15163},"Damage":15163,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":257},"Damage":257,"OreDict":""},{"id":"Botany:ceramic","Count":16,"tag":{"meta":77},"Damage":77,"OreDict":""}]}]},{"questID":1962,"preRequisites":[1961],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramicBrick","Count":1,"tag":{"meta":347707},"Damage":16387,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tile patterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have tiles, you can make simple tile patterns. A 2x2 of red/yellow and yellow/red makes a simple checkerboard. Using the checkerboard again in a 2x2 makes a checkerboard with smaller tiles. Use Binnie's Botany wiki page to find more patterns you can make with just tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:ceramicBrick","Count":4,"tag":{"meta":282171},"Damage":16387,"OreDict":""},{"id":"Botany:ceramicBrick","Count":4,"tag":{"meta":347707},"Damage":16387,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":2827},"Damage":2827,"OreDict":""},{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":17476},"Damage":16387,"OreDict":""}]}]},{"questID":1963,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tileworker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The tileworker can take the single-color ceramic blocks and turn them into pretty patterned blocks.\n\nAnd contrary to the name, you use ceramic blocks here, not tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.lavender","UID0":"botany.flowers.species.lavender","Slot":0},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":1},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":6},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":8},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":9},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":10},{"UID1":"botany.colorGreen","UID0":"botany.colorGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""},{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.forget","UID0":"botany.flowers.species.forget","Slot":0},{"UID1":"botany.colorLightSteelBlue","UID0":"botany.colorLightSteelBlue","Slot":1},{"UID1":"botany.colorLightSteelBlue","UID0":"botany.colorLightSteelBlue","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":6},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":8},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":9},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":10},{"UID1":"botany.colorGreen","UID0":"botany.colorGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""},{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.althea","UID0":"botany.flowers.species.althea","Slot":0},{"UID1":"botany.colorThistle","UID0":"botany.colorThistle","Slot":1},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":6},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":8},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":9},{"UID1":"forestry.sappinessHigh","UID0":"forestry.sappinessHigh","Slot":10},{"UID1":"botany.colorDarkGreen","UID0":"botany.colorDarkGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""}]}]},{"questID":1964,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:insulatedTube","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Does this shit even work?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who the hell knows? There's nothing in the wiki about these, except that they are to make \"gardens.\" Maybe make a few and stick them on a Forestry circuit board for a multi-farm? Who cares. Good luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:insulatedTube","Count":1,"Damage":256,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":514,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":1,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":643,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":18,"OreDict":""}]}]},{"questID":1965,"preRequisites":[1959],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glassworker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some custom glass shapes and configurations? A glassworker can provide some unique patterns to put in your windows. You'll need to make some glass fittings to hold the glass together."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":3,"OreDict":""},{"id":"ExtraTrees:misc","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Botany:stained","Count":16,"tag":{"meta":66},"Damage":66,"OreDict":""},{"id":"Botany:stained","Count":16,"tag":{"meta":23},"Damage":23,"OreDict":""}]}]},{"questID":1966,"preRequisites":[1963,1965,1968],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:hammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Mo' Hammers Mo' Problems","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yes indeed, time for another type of hammer. The master carpentry hammer will allow you to rotate the blocks from the various workers.\nSneak to rotate the blocks vertically.\nWhy is the lower tier hammer the master hammer? Who knows??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:hammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraTrees:durableHammer","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1967,"preRequisites":[1968],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Panels to cover your...everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The panelworker will create wood flooring pieces for you to use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraTrees:misc","Count":64,"Damage":4,"OreDict":""}]}]},{"questID":1968,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy woods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the woodworker, you can create fancy looking types of wood blocks. You can use wood planks from Vanilla, Forestry, and Extra Trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":1,"OreDict":""},{"id":"ExtraTrees:misc","Count":8,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1969,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:lantern.stone","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Look Mom, no torches!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of a base using nothing but torches? This set of quests will go through the various options avaiable to light up your beautiful base.\n\nFirst up, Railcraft lanterns. These come in stone and metallic varieties. The stone varieties don't need much to craft. One plus/minus for these lanterns is that they are solid blocks - while you cannot walk through them, they also do not fall if the blocks around them are removed. Search \"lantern\" in NEI for more varieties. They are a bit annoying to craft now, but if you check NEI you can make them pretty easy with assemblers later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:lantern.stone","Count":4,"Damage":9,"OreDict":""},{"id":"Railcraft:lantern.stone","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:lantern.metal","Count":8,"Damage":1,"OreDict":""},{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1970,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForgeMicroblock:sawDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Second Saw","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forge Microblocks can be really handy to make custom pieces. There are many saw tiers available. If you make me an iron one, I'll give you a diamond one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"ForgeMicroblock:sawIron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ForgeMicroblock:sawDiamond","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1971,"preRequisites":[51,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:BiblioLantern","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy lanterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bibliocraft offers fancy looking lanterns. Make the candles from candleberries or beeswax."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:BiblioIronLantern","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiblioCraft:BiblioLantern","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1972,"preRequisites":[479,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glowstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've been to the nether and gathered Glowstone, you can use that for light as well. You can color it to make the block color change (unfortunately 1.7.10 does not support colored lights) or you can use the Forge Microblocks saw to cut it up into tiny nooks to light up areas without taking up much space.\nThere are also various glowing plants you can find or breed, such as glowflowers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForgeMicroblock:microblock","Count":1,"tag":{"mat":"minecraft:glowstone"},"Damage":513,"OreDict":""},{"id":"ExtraUtilities:color_lightgem","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glowstone","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1973,"preRequisites":[554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic ProjectRed Illumination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic ProjectRed Illumination lamps only need an LV mixer to make. The normal version needs a redstone signal to turn on. The inverted version is on unless a redstone signal is applied."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":8,"Damage":16,"OreDict":""}]}]},{"questID":1974,"preRequisites":[97,100],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2.inv","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancier ProjectRed Illumination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fancier ProjectRed Illumination lamps, lanterns, and fixtures require the Forming Press and Assembler to create."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lantern","Count":1,"Damage":3,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.fixture","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":5,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":19,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":34,"OreDict":""}]}]},{"questID":1975,"preRequisites":[554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.flightbutton","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ProjectRed lights with a purpose","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ProjectRed offers a couple of special lights that can be used as buttons. The normal buttons are always lit up. The Feedback buttons are lit up when powered by any redstone signal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lightbutton","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Illumination:projectred.illumination.flightbutton","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1976,"preRequisites":[1973],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Ztones:lampt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flat lamps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These simple lamps from Ztones are a nice, subdued looking lamp style. I like using them on ceilings for the \"office\" look."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Ztones:lampf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Ztones:lampb","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1977,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:torch6","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone & Chisel torches, space rated","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When travelling off-world, you want the best in torches. Torches that will work in no-oxygen environments like the Moon. For that, you need glowstone torches. You can chisel these torches into a variety of torch types, also proven to work in deep space. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.glowstoneTorch","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:torch4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"chisel:torch8","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1978,"preRequisites":[68,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"FloodLights:carbonFloodlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lighting up a large area, without electricity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have a relatively large area you need to light up without using electricity, you can use these floodlights. They can take normal furnace fuels, including blocks and compressed blocks. They do require some electronic components to make, but can send out a beam a long ways, or a various cone shapes a shorter distance."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"FloodLights:carbonFloodlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"FloodLights:carbonFloodlight","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.CompressedCharcoal","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1979,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"FloodLights:electricFloodlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lighting up a large area, with electricity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a vacuum freezer, you can liquify compressed air cells and centrifuge them for rare gases. You'll need those to make the incandescent bulb for these lights. As long as they have EU, these lights can shoot a beam or do narrow or wide cones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"FloodLights:electricFloodlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"FloodLights:electricFloodlight","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1980,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockElectricLight","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enderio Lights","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enderio also has its own lights. These lights have a radius of 8 blocks vs the normal 7. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockElectricLight","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockElectricLight","Count":7,"Damage":3,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":8,"Damage":2,"OreDict":""}]}]},{"questID":1981,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockElectricLight","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BetterIO?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Powered and Wireless Powered lights from Enderio provide light up to 10 blocks away vs the normal 7 for a torch. They will require centrifuging liquid air to get the bulbs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockElectricLight","Count":1,"Damage":1,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockElectricLight","Count":7,"Damage":1,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":7,"Damage":5,"OreDict":""}]}]},{"questID":1982,"preRequisites":[91],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"malisisdoors:door_factory","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What's behind door 3?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Malisis door factory lets you go crazy with all kinds of ideas for custom doors.\n\nA player sensor is a nicer way of opening a door, instead of pushing a button or stepping on a plate...bit unforunate about the ingredients though. \n\nMaybe you can find a use for this block mixer, it is kinda weird and doesn't work right. I was going to throw it out anyways.\n\nThere are some craftable Malisis items as well, check them out in NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"malisisdoors:door_factory","Count":1,"Damage":0,"OreDict":""},{"id":"malisisdoors:player_sensor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"malisisdoors:block_mixer","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1983,"preRequisites":[97,98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:guide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Build it bigger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can build it! The Build Guide helps show you an outline of simple geometric shapes. Provide it with a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:guide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1984,"preRequisites":[1983,1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:builder_guide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Faster better buildi-er","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Enhanced building guide offers more features than the standard model. Most importantly, you can right click on any white part of the block with the item you want placed and the block will place in the world. It will need a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:builder_guide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone_block","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1985,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:elevator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So much nicer than ladders","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elevators are great for fast transportation vertically in your base. Leaving a tinted elevator will stop at the same color elevator. Use some Malisis doors for a nice \"real\" elevator effect.\nThe rotating elevator will turn the player as they go up or down to face a specific direction. Handy if your elevator shaft is on one side at a floor and a different side at another floor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:elevator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenBlocks:elevator_rotating","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1986,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ArchitectureCraft:sawbench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More like ouch-i-tect","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sawbench can turn most full cube blocks into amazing shapes of various kinds.\n\nRight-click with the hammer to rotate 90 degrees. Shift-right-click with the hammer to change the orientation of the \"bottom\" face.\n\nThe Chisel is used to alter the structure of blocks in various ways.\nSome blocks automatically form connections with adjacent blocks. These connections can be disabled and re-enabled by right-clicking with a chisel near the side that you want to change.\nSome blocks can have a secondary material applied to them. The secondary material can be removed by right-clicking on the centre of the block with a chisel.\nYou can also right-click on a vanilla Glass, Glass Pane, Glowstone or Ice block with a chisel to harvest the block without breaking it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ArchitectureCraft:sawbench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ArchitectureCraft:hammer","Count":1,"Damage":0,"OreDict":""},{"id":"ArchitectureCraft:chisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1987,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgradeTemplate","Count":3,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrading Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Drawer upgrades are different than barrel upgrades. First you need to make the ugprade template."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgradeTemplate","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:upgradeTemplate","Count":6,"Damage":0,"OreDict":""}]}]},{"questID":1988,"preRequisites":[1987],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgrade","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lYour mom says to upgrade your drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are many tiers of upgrades for storage drawers. Make some iron, gold and obsidian tier upgrades and I'll give you some of the special purpose upgrades to experiment with in your base. Check NEI for more options and Emerald and Diamond upgrades.\n\n§4To remove upgrades, shift-right-click with an empty hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgrade","Count":1,"Damage":2,"OreDict":""},{"id":"StorageDrawers:upgrade","Count":1,"Damage":3,"OreDict":""},{"id":"StorageDrawers:upgrade","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:upgradeStatus","Count":1,"Damage":1,"OreDict":""},{"id":"StorageDrawers:upgradeVoid","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1989,"preRequisites":[1225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Machine Inventory Manager","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The core block of Stacy's...er Steve's Factory Manager. SFM is a high tier automation system. While AE2 can handle simple crafting up to 9 components at a time and even nesting ingredients, SFM can handle the complex crafting required for the assline.\n\nInventory Cables connect the MIM to inventories or tanks.\n\nRight now until some Moron figures it out, your best bet is to experiment, ask for help on Discord, and search Google. The interface resembles most GUI based automation systems like LabView.\n\nThere have been TPS problems caused by poorly designed SFM setups. Make sure your outputs are properly emptied, and don't get filled.\n\nInventory cables are the \"basic\" cable of SFM. They allow the MIM to interact with an inventory, and act as a connector cable to other cables.\n\nmehdi2344 thinks my jokes suck, but he's an idiot, so there. \n\nThanks to Nori Silverrage for writing up these quests!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},{"id":"StevesFactoryManager:BlockCableName","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableName","Count":40,"Damage":0,"OreDict":""}]}]},{"questID":1990,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesAddons:duplicator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moving the Manager ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever finished a wonderful program and then realised your Manager needs to move and you have to rewrite the whole thing? Ever need to copy and paste a section of code a bunch of times and been frustrated that you can't? Well we've got you covered with the Manager Duplicator!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesAddons:duplicator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1991,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesAddons:labeler","Count":1,"tag":{"saved":["Energy Receiver","Energy Provider","Input Inventory","Input Tank","Output Inventory","Output Tank"]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Naming Names","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Factory Labeler allows you to assign unique names to anything that can be connected to a Manager - making it easy to identify when you are setting up commands.\n\nType in the text box to set a label or to searched stored labels - click any stored entry to select it, double click to edit it. Closing the GUI will set the Labeler to whatever was in the text box at that time.\n\nLeft click to set labels, right click to open the gui. Setting a blank label will remove any existing labels.\n\nMay or may not be buggy. Have fun!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesAddons:labeler","Count":1,"tag":{"saved":["Energy Receiver","Energy Provider","Input Inventory","Input Tank","Output Inventory","Output Tank"]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1992,"preRequisites":[297,990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Enhancements","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumic Machina offers Wand Augmentations. These useful modifications to your wand can boost their capacity, lower their vis usage, or do other interesting effects. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1993,"preRequisites":[1992],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Charge Buffer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Charge Buffer augmentation to your wand allows it to hold 25 percent more vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1994,"preRequisites":[1992],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vis Channels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This wand augment will lower the vis cost when using your wand by 10 percent. I am not sure it works, but give it a try and report back, ok?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""}]}]},{"questID":1995,"preRequisites":[1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What are you, a seamstress?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted Fabric is the key material to fancy robes and wizard's clothing. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":8,"Damage":7,"OreDict":""}]}]},{"questID":1996,"preRequisites":[1995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemChestplateRobe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"K-Mart Special","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every point of vis is critical, so make yourself some magical robes to help conserve how much you use. Later you can make even better robes. They don't offer much in protection, so remember to change before going to hunt!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemChestplateRobe","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsRobe","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemBootsRobe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""}]}]},{"questID":1997,"preRequisites":[1995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boots are made for walking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And swimming. These boots of the traveller will make you a blur as you go around the world. You'll need to research infusion before you can make these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1998,"preRequisites":[237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I can see everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new wand, you can make Goggles of Revealing. With Thaumcraft Node Tracker, it makes finding nodes trivial. The default key is I. You can select from the list of nodes you have scanned, and an in-world arrow will show you the way. You can also sort the list.\nBest, the goggles give you a 5 percent vis discount. \n\nSimple lens upgrades will grant you various seeing abilities as well.\n\nLater you can make more advanced goggles and even integrate the goggles into advanced armors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":2,"Damage":5,"OreDict":""}]}]},{"questID":1999,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Redstone Emitter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone Emitter sends redstone signals on each of its 6 faces. The redstone signal strength can be set to any value, add, subtract, and more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2000,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Camouflage blocks allow the faces of cable blocks to be made to imitate any other block. This works in the full workflow and thus can be updated on the fly. \nPlease note that this block is placed the same as all of SFM cables. It does not act as an inventory cable and thus will need to be in an advanced cable cluster in many situations."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":2001,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inventory Relay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The inventory relay can access the inventory of non-stationary entities, such as minecarts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2002,"preRequisites":[2000],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double Sided Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Double sided cable camouflage blocks allows setting the inside face of the cable block, allowing you to imitate glass."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":1,"OreDict":""}]}]},{"questID":2003,"preRequisites":[2002],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Transforming Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Transforming Cable Camouflage allows you to change the collision box of the cable, so you can turn it into a door or whatever."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":2,"OreDict":""}]}]},{"questID":2004,"preRequisites":[2001],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Inventory Relay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An Advanced Inventory Relay can add/remove items from a player's inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2005,"preRequisites":[1710],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32091,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Learning curve? Where we're going there are no curves","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Only dangerous cliffs to fly off. TecTech can be the source of adventures, scary and satisfying. \n\nThanks to Piky/Scripted for giving you some guardrails to stay on the road. Scripted/Piky shed blood over these quests for you. Now it's your turn!\n\nFor additional details on TecTech, check out the wiki at https://github.com/Technus/TecTech/wiki"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2006,"preRequisites":[2005],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"tectech:item.em.frontRotate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Beginning of the End Game","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to TecTech! The pinnacle of absolute high-tier machinery for all your end-tier needs. However, learning TecTech is incredibly confusing, so listen very carefully. \n\nFirst, you'll need to gather various casings for your machines that you'll need. High Power Casings, Computer Casings, and Computer Vents will do, though you'll require a large amount of them before proceeding onward."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"tectech:gt.blockcasingsTT","Count":64,"Damage":0,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":96,"Damage":1,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":96,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":64,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":15470,"OreDict":""},{"id":"tectech:item.em.constructable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":15470,"OreDict":""}]}]},{"questID":2007,"preRequisites":[2006],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15311,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the more incredibly complicated machines, this will serve as the main structure for your \"Computation\" generation for the giant Research Station. First, you'll need a few things, the Quantum Computer itself, a huge energy hatch several amps of UV or above, this is because as Computer Racks, that'll be explained later on down here, will continuously increase the demand of energy input for every new Computer Rack that you add on. The Multiblock also consumes a large amount of energy by itself. Another important factor is ONLY turn on the Quantum Computer once you have the desired recipes for the Research Station ready to avoid excess energy loss. In order for you to build this absolute monster, you'll need to place down the Quantum Computer at least 1 block above the surface/ground and use the Multiblock Machine Blueprint, this will give you a hefty amount of information and various ghost-like blocks that'll show where casings and or hatches should go.\n\nComputation:\nComputation is generated every second and is based on the tier of your circuit. There are, however, differences in between how much computation is generated, even with the same exact tier. For instance, you could use a Master Quantum Computer (Quantum Circuit Series / LuV) or a Wetwareprocessor (Wetware Circuit Series / LuV) which will give you more Computation even though they are of the same tier. If you wish to find out exactly how much Computation a circuit gives; place down a Computer Rack, put a circuit inside and scan it. It will include the following information\nBase computation: \nAfter overclocking: \nHeat Accumulated: \n\nComputer Racks:\nThe main component within the multiblock to generate Computation. In order to achieve this, you will need to input some circuits and heat vents; Advanced Heat Vents work best. It is critical that you use Heat Vents to prevent the heat from reaching a catastrophic point, 55 percent or above should be avoided for safety reasons. Technically, you could achieve above 55 percent heat capacity or 5500 heat capacity, however, the Computer Racks may melt or explode above 5600 or 6000 heat. In order to precisely find out how much heat, you'll need a Parametrizer, which will be explained later. Now that you've understood one of the more basic concepts and safety of handling within the Computer Racks (scan the Racks before you run the Quantum Computer!), what are the more optimal setups for your Quantum Computer? Do keep in mind that even a 128 min Computation / Sec setup can complete practically 3/4th's of the recipes within the Research Station. In this case, a 4 Computer Rack setup with 1 Advanced Heat Vent and 3 Wetwareprocessors (LuV) will generate 72 Computation every second; leading up to a maximum of 288 Computation every second at just 5 amps of UV (524,288 EU/t) with only 4 Computer Racks required. This is a rather minimal setup compared to some of the more complicated setups.\n\nAnd most importantly: DO NOT WRENCH THE COMPUTER RACKS IF THEY HAVE HEAT IN THEM. Scan them before anything else! Otherwise, you're going to get an explosion.\n\nUncertainty Resolver\nMuch like a puzzle-solving simulation, it is rather complicated to explain how to solve it, but it's often best just to retrace or undo certain actions and hope for the best. Sometimes, the Schr�dinger Status will require some puzzle solving again after a period of time. This is random and incredibly frustrating especially during operations being done between the Research Station and Quantum Computer(s), so it is important to constantly check the Uncertainty Resolver before you start operations on your Computer.\n\nNow that you understand some of this, it is time to build the Computer! You'll need to gather quite a lot of resources at first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15311,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15430,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15441,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":15470,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":15103,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":12,"Damage":2,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":10,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":22,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"tectech:gt.blockcasingsTT","Count":20,"Damage":3,"OreDict":""}]}]},{"questID":2008,"preRequisites":[2007],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15331,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Research Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've started building up your precious Quantum Computer, how about the giant Research Station? Once again, using the Multiblock Machine Blueprint will tell you how to build this Multiblock. Once it is nearly assembled, place down an Energy Hatch, an Optical Slave Connector, and a Maintenance Hatch all on the back side. Once fully assembled, you can now begin operating recipes at any given time, so long as the Quantum Computer is also active. This Research Station requires you to put the desired item within the Object Holder, then a data stick in the Multiblock interface itself. Once the Computation is fully completed, the data stick that houses all the data of the completed item will be inside the Multiblock Interface. Still confused? Good, that's the spirit of learning! Always make sure to test these things in Single Player if you wish to find exact measurements and such. \n\nDon't forget to ALWAYS COLOR THE OPTICAL HATCHES AND FIBERS!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15331,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15103,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15440,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15451,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":29,"Damage":1,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":23,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":14,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"tectech:gt.blockcasingsTT","Count":59,"Damage":1,"OreDict":""}]}]},{"questID":2009,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sign Updater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Sign Updater allows your MIM to update an external display of information."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2010,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableIntakeName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Item Valve allows your factory manager to suck in dropped items from around them in a 3x3x3 cube. Or you can use them to push items out into the world in the direction they are pointing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":2011,"preRequisites":[2010],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableIntakeName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rapid Item Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rapid Item Valves can pick up items in the world without any delays."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":2,"Damage":8,"OreDict":""}]}]},{"questID":2012,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableClusterName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cable Cluster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The cable cluster allows you to combine as many of the other cables together into one block. You could have a redstone receiver and emitter and a inventory relay all in one block.\nThis cable is a \"terminal\" cable. It does not extend the MIM beyond it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2013,"preRequisites":[2012],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableClusterName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Cable Cluster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Advanced Cable Cluster will also act as an Inventory cable, extended the range of your MIM."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":4,"Damage":8,"OreDict":""}]}]},{"questID":2014,"preRequisites":[1180],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll those chunks, all in a row","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you don't want a 3x3 area chunkloaded, but a long straight line instead. This can be handy for rail lines or power lines coming from long distances. An anchor sentinel can perform this function. Right-click on a chunk loader with a crowbar, and it will activate. Go in any straight line from the chunkloader and place the anchor and hit it with the crowbar. Those chunks, up to 25x1, will now remain loaded.\n\nThis will draw an amount of chunkloader time relative to the 9 chunk area normally loaded. If for some reason you wanted only a 1 chunk area loaded, this will extend the time. Stock up on those pearls or server coins!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChunkloaderTierIV","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2015,"preRequisites":[1999],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Redstone Receiver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone Receiver reads redstone signals on each of its 6 faces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2016,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Block Gate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Block Gate can break pickup, or place blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2017,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Block Detector","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Block Detector allows your MIM to detect when a Block update has occured. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2018,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":254,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§lCutting up stuff at EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are EV you are going to need a more advanced cutting machine. Better get one built."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":254,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2019,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Basics of SFM","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Variables - Declaration vs Standard\nDeclaration is simply creating a variable with eligible blocks in it. This allows easy updating of workflows. For instance you could have a variable that contains 2 chests. You use it in a nifty for each loop and later add another chest. Simply update the variable and the for each loop will start using it.\n\nStandard variables are able to be inserted into the middle of a workflow (it has input/output) and thus can be modified on the run.\n\nPlease note that for each loops will require a empty variable to work with. This is listed as \"Element\" in the loop.\n\nGlobal vs Local\nGlobal will keep changes to a variable that are done in the workflow, whereas local keeps anything done local to that part of the workflow."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2020,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magical box","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This magical box is amazing. No matter how many are created, they all seem to connect to the same dimension. I can store items in one location, and pull them out somewhere else! I can use dyes on the top of the box to assign its location, and any box with the same colors will share the same space. Using a diamond on the box locks it my mind, and a private network. Shift-rightclicking will remove the diamond and join the chest back to the public network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2021,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderChest","Count":1,"Damage":4096,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magical tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This tank always seems to connect to the same dimensional space. No matter how many I create. I can push fluids into the tank in one dimension, and retrieve them in a totally different dimension! I have discovered a way to assign a location to each tank using dyes applied to the top. Using a diamond makes the tank private, attuned to the caster's mind, and will not share fluids with any other player's tanks. Shift-rightclicking recovers the diamond and makes the tank part of the public tank network. The dial on front controls the input/output of the tank. When blue is up, the tank accepts fluids. When orange is up, the tank will eject fluids. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderChest","Count":1,"Damage":4096,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":2022,"preRequisites":[2020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderPouch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"That chest is too big to carry around","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Instead of chest you have to keep placing and breaking, how about a nice convenient pouch you can use? You'll have to synchronize it with the chest you want to link with. To set it to a new chest, sneak-click with the pouch on a new chest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderPouch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2023,"preRequisites":[2018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lMore power needed, sir!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"EBF and LCR recipes are going to need even more power. You'll need to craft EV energy hatches to supply them and keep them running."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2024,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32608,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAssline quest updates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When the pack updates, and changes an assembly line recipe, your old data sticks become useless. However it's more than that, you can't simply rescan an old UV motor for the new UHV data, you need a new UV motor. It's best to start with component parts in the lowest changed tier, then work your way up until you've rescanned up to your current tier. Yes, this sucks, we also wish there was another way. You can tell if your data stick is out of date by seeing if the nei recipe matches the one in the data viewer. Nei will always be right."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]}]},{"questID":2025,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":3}},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"GT++ knowledge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To become a master at GT++ you will need to craft manuals for certain machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":3}},"Damage":3,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":1}},"Damage":1,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":0}},"Damage":0,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":4}},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2026,"preRequisites":[1008],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:item.StockroomCatalog","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBetter way to find items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"NEI has a built in search feature for finding an item stored in an inventory nearby. A Stockroom Catalog can give you a list of everything stored in your inventories.\n \nSneak right-click a block with an inventory (a chest, bookcase, barrel, anything with an inventory) to add that inventory to the list of inventories for the catalog to keep track of. Sneak right-click the same block again to remove that block from the list.\nA small particle effect will render on any block that has been selected with the catalog when holding the Stockroom Catalog to let you know that block is being tracked.\n\nRight click to open the GUI and see the list.\nYou can sort the list in ascending or descending order by quantity (Count) or alphabetical order.\n\nYou can also see a list of all the inventories that have a particular item and easily add the location of one of those inventories to a stockroom catalog so you can easily find your stuff.\n\nThe Stockroom Catalog can also be copied with the typesetting table and printing press.\n\nClick on the title to change it to anything so you can custom label your stockroom catalog.\n\nClick on the small chest icons on the right hand side of each listing to open the inventory list view. \n\nIf you want, you can craft a waypoint compass and use that to point you towards the chest. Since we have Journeymaps and NEI, it's not really necessary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.StockroomCatalog","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:chest","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":2027,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":875,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThermal Boiler - Lava you long time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want energy from lava and the byproducts, the Thermal Boiler is the perfect solution. It processes lava super fast for steam, and with a lava filter will provide centrifuged lava byproducts as well. A great source of copper, silver, gold, tin, tantalum, and tungstate.\nYou can get even better efficiency pairing it with a Large Heat Exchanger. The LHE will turn normal vanilla lava into pahoehoe, which will provide steam and byproducts in the Thermal Boiler. Win/Win/Win!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":875,"OreDict":""},{"id":"miscutils:itemLavaFilter","Count":1,"tag":{"LavaFilter":{"Damage":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemLavaFilter","Count":3,"tag":{"LavaFilter":{"Damage":0}},"Damage":0,"OreDict":""}]}]},{"questID":2028,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":790,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I think I'm going to be sick","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Industrial Centrifuge is the solution to those thousands of ore you are getting with the multiblock ore drill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":790,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2029,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":862,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bask in the currents","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best source for hundreds of thousands of glass for...something? I dunno, think of something interesting and impress me!\n\nThe \"effective\" voltage for the High Current Arc furnace is one tier lower than the energy hatch. For example, with an MV tier energy hatch, it will do LV tier arc furnace recipes.\n\nThis machine also does plasma arc furnace recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":862,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2030,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":811,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bate Bate Chocolate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Abuela, will you teach us the chocolate song?\nCon mucho gusto\nWill you sing the chocolate song with us?\nGreat, sing along with Abuela!\n\nBate bate chocolate\nBate bate chocolate\nBate bate chocolate\nBate bate chocolate\n\nMix your chocolate, chocolate\nMix your chocolate, chocolate\nBate bate chocolate\nBate bate chocolate"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":811,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":32213,"OreDict":""}]}]},{"questID":2031,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":859,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Play doh for big girls and boys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I never wanna grow up, I wanna play with my mega extrusion machine.\nAnd in case you didn't read the description in NEI: You can use multiple input busses with a different extruder shape in each and then throw the items to extrude into the bus with the appropriate shape."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":859,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2032,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":992,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Best thing since sliced bread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When all you have is a machine full of knives, everything starts looking like bread. \n\nBluebine 2019!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":992,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"minecraft:bread","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2033,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":860,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A 9 in 1 machine, what a steal!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine has 3 modes, capable of emulating 9 of the less common machines.\nThe 3 general modes are cycled by using a screwdriver on the controller. Each of the modes can support 2 or 3 different machine selected by putting a circuit into the same input bus as the items you want to process. If you have a look at the description of the controller in NEI, you will see a list of the supported machines for each mode. These are in order and can be used with circuit numbers 20, 21 and 22. This also means that you can use multiple input busses with different circuits to use the full potential of the machine. You can also use more busses to use different non-consumable items in the recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":860,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2034,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":796,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ZzzZZZzzzZtt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need lots of oxygen or hydrogen, or just want to rip apart materials for tons of aluminium?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":796,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2035,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":910,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frozen Stiff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'm so cold..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":910,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2898,"OreDict":""}]}]},{"questID":2036,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":963,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forge of the Gods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Volcanus Advanced EBF will process items faster than you can believe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":963,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2843,"OreDict":""}]}]},{"questID":2037,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":798,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spools and spools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need enough wire to go around the world? Here you go."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":798,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2038,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":792,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bender more bending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you need plates by the thousands."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":792,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2039,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":942,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bezos would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nThe Amazon Warehousing Depot is the ultimate for all your packing needs. Got tiny and small dusts coming out of your ears? This is the machine for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":942,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]}]},{"questID":2040,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":791,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Industrial Coke Oven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Swimming in logs? Turn those logs into clean burning charcoal!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":791,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2041,"preRequisites":[1710],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lChickens my boy, the future is in chickens","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Future wetware processors are going to need stemcells....lots of them. Luckily there is way to infuse a normal, harmless chicken embryo with genetic mutagen to make it a perfect source for these stemcells. Once the egg has matured it has a small chance of turning into a giant chicken spawn egg. This giant chicken will now lay eggs that can be disassembled for stemcells or allowed to mature to make more giant chickens. Killing the giant chicken may also give you eggs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:itemBigEgg","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":2042,"preRequisites":[2050],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockThirstyTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So thirsty ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just listening to this tank gulp water makes me thirsty. If placed next to a water source block, it is a decent water source. It also supports several upgrades to speed and capacity. Try out this glyph near your cows, and get a tank full of milk for all your cheese and butter needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockThirstyTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:glyph","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2043,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Volumetric_Flask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBorax Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an MV Electrolyzer, you can extract Boron from Borax. This element is used later on for Borosilicate Glass and fiber, but for now you can use it to make some volumetric flasks to hold precise amounts. This is handy for recipes that may only need a tiny amount of a substance, like 1L."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2009,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.Volumetric_Flask","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.Volumetric_Flask","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2044,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12730,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMega is Betta","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For someone who needs to blast a truly *ridiculous* amount of stuff, this is the machine for you. This monster machine can handle up to 256 parallel recipes at a time.\nThe glass tier (search NEI for Glass-Tier: HV for an example) sets the maximum energy hatch tier for this machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12730,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2045,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12731,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFrostbite!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This mega vac freezer can handle up to 256 items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12731,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2046,"preRequisites":[610],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30727,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A better fluid pie","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have lead you can convert your bronze pipes to potin pipes with higher capacties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30727,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""}]}]},{"questID":2047,"preRequisites":[1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockCircuitProgrammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBulk Programming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of having to use NEI to figure out how to program your circuits? This block will allow you to simply choose the circuit number. It can be automated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:blockCircuitProgrammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2048,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:moss","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moss","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Given up on looking for moss in the Twilight Forest? You can easily grow a crop that will give you the various mosses, perfect for your Tinker's tools. Start with a lilypad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Moss","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Spanish Moss","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Ember Moss","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2049,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":773,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Energy Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your research into energy has lead you to energy buffers - a single block that can store enormous amounts, and is also portable. Better than a battery, these devices can be configured to output 1-16A. Using a high-amp transformer, that means you can up tier 2 tiers with these devices. This HV energy buffer can power an HV machine for several hours, or an EV machine for almost an hour. Perfect for mining operations in far off dimensions."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":773,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2050,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockGreedyChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Greedy Chest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Greedy Chest from Automagy looks to have some interesting uses. It also gates a pretty important device for a magician..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockGreedyChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2051,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Another way to Ethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using a fermenter with excess saplings or other garbage will give you Forestry biomass. Higher Sappiness trait on your trees will get you better results."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2052,"preRequisites":[2051],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why no, this is not fit for human consumption","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Taking the biomass from the Fermenter and using it in a still will give you Ethanol. Not really worth it for power, but useful if you want to turn it into ethylene. You could set it up on an old steam setup with nothing better to do to get a more useful power source out of it, or use the Ethanol to power the setup and the forestry farm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2053,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":829,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Empty the oceans","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stuck with fish for biodiesel this long, you can now make the Zhuhai Fishing Port to get cartloads of fish and other byproducts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":829,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2054,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":876,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Putting all those workers out of jobs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The large scale auto-assembler will put things together for you, in volume. It is an Assembler, Disassembler, and Autocrafter all in one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":876,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2055,"preRequisites":[2051],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better fermenter outputs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a Squeezer you can boost the output from your fermenter, saving on Fertilzer or Mulch and getting more per sapling. There's a variety of crops you can use to make fruit juice, so have fun breeding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2056,"preRequisites":[1888],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lJacques Cousteau","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a Scuba Helmet you can safely explore underwater for long periods of time. You just need some compressed air cells. I'll trade you some Tin ingots for a few compressed air cells.\n\nAs your air drops, the helmet will take a compressed air cell and give back an empty cell. Throw these cells into your compressor and you can easily gather clay from beneath rivers. You'll be able to make more cells later once you get an extruder or a plate bender."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11057,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":5,"OreDict":""}]}]},{"questID":2057,"preRequisites":[1159,1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafPlate","Count":1,"tag":{"ench":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steeleaf armor is the next level in Twilight Forest armor. It can be handy as a defense in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17339,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.steeleafHelm","Count":1,"tag":{"ench":[{"lvl":2,"id":4}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafPlate","Count":1,"tag":{"ench":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafLegs","Count":1,"tag":{"ench":[{"lvl":2,"id":1}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafBoots","Count":1,"tag":{"ench":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.steeleafAxe","Count":1,"tag":{"ench":[{"lvl":2,"id":32}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafPick","Count":1,"tag":{"ench":[{"lvl":2,"id":35}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafShovel","Count":1,"tag":{"ench":[{"lvl":2,"id":32}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2058,"preRequisites":[1951,2059],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor III","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knightmetal is the top tier Twilight Forest armor. It doesn't come with any free enchants but it has high durability and high armor rating"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.knightlyHelm","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyLegs","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.knightlySword","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyPick","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyAxe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2059,"preRequisites":[1159],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.shardCluster","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Knightmetal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knightmetal ingots are loot taken from Goblin Knight Strongholds. They can be made into Diamond-tier armor. You can take Armor Shards and turn them into Knightmetal ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.armorShards","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":2060,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:HoverHarness","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying like....Mary Poppins?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Thaumostatic Harness grants you flight, using up Potentia from a jar. The speed isn't great though, so perhaps further research will yield some results."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:HoverHarness","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2061,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGirdleHover","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying with the greatest of ease","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ahh that's better. With this girdle you can really fly around like a true wizard. It does take a little extra potentia to use though, so keep an eye on your flying time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGirdleHover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2062,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Baubles","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Working while flying? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With these devices you can now fly and work at the same time without penalty. They can be found in the Witching Gadgets tab of the book. You will need a Swiftness potion for this device."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Baubles","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2063,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockThaumostaticSpire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Long distance power delivery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No mage wants to be restricted to short flying times. With this spire from the Automagy discipline you can transmit magical energy directy to your flying harness. To get the correct Thaumium block, compress 9 ingots to get the GT Thaumium block and then chisel that block to get the correct type.\n\nThis multiblock requires centi-vis to operate. You can use 2-6 Thaumostatic Pylons, with additional pylons extending the range. Provide the construct Aer centi-vis to operate, and will accept Potentia essentia to transfer to flyers. The construct will also accept Aer and Volatus essentia to increase the range and rate of transfer, respectively. Right-click the sides of the controller to control which type of essentia each side will accept."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockThaumostaticPylon","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:blockThaumostaticPylon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:quartz_block","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":2064,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:nodeManipulator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Healing your nodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many of the nodes of the wild have damage, and unjarring a captured node can also cause damage. The Node Manipulator can help you recover the nodes to full strength, and increase their recharge speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:nodeManipulator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"thaumicbases:nodeFoci","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2065,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:WG_WoodenDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Clothes makes the magical woman or man","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Witching Gadgets Spinning Wheel will unlock plenty of useful materials and items. Hopefully without that creep Rumpelstiltskin! Make sure you get the WG Spinning Wheel and not the Witchery version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:WG_WoodenDevice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WitchingGadgets:item.WG_Material","Count":4,"Damage":5,"OreDict":""}]}]},{"questID":2066,"preRequisites":[2065],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Cloak","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying like a eagl - I mean raven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This cloak will be a nice substitute for the Glider. There are plenty of other magical items worth a look in the Witching Gadgets tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Cloak","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2067,"preRequisites":[1998],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:lensFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Everything fuzzy? Try some lenses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have Goggles of Revealing, Thaumic Horizons offers various lenses with handy uses. This one will grant night vision. Try out some of the others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:lensFire","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicHorizons:lensCase","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2068,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dissEnchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Disenchanted ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you found an item or book with a good enchantment - but also a bunch of garbage, you can strip the enchantments into separate books using a Disenchanter. Surround it with bookcases to reduce damage done to the item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dissEnchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2069,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:GTPP.bauble.fireprotection.0.name","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHot hot hot!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you build your vacuum freezer, you are going to have to carry around hot ingots all the time. Your old gloves are falling apart, and take up both hands. I think there's a way you can glue them together so you can carry hot items with just one hand. Give these a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:GTPP.bauble.fireprotection.0.name","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11367,"OreDict":""}]}]},{"questID":2070,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:SlowBuildingRing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So you want to go slower...wait, what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you need to go slow so you don't fall off the top of your spire. Or you don't want to accidentally sprint in your fields and trample your crops. Maybe you don't want to have to hold sneak all the time. This bauble will weigh you down - keeping you from accidentally sprinting, and can be activated to enable/disable sneaking."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:SlowBuildingRing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8269,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2071,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPanning for gold is for chumps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have reached LuV you can make the god-tier prospector - The Electric Prospector. This handheld machine can provide detailed information on ores in the area, and return maps of how much fluid and what type is in each chunk."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2072,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Planetary Tears","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Indeed you will be crying over all the tiers you have to do for planets. Here is a handy reference.\n\nTier 1 - Needs Oxygen Gear\nMoon\n\nTier 2 - Requires Thermal Padding\nMars\nPhobos\nDeimos\n\nTier 3 - Requires Tier 2 Thermal Padding\nCeres\nAsteroids\nEuropa\nGanymeade\nCallisto\nRoss128b - Habitable Planet (need no Oxygen Gear/thermal padding)\n\nTier 4 - Need tier 2 thermal padding\nIo\nMercury\nVenus - Needs SpaceSuit\n\nTier 5 -Need tier 2 thermal padding\nEnceladus\nTitan\nMiranda\nOberon\n\nTier 6 -Need tier 2 thermal padding\nProteus\nTriton\n\nTier 7 -Need tier 2 thermal padding\nPluto\nHaumea\nMakemake\nKuiper Belt\n\nTier 8 -Need tier 2 thermal padding\nAlpha Centauri Bb - Requires SpaceSuit\nTau Ceti E - Habitable Planet (need no Oxygen Gear/thermal padding)\nVega B\nBarnarda C - Habitable Planet (need no Oxygen Gear/thermal padding)\nBarnarda E\nBarnarda F"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2073,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Bat)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...Did you expect a raid boss of some kind? If you count the number of bats you'll encounter and kill, then probably yes."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":6,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.699999988079071,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":6,"BatFlags":0,"id":"Bat","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-7074487613494084000,"Health":6,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":4040540653557534000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":250,"taskID":"bq_standard:hunt","target":"Bat","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":5,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":1,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":5,"BatFlags":0,"id":"Thaumcraft.Firebat","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-6261044372789276000,"Health":5,"damBonus":0,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":4875998536939948000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"Thaumcraft.Firebat","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spamcompressedsaltBlockalt","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:fish","Count":64,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2074,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Dire Wolf)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These kinds of wolves do not take kindly to you marching close to them or offering them bones! Neutral at first, but extremely hostile upon approaching close to them and dangerous. They'll rip the bones right off ya! Found within snowy forest biomes."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.5,"Name":"generic.movementSpeed"},{"Base":40,"Name":"generic.followRange"},{"Base":10,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"enderzoo.DireWolf","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-9065909997462844000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-243949381481577630,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"enderzoo.DireWolf","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2075,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Hellhound)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aggressive and can apply fire, although not a fast enemy either. Recommendation, avoid melee combat and offerings of bones."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.30000001192092896,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"witchery.hellhound","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8351910570511150000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-1547927940807901200,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":15,"taskID":"bq_standard:hunt","target":"witchery.hellhound","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2076,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:magma_cream","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Magma Cube)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now a Hell version of your slime! Always appears with Infernal status."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":1,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.20000000298023224,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":1,"id":"LavaSlime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5097572486836440000,"Health":1,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-4758778065320197000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":20,"taskID":"bq_standard:hunt","target":"LavaSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2077,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:slime_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Slime)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sticky and bouncy! Now in many variations. Say hello to my little friend, Lemon Slice!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":1,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":1,"id":"Slime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-7612310377822589000,"Health":1,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-239686335288032100,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":40,"taskID":"bq_standard:hunt","target":"Slime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2078,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Silverfish"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Silverfish)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Be wary, they like to disguise and clone themselves in stone-related blocks! (Applies to Vanilla blocks only) Can be found within dungeons. Can also be found in Drowning Creeper spawned cobblestone blocks."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":8,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.6000000238418579,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":1,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":8,"id":"Silverfish","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8975834499757947000,"Health":8,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-8086562575035774000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":15,"taskID":"bq_standard:hunt","target":"Silverfish","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2079,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Hey is that a friendly bumblebee?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aieee, no it's not, it's a nether wasp, kill it kill it kill it!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2.5,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"BiomesOPlenty.Wasp","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8451188845710707000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":1541882790712460300,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"BiomesOPlenty.Wasp","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2080,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.cocoa","Count":8,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Chocolate is bad for you...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...but sure is great for production! Chocolate frames in apiaries and alvearies will boost output, but cause shortened life. This can be useful for the devious beekeeper..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.cocoa","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2081,"preRequisites":[507,2083,1953],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:misc","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Welcome to Biology Class!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Binnie's Genetics mod will allow you to pick and chose traits for bees, trees and Botany flowers. But not for free! Doing this comes at a price.\n\nIt is better to provide power to an Enderio capacitor and then power these machines with RF, instead of powering directly with GT EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:misc","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2082,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Making bees more comfortable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The acclimatiser is a key machine for breeding your bees. With lots of energy and the appropriate ingredients you can toughen your bees to thrive anywhere. However, even with climate hardiness your bees still won't produce special items unless they are in their favorite climate. Along with the bee, put in these items to adjust the bee's traits:\n\nsnowball - More temp tolerance\nsand - More dry tolerance\nwater - More wet tolerance\n\nFor water, it is best to use wax capsules made from beeswax, the acclimatiser doesn't return cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:snowball","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:sand","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:waxCapsuleWater","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2083,"preRequisites":[103,578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:treealyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Such pretty leaves...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have entered MV you can begin breeding Forestry trees the smart way. Start by getting a Treealyzer, and scanning some common vanilla trees like oak, dark oak, spruce, birch, acacia, and jungle saplings. You will need to gather honey or honeydew drops from bee combs to power the Treealyzer. \n\nIf you want to bulk scan saplings, you can feed them through a GT scanner filled with honey.\n\nIf you have reached MV, you can try the Slice and Splice tab for information on Genetics."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:treealyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":2084,"preRequisites":[35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:grafter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Collecting the hybrids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you got lucky and found some bees in a village, put them in their housings next to some trees. Over time the bees will slowly pollinate the leaves of the trees. Using a grafter you can break the leaf blocks to retrieve the sapling. You can trade with villagers to get proven grafters that have a longer lifetime. Also investigate magic, you have heard rumors of long lasting grafters available to magicians. \n\nGregTech also offers a really nice tool, the Branch Cutter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:grafter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"Forestry:grafterProven","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":2085,"preRequisites":[36,2122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Seeing the fruits of your labors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It can be difficult to see which leafy blocks are pollinated. Craft a pair of spectacles to get a better view."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:grafterProven","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2086,"preRequisites":[145],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32722,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGrinding heads are better than none","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the SAG mill will work with no grinding heads, flint heads only save a little power. If you want to exploit the true capability of the SAG mill, you want to use Diamond or Tungsten grinding heads. Craft me a Diamond and I'll give you a Tungsten as a reward."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32722,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32723,"OreDict":""}]}]},{"questID":2087,"preRequisites":[1987],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgradeLock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lKey to your heart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Barrels by default allow locking the barrel to a specific item, even when empty. For drawers however you will need to make the Drawer Key to lock its content types."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgradeLock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:fullDrawers1","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2088,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Incubator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This is a crafting machine that heats items and liquids to a temperature that encourages bacterial growth. \n\nThe first step of incubation is the creation of Liquid Growth Medium, which is made from incubating Water and Growth Medium. This is subsequently incubated with Wheat to give Bacteria. This solution of bacteria can then be incubated a third time with Sugar to give Enzyme. This is an important compound used in other machines.\n\nThe best way to create enzyme is therefore to chain three incubators together, for each step of the process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:labMachine","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2089,"preRequisites":[1123,1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialApiary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Bees by the millions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need endgame high speed bee production, industrial apiaries are the path to follow. Industrial Apiaries take upgrade frames that never break. Production frames can be stacked up to 8 high. It also has many options for emulation, more pollen retrieval, and others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:IndustrialApiary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:UpgradeFrame","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":2090,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:frameMutagenic","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fastest way to get there","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A GT++ Mutagenic frame will get your bees to their final destination faster than you can blink. Just remember to wear your rubber suit while making it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:frameMutagenic","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":2091,"preRequisites":[1123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgrading the Alveary (tier 1)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These basic upgrades to the Alveary make it more powerful. \n\nFrame housing - Automation-enabled frames for the Alveary\nSwarmer - Creates additional Ignoble queens in hives around the Alveary\nHygroregulator - Controls for humidity, and to a lesser extent temperature. Will require lava or water.\nStabilizer - Prevents the princess or queen from changing species. Ideal for breeding traits into a line.\nSieve - Instead of the pollen from a bee fertilizing a nearby tree, it is stored here and can be manually applied. Requires manually placing woven silk in the inventory.\nRain shield - Keeps bees that are not rain tolerant dry and working.\nHatchery - Hatches larval bees for use in Genetics or to create additional drones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":1,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":2,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":5,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":6,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":7,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":2,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:alveary","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2092,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Busy Bees Buzzing Boldly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These upgrades can significantly increase your production rate by keeping your bees from stopping production.\nTransmission - Provides power to frame blocks that need it throughout the alveary.\nAlveary Fan - Cools your temperature a large amount.\nAlveary Heater - Warms your temperature a large amount.\nLighting - Provides light for bees that do not work at night."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":6,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":3,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":4,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:alveary","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2093,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A stim a day keeps the doctor awake","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Supporting circuit boards that can hold 4 electron tubes, the Electrical Stimulator provides a variety of functions. All numbers are in percent\n\nLV - Prod: 150 (Max 500) - Iron ET\nHV - Prod: 250 (Max 1000) - Diamantine ET\nBiotic - Poll: 150 (Max 500) - Apatine ET\nCharged - Life: 80 (Min 20) - Obsidian ET\nGentle - Life: 150 (Max 500) - Lapis ET\nMolten - Simulates the Nether - Blazing ET\nMutagenic - Muta: 150 (Max 500) - Golden ET\nInhibiting - Terr: 40 (Min 10) Prod: 90 (Min 50) - Tin ET\nAgitating - Terr: 150 (Max 500) - Bronze ET"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:thermionicTubes","Count":8,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2094,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"X-Men, or should I say X-Bee?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Mutator can vastly accelerate genetic mutations, even allowing those ultra rare bees to be bred. Items inserted into the Mutator control how much mutation it causes.\n\nSoul Sand - 50 percent increase\nEnder Pearl - 100 percent increase\nEye of Ender - 300 percent increase\nNether star - 1000 percent increase"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:soul_sand","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2095,"preRequisites":[2088],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genepool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another important resource is Raw DNA. This can be obtained from any breedable organism such as bees, trees or flowers, and is created in the Genepool. The Genepool requires both Ethanol and Enzyme to digest the DNA, and will destroy the organism. Note this gives raw DNA, and does not preserve any genes or alleles present."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":1,"Damage":771,"OreDict":""}]}]},{"questID":2096,"preRequisites":[2095],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Isolator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Isolator acts in a similar way to the Genepool, but does not completely destroy genes. It instead allows the isolation of a single gene from an organism, without destroying it. The exact gene is random, and is written into an Blank Sequence. Until the sequence is analysed in an Analyser, it will be unknown what the gene is. It doesn't however need to be analysed before being sent to the Sequencer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":16,"Damage":5,"OreDict":""}]}]},{"questID":2097,"preRequisites":[2096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sequencer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After obtaining a DNA Sequence with the gene that you wish, it must be placed in the Sequencer. This uses Fluorescent Dye to determine the correct sequence, and when completed logs the discovery. The important thing here is that the discovery goes to the person who placed the machine.\n\nGenes are sequenced faster if the sequence has been placed in a Polymeriser first to increase the strength."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""}]}]},{"questID":2098,"preRequisites":[2097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Polymeriser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Serums and sequences can be placed in a Polymeriser to increase their strength and amount of DNA held within. Serums need to be polymerised at least once before being used in the inoculator. To polymerise, both Raw DNA and Polymerising Bacteria are required. Raw DNA is obtained from the Genepool, and Polymerising Bacteria is made from incubating bacteria with bonemeal. Gold nuggets can be used as a catalyst to speed up the process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":8,"Damage":771,"OreDict":""}]}]},{"questID":2099,"preRequisites":[2097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gene Database","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Discovered genes are logged into the Gene Database. This handheld device lists all genes by the type of organism they apply to. To add a gene to an Empty Serum Vial to allow inoculation, the desired gene can be clicked on while holding the vial. An Empty Serum Array can be used to hold more than one gene at once."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":8,"Damage":6,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":7,"OreDict":""}]}]},{"questID":2100,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lab Stand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Lab Stand is a block on which an Apiarist Database, Arborist Database, Botanist Database or Gene Database can be placed by right clicking on the placed stand with the database, attaching it and allowing the database to be accessed by right clicking on the stand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""},{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""},{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2101,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Combined analyzers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of carrying around seperate bee, tree, and butterfly analyzers? This combined tool will do all 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":2,"Damage":9,"OreDict":""}]}]},{"questID":2102,"preRequisites":[2099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:registry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Registry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Registry combines the existing four databases into a new sleek browser to allow the properties, mutations and genes of all discovered bees, trees, butterflies and flowers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:registry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":4,"Damage":7,"OreDict":""}]}]},{"questID":2103,"preRequisites":[2098],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inoculator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final step is inoculation. Currently the only machine capable of inserting genes is the Inoculator. This uses Bacteria Vector, created by incubating Bacteria and Blaze Powder, to transfer the gene into organisms.\n\nOnly the young stage of organisms can be injected, which are larvae (bees), pollen (trees and flowers) and caterpillars (butterflies). Bee larvae can be converted into drones by incubating with Liquid Growth Medium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":8,"Damage":772,"OreDict":""}]}]},{"questID":2104,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:misc","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tools for the Geneticist","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You'll need various tools and supplies before you start manipulating genetic material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:misc","Count":16,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":5,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":6,"OreDict":""},{"id":"Genetics:misc","Count":1,"Damage":7,"OreDict":""},{"id":"Genetics:misc","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":8,"Damage":7,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2105,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping track of your findings (Botany)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This handy device will keep track of the flowers you have discovered so far, and their properties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2106,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:flutterlyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Figuring out Butterflies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Butterflies don't do much, but this analyzer will give you details on their abilties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:flutterlyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":""}]}]},{"questID":2107,"preRequisites":[2083],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping track of trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This device will keep track of all the trees you have discovered."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitLemon","UID0":"forestry.fruitLemon","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""}]}]},{"questID":2108,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bee more knowledgeable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This database keeps track of everything bee."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":20,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""}]}]},{"questID":2109,"preRequisites":[2106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:databaseMoth","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluttering Facts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This database tracks all your knowledge of butterflies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:databaseMoth","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2110,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speeding up slow machines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many mods don't have methods of speeding up their slow machines. For this, you'll need a GregTech World Accelerator. It guzzles amps though so your power infrastructure better be ready for it. The tooltip will list the performance boost provided. For block-based acceleration, the WA will do an area around it. For TileEntities like most machines, it will only accelerate the blocks directly touching the WA, and will need to be reconfigured with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30709,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30742,"OreDict":""}]}]},{"questID":2111,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hail to the King","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you get lucky, you might find a King Slime in your travels. Kill it and I'll give you a really nice replacement head for one of your tools."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":100,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":100,"id":"TConstruct.KingSlime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8845708440277897000,"Health":100,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-8369209673811083000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TConstruct.KingSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:hammerHead","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:excavatorHead","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:broadAxeHead","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":2112,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":0}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sometimes life is scary and dark - Bring a backpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are MV, you can make an Adventure Backpack. This very useful backpack can do many things. It can store 2 tools for quick access, has internal tanks for containing liquids - use the Hose to access them, a built in crafting table, and storage. When placed on your back, it can be accessed using a quick-access key, default is B. Check your controls for details. \nWhen placed on the ground, it can be accessed with a right-click. While on the ground, the bedroll can be deployed and used. \nThey can also be upgraded to add special abilities. For more special abilities than those featured here, check the Adventure Backpacks wiki."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:beefwellingtonItem","Count":64,"Damage":0,"OreDict":""},{"id":"adventurebackpack:backpackHose","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2113,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":2}},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See like a ... bat?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nightvision is a great backpack ability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":2}},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:rainbowcurryItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2114,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":62}},"Damage":62,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Swim like a .... squid?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need to go deep or explore in the water, this is the backpack for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":62}},"Damage":62,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:meatfeastpizzaItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2115,"preRequisites":[2139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":51}},"Damage":51,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walk through fire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Pigman backpack will make the Nether ezpz with fire resistance. You'll have to figure out a way to get struck by lightning while wearing a Pig backpack to get it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":51}},"Damage":51,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:supremepizzaItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2116,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":29}},"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Creeper Repellant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An ocelot backpack will get those creepers running away from you. Nice protection against those drowning creepers! Don't get too close to them or else their repulsion will be overriden and they will blow up!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":29}},"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fishandchipsItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2117,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":1}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Milk without the cow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Cow backpack will generate milk from wheat placed in its inventory. Great for a lazy farmer!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":1}},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wheat","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2118,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":22}},"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Here be dragons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dragon backpack gives you Fire Resistance, Strength, Water Breathing, Night Vision and Regeneration."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":22}},"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:music_disk","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":2119,"preRequisites":[184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Smart cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smart cables are better than glass or covered cables because you can visually see many channels are in use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":56,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":56,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2120,"preRequisites":[2119],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":76,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dense cables are going to be your network backbones. They can transfer 32 channels and display the number of channels in use. Busses and flat interfaces cannot be placed directly on them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":76,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":76,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2121,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":30,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better Grafter through Technology","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The GT Branch Cutter is much better than the forestry grafters. It can have much higher durability based upon which material you use to create it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{}},"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:fruits","Count":64,"Damage":3,"OreDict":""}]}]},{"questID":2122,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"forestry.fruitApple","UID0":"forestry.fruitApple","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speak for the trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You'll need to find a bunch of vanilla trees to start your breeding program. To convert them directly to Forestry trees, you can use a Treealyzer - but you'll need a carpenter and aluminium from MV for that. Alternatively, you can just grow a bunch of vanilla trees and surround them by good pollination bees in bee housing. Spectacles will help you see the fertilized leaves to harvest with your Grafter or Branch Cutter.\n\nCompleting the quests will require scanned trees, but you can progress on breeding while waiting for your GT Scanner or Treealyzer to be made."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeDarkOak","UID0":"forestry.treeDarkOak","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcaciaVanilla","UID0":"forestry.treeAcaciaVanilla","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBirch","UID0":"forestry.treeBirch","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeSpruce","UID0":"forestry.treeSpruce","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeJungle","UID0":"forestry.treeJungle","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2123,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sapling","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unlocking tree breeding lines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No Description"}},"tasks":{},"rewards":{}},{"questID":2124,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLime","UID0":"forestry.treeLime","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Silver Lime","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silver Lime, a basic tree breed. Breed it by mating Silver Birch with Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLime","UID0":"forestry.treeLime","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestryI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2125,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeTeak","UID0":"forestry.treeTeak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Teak","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Teak is the first step to Cocobolo, a true giant. Breed it by mating Jungle and Dark Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeTeak","UID0":"forestry.treeTeak","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2126,"preRequisites":[2125,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBalsa","UID0":"forestry.treeBalsa","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarge","UID0":"forestry.heightLarge","Slot":2},{"UID1":"forestry.saplingsHigh","UID0":"forestry.saplingsHigh","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Balsa","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Balsa has some pretty wood. Breed it by mating Teak and Acacia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBalsa","UID0":"forestry.treeBalsa","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2127,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.beech","UID0":"extratrees.species.beech","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightAverage","UID0":"forestry.heightAverage","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.beechnut","UID0":"extratrees.fruit.beechnut","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Common Beech","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Common Beech gives you access to the Faster maturity attribute. Breed them from Silver Birch and Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.beech","UID0":"extratrees.species.beech","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2128,"preRequisites":[2124,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCherry","UID0":"forestry.treeCherry","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmaller","UID0":"forestry.heightSmaller","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"forestry.fruitCherry","UID0":"forestry.fruitCherry","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hill Cherry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hill Cherry is a key tree for breeding purposes. Breed it by mating Silver Lime with Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCherry","UID0":"forestry.treeCherry","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2129,"preRequisites":[2123,2128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeWalnut","UID0":"forestry.treeWalnut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightAverage","UID0":"forestry.heightAverage","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitWalnut","UID0":"forestry.fruitWalnut","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i2d","UID0":"forestry.i2d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Common Walnut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Common Walnut is a mediocre choice for a seedoil tree, only producing 54L per nut. Breed it by mating Hill Cherry with Silver Lime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeWalnut","UID0":"forestry.treeWalnut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2130,"preRequisites":[2129,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.butternut","UID0":"extratrees.species.butternut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmaller","UID0":"forestry.heightSmaller","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.butternut","UID0":"extratrees.fruit.butternut","Slot":4},{"UID1":"forestry.yieldLow","UID0":"forestry.yieldLow","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i2d","UID0":"forestry.i2d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Butternut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Butternut tree is a pretty good seedoil producer at 180L per nut. Breed it by mating Hill Cherry with Common Walnut.\n\nIt's attributes aren't that great, but with a little crossbreeding you can get that 2x2 giant with fast production. For optimal fruit production speed, try breeding Fruity bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.butternut","UID0":"extratrees.species.butternut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2131,"preRequisites":[2123,2128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitLemon","UID0":"forestry.fruitLemon","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lemon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lemon trees are great for maximum fruit juice production. Breed it by mating Hill Cherry with Silver Lime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2132,"preRequisites":[2131,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treePlum","UID0":"forestry.treePlum","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitPlum","UID0":"forestry.fruitPlum","Slot":4},{"UID1":"forestry.yieldHigh","UID0":"forestry.yieldHigh","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Plum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Plum is a great multipurpose tree. It has optimal yield and its fruit produces mulch with the highest chance. It also has decent sappiness for biomass production. Breed it by mating Hill Cherry with Lemon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treePlum","UID0":"forestry.treePlum","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2133,"preRequisites":[2126,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcacia","UID0":"forestry.treeAcacia","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeDesert","UID0":"forestry.plantTypeDesert","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Desert Acacia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Desert Acacia. Another step on the road. Breed it by mating Teak with Balsa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcacia","UID0":"forestry.treeAcacia","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2134,"preRequisites":[2133,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCocobolo","UID0":"forestry.treeCocobolo","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLargest","UID0":"forestry.heightLargest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Cocobolo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cocobolo is a nice tall tree, perfect for mating into your Plum or Butternut to maximize their yield. Breed it by mating Desert Acacia with Dark Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCocobolo","UID0":"forestry.treeCocobolo","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2135,"preRequisites":[2123,2133],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeMahoe","UID0":"forestry.treeMahoe","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessHigh","UID0":"forestry.sappinessHigh","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationSlowest","UID0":"forestry.maturationSlowest","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blue Mahoe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Blue Mahoe has the most sappiness of any tree. It will vastly increase the efficiency of your biomass production with Fermenters. Breed it by mating Balsa with Desert Acacia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeMahoe","UID0":"forestry.treeMahoe","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2136,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockEnergyAcceptor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Energy Acceptor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Energy Acceptor is an alternative place to inject energy into your AE2 network. Generally, you want to inject energy at the controller because if it cannot see an EA within the first 8 parts, the network will not form anyways.\n\nYou can form a \"dumb\" network with just an EA, but for real capability, you'll want a Controller."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockEnergyAcceptor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2137,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockController","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME Controller","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The heart of your ME network. Inject energy into here as well to power your network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockController","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2138,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32402,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Making Sense of Spaghetti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody likes an untidy base. You can craft a spray can and fill it with Chemical Dye made from sulfuric acid to color coordinate your carpets, cables, wires, and machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32402,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32432,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32452,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32438,"OreDict":""}]}]},{"questID":2139,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":53}},"Damage":53,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oink!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the Pig backpack is useless on its own, it can be turned into a pretty powerful tool with the right...motivation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":53}},"Damage":53,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:bbqpulledporkItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2140,"preRequisites":[495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Diamond","MaxDamage":128000,"SecondaryMaterial":"Wood","Damage":24770}},"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA Fool Fit for a King","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Only the craziest fool would use diamonds to make a tool! Or is it crazy like a fox?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Diamond","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29500,"OreDict":""}]}]},{"questID":2141,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWelcome to the Church of Benzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you made it to MV using steam, you're probably wondering how to survive going further. One option is to switch to Light Fuel, discussed in LV. Another option is to use Benzene. Benzene is made from Wood Tar. There are a couple of pathways for that. Both start with logs from trees. \n\nOne path is to use Coke ovens or Advanced Coke Ovens to make charcoal, and fluid-extract Wood Tar from it (use LV fluid extractors for maximum EU efficiency). Then distill the Wood Tar to make Benzene. This method produces no pollution.\n\nThe second path is to use the Pyrolyze Oven multiblock and Nitrogen gas to extract Wood Tar and Charcoal. Fluid Extract the Charcoal for addtional Wood Tar. Then proceed as above. This method will create pollution from the Pyrolyze, but will provide more Benzene per log.\n\nExcess wood tar can also be turned into Toluene, a key ingredient for explosives that you will need later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30686,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2142,"preRequisites":[91,576],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:autoWorkbenchBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAutomated Crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Auto Workbench is a simple automated crafting system. You select the recipe in the grid, and place components in the inventory. They will slowly be converted into the crafted item. While not fast, it does support automation - only items acceptable to the recipe is allowed in the inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BuildCraft|Factory:autoWorkbenchBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":2143,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"BiblioCraft:BiblioLamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChoices, choices","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need a map on fuel choices? Well, we don't have that but we have suggestions. You can run Steam from burning up to EV, but beyond MV it gets pretty painful. \n\nIn LV you can start refining oil for either Light Fuel or Refinery Gas, which will be good for you to EV. \n\nOnce you hit MV you can switch from Steam to renewable Benzene from your logs if you decided to hold out. Other renewable alternatives are Fishoil or Seedoil based Biodiesel. Seedoil can be sourced from Pam's peanuts, IC2 Rape crop or Forestry tree nuts.\n\nAlso at MV you can upgrade your Light Fuel with Heavy Fuel to get Diesel.\n\nWhen you reach HV turn Diesel or Biodiesel into Cetane Boosted Diesel.\n\nAfter reaching the Moon, Wind and Water Kinetics are available.\n\nEV introduces the Large Gas Turbine and Large Combustion Engine, along with granting access to Nukes.\n\nFor low usage operations, or dedicated players willing to setup automation systems, you can begin using Solar Panels at MV."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2144,"preRequisites":[940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDon't put a finger in that socket","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to pass multiple amps through your cleanroom walls, use a one-way Diode. Also handy to limit power when branching off a main power line to trunk lines that normally will not use as many amps, but you want to prevent catching fire while filling buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2037,"OreDict":""}]}]},{"questID":2145,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ArcaneDoorKey","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lE_TOO_MANY_KEYS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ERROR: Too many keys to fit a 104 key keyboard. You will need to redefine your keymap so that you can use things effectively. Here is a list of keys you should deconflict.\n\nAdventure Backpacks\nB - Inventory\nV - Toggle\nBackpacks\nG - Open Backpack (sneak-G to wear/remove backpack and set filtering)\nDark Steel Armor\nApostrophe - Night Vision\nGameplay\nR - Draw Weapons\nZ - Special (cycle arrows on M&B quiver)\nNONE - Drop Item (Who wants to throw a backpack into lava?)\nIC2\nC - Side Invetory Key\nJourneymap\nHome - Make Waypoint\nJ - Open Map\n= - Zoom In (works on minimap too)\n- - Zoom Out (same)\nMisc\nH - Toggle Hover Harness\nF - Toggle Wand Focus\nTC Node Tracker\nI - Node List (must be scanned, goggles allow compass)\nX - Zoom key (handy for checking on distant ores on a mountain)\nTinker's Construct\nDelete - Traveller's Belt Swap Hotbar"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2146,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BRRRRAAAAAAAIIIIIIINNNNNNNSSSSS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Automagy is a little subtle about what the \"smort\" mage needs to do next. Make some crystalline brains and scan them to unlock the next stage. You'll want to use the zombie brains you've been collecting from dangerous Furious zombies found at Eerie nodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemZombieBrain","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":3,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":4,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":3,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":4,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2147,"preRequisites":[2146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:avaricePearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gimme gimme gimme","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Avarice Pearl is the next object Automagy requires you to interact with in order to unlock the next section. Make an Avarice Pearl , throw some stuff on the ground, and throw Avarice Pearls at them by right-clicking quickly over and over to get a Shathered (ha ha) Pearl to unlock a few more research items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:avaricePearl","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Automagy:horizontal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2148,"preRequisites":[1677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§k§n§r§b§lEngraved Lapotrons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"IV tier batteries require a large investment. First, you will need to laser engrave 8 Lapotrons. Make sure to do this in a cleanroom.\n\n§4They're also used for some advanced AE2 chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":8,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32714,"OreDict":""}]}]},{"questID":2149,"preRequisites":[2148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32597,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lLapotronic Energy Orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Lapotronic Energy Orb is the IV tier battery item. It can store 100M EU. Don't charge it until you have verified it for the quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32051,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32597,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32103,"OreDict":""}]}]},{"questID":2150,"preRequisites":[2149],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AFSU:AFSU","Count":1,"tag":{"energy":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOne BILLION EU","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want a stationary battery, you can make an AFSU capable of storing up to 1 billion EU and charging items. You can pick it up with a wrench, but you'll lose a percentage of the stored EU. Make sure you right-click, not left-click. Left-clicking will cause it to lose all stored EU.\n\nAs an alternative, if you can afford them, try the GT++ Energy Buffers. They are more expensive and cannot charge items, but store more, don't lose any EU, and can be configured from 1-16A. See the GT++ tab for details."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AFSU:ALC","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AFSU:AFSU","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}]}]},{"questID":2151,"preRequisites":[29],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8538,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Can't spell Lignite without Ignite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Truly the fuel of the gods!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:coal","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemDust","Count":64,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":538,"OreDict":""}]}]},{"questID":2152,"preRequisites":[29],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Who would use this garbage??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Truly the fuel of idiots!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":8538,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2538,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":65,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:coal_ore","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2153,"preRequisites":[2155,2154,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fruit","UID0":"extrabees.species.fruit","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sugar","UID0":"extrabees.flower.sugar","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.bonemeal_fruit","UID0":"extrabees.effect.bonemeal_fruit","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fruity bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fruity bees will make your Forestry trees ripen their fruit faster. Breed them using a Sweetened and Thriving."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fruit","UID0":"extrabees.species.fruit"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2154,"preRequisites":[2156,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.sweet","UID0":"extrabees.species.sweet","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sugar","UID0":"extrabees.flower.sugar","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sweetened","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sweetened bees can make you sugar. Breed them from Valiant and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.sweet","UID0":"extrabees.species.sweet"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2155,"preRequisites":[2157,2158,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.thriving","UID0":"extrabees.species.thriving","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.leaves","UID0":"extrabees.flower.leaves","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thriving","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thriving bees don't have an effect, but are a necessary step for Fruity. Breed them from Growing and Unweary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.thriving","UID0":"extrabees.species.thriving"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2156,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDiligent","UID0":"forestry.speciesDiligent","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Diligent","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diligent bees are a core breeding stock bee. Breed them from Common and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDiligent","UID0":"forestry.speciesDiligent"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2157,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesUnweary","UID0":"forestry.speciesUnweary","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Unweary","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unweary bees are key to a couple of breeding lines. Breed them with Diligent and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesUnweary","UID0":"forestry.speciesUnweary"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2158,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.growing","UID0":"extrabees.species.growing","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.leaves","UID0":"extrabees.flower.leaves","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Growing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Growing bees are the start of the Fruity specific breeding tree. Breed them from Forest and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.growing","UID0":"extrabees.species.growing"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2159,"preRequisites":[405,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bees Template - change to OR when copying, back to AND to hide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Get the princess bee and reward bag in NEI first. \nDo Advanced and set the icon to the bee.\nDo Task, and select the stone, and replace it with the princess.\nBefore closing, select the ... next to the bee name and press Raw NBT\nGo into Tag, Genome, Chromosomes. The first one is the name and must stay. \nGo inside there and delete the first entry, keep both of the species so players\nmust have purebreeds.\nDelete the rest of the chromosomes.\nDelete the rest of the entries for Genome.\nRemove the Infinity unlock requirement."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2160,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"CarpentersBlocks:blockCarpentersBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carpenter's Blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yet another custom block system! Carpenter's blocks are crafted blank and placed in-world, and then plain block textures applied to them. The blocks must not be Tile Entities, so Botany blocks don't work correctly with them, but GT Stones like Red Granite, and any colored clay or vanilla glass block will work. Some Chisel glass types will work, and Ztones blocks and Tinted Glass also work.\n\nThe Garage Door requires a block at the top to hang \"down\" from, but can pretty much be any length. A redstone signal on any block next to the Garage Door blocks will open or close the door. The open/close will propagate across multiple vertical doors, so you can setup non-square doors. Sneaking and right-clicking with an empty hand will change the door's polarity.\n\nThe pressure plates are player-only activation, making them great for doors into your base.\n\nThe hatches must be clicked on the side of a block to place. They can be handy for protecting you from crucible...byproducts.\n \nThere is a lot more block shapes possible, check NEI for \"Carpenter's\" to see the options.\n\nThe Chisel allows you to chisel blocks while attached to a Carpenter's block.\n\nThe Hammer allows various functions.\n\nHammer on door - changes door shape type\nSneak Hammer on door - Changes from iron to wooden behavior\nSneak Hammer on lever - Changes polarity (which direction is on/off)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersButton","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersLever","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersPressurePlate","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersGarageDoor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"CarpentersBlocks:itemCarpentersHammer","Count":1,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:itemCarpentersChisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2161,"preRequisites":[70],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:warningSign","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSafety first","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For those new to GregTech, here are some tips and warnings about electricity. \n\nMachines don't like being out in the rain, and will start fires nearby. Fires next to a machine have a random chance of an explosion. Also, sending too high voltage to a machine will cause a near-instant explosion.\n\nSending too high a voltage or too many amps down a cable will cause the cable to burn up and start fires, which may then cause machine explosions. Make sure the number of amps provided by generators and buffers to a wire does not exceed the amps it is capable of carrying.\n\nA generator that supplys 1A can possibly feed multiple machines, if their recipes require less than full voltage. For example, macerators doing ore only need 2 EU/t, so you could run 4 or 5 off of a single 1A generator, as long as the wires aren't too long. But be careful! Sometimes a recipe needs a lot more EU than you expect, like a macerator sand -> quartz dust recipe.\n\nA single block machine starved of EU will restart progress but not lose the recipe items. A multiblock machine will lose the items."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemHatTinFoil","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2162,"preRequisites":[1788,2163],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCopper","UID0":"gregtech.bee.speciesCopper","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Copper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Copper bee is the first of the metal lines. There are too many metal breeding lines to cover here, but by now you should be able to use NEI to figure out how to breed more bee types. Copper bees require a copper block beneath the bee housing. Breed them from Majestic and Clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCopper","UID0":"gregtech.bee.speciesCopper"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2163,"preRequisites":[1788,2164],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Clay bee","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To breed a Clay bee you must put a Clay block beneath the housing. Clay bees are the bedrock of many important bee lines. Breed them from Industrious and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2164,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesIndustrious","UID0":"forestry.speciesIndustrious","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Industrious","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Industrious bees produce pollen clusters, a key ingredient to the Alveary. They're also used for breeding many other bees. Their pollination speed is Fast, better than most bees. Breed them from Diligent and Unweary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesIndustrious","UID0":"forestry.speciesIndustrious"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2165,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSlimeball","UID0":"gregtech.bee.speciesSlimeball","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Slimeball","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slimeballs aren't super useful, but you can easily breed this bee to make them. It's a necessary step on the way to Oil though. You will need a Congealed Slime Block beneath the bee housing. Breed them from Clay and Marshy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSlimeball","UID0":"gregtech.bee.speciesSlimeball"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2166,"preRequisites":[1788,2165],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesStickyresin","UID0":"gregtech.bee.speciesStickyresin","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Stickyresin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Never having to use a treetap again? Sign me up! You'll need to put a Rubber Wood log beneath the bee housing. Breed them from Slimeball and Peat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesStickyresin","UID0":"gregtech.bee.speciesStickyresin"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2167,"preRequisites":[1788,2168,2166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOil","UID0":"gregtech.bee.speciesOil","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, Black Gold. The Oil bee, with proper...encouragement...can take care of all your power and chemical needs for quite some time. An alternate bee, Distilled, provides slightly more oil but has a longer breeding chain. It is below the Magical bees. Breed them from Coal and Stickyresin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOil","UID0":"gregtech.bee.speciesOil"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2168,"preRequisites":[1788,2169],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCoal","UID0":"gregtech.bee.speciesCoal","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectCreeper","UID0":"forestry.effectCreeper","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah yes, Coal is King indeed. A great bee, giving you Coal to use to power your industry. Will require a Coal Block under your bee housing. This bee will also have the first really dangerous effect - it will apply a creeper explosion to you if you are not wearing your Apiarist suit. Breed them from Peat and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCoal","UID0":"gregtech.bee.speciesCoal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2169,"preRequisites":[1788,2170],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPeat","UID0":"gregtech.bee.speciesPeat","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Peat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Peat from these bees can be used in furnaces and boilers. Free fuel is free, right? Breed them from Rural and Clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPeat","UID0":"gregtech.bee.speciesPeat"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2170,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesRural","UID0":"forestry.speciesRural","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rural","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rural bees like to live out in the country - you'll have to relocate to a Plains-type biome for these. Breed them from Diligent and Meadows."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesRural","UID0":"forestry.speciesRural"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2171,"preRequisites":[1788,2155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.blooming","UID0":"extrabees.species.blooming","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sapling","UID0":"extrabees.flower.sapling","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.bonemeal_sapling","UID0":"extrabees.effect.bonemeal_sapling","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blooming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Blooming bee will bonemeal nearby saplings. This can definitely help your log and sapling production rate. They also provide the fastest pollination. Breed them from Industrious and Thriving."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.blooming","UID0":"extrabees.species.blooming"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2172,"preRequisites":[1788,2173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesDiamond","UID0":"gregtech.bee.speciesDiamond","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Diamond","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah finally, a girl..I mean Queen's best friend. Will require a block of Diamond. Breed from Certus and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesDiamond","UID0":"gregtech.bee.speciesDiamond"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2173,"preRequisites":[1788,2174,2175],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCertus","UID0":"gregtech.bee.speciesCertus","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Certus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Certus Quartz bee. Hmm, does it have any breeding requirements? I can't see to remember. Maybe try a block of Certus Quartz? Breed it from Lapis and Hermitic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCertus","UID0":"gregtech.bee.speciesCertus"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2174,"preRequisites":[1788,2176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLapis","UID0":"gregtech.bee.speciesLapis","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lapis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a bee with some real promise. The Lapis bee will require a block of lapis to breed. Breed them from Demonic and Imperial."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLapis","UID0":"gregtech.bee.speciesLapis"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2175,"preRequisites":[1788,2179],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHermitic","UID0":"forestry.speciesHermitic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectRepulsion","UID0":"forestry.effectRepulsion","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hermitic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hermitic bees have the same no-entities requirement as Secluded, but they solve that problem themselves. They are so repugnant they repel mobs near them. Breed them from Secluded and Monastic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHermitic","UID0":"forestry.speciesHermitic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2176,"preRequisites":[1788,2177,2178],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDemonic","UID0":"forestry.speciesDemonic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Demonic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better be careful with this one! It will set you on fire. In addition to combs, this bee can produce Glowstone Dust. It will require Nether to breed. Breed them from Sinister and Fiendish."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDemonic","UID0":"forestry.speciesDemonic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2177,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSinister","UID0":"forestry.speciesSinister","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sinister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sinister bees will hurt nearby mobs and players. Make sure to wear your suit. They will require breeding in the Nether. Breed them from Modest and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSinister","UID0":"forestry.speciesSinister"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2178,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFiendish","UID0":"forestry.speciesFiendish","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fiendish","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like Sinister, Fiendish requires the Nether and a protective bee suit. Breed them from Sinister and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFiendish","UID0":"forestry.speciesFiendish"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2179,"preRequisites":[1788,2180,2185],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSecluded","UID0":"forestry.speciesSecluded","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Secluded","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Secluded bees are real loners. There must not be any entities within their territory for them to produce their combs. The Mellow combs can produce Nether quartz. Breed them from Monastic and Austere."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSecluded","UID0":"forestry.speciesSecluded"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2180,"preRequisites":[1788,2181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAustere","UID0":"forestry.speciesAustere","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectCreeper","UID0":"forestry.effectCreeper","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Austere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another bee that requires an attentive beekeeper. Without an Apiarist suit, this bee will inflict creeper explosions on you. Watch you. It will require a hot or hellish biome with Arid humidity. Breed them from Modest and Frugal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAustere","UID0":"forestry.speciesAustere"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2181,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFrugal","UID0":"forestry.speciesFrugal","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Frugal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Frugal bee doesn't have much direct use, but is part of many breeding lines. It will require a hot or hellish biome and arid humidity. Breed them from Modest and Sinister."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFrugal","UID0":"forestry.speciesFrugal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2182,"preRequisites":[1788,2183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstonealloy","UID0":"gregtech.bee.speciesRedstonealloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Redstone Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Obviously, a block of Redstone Alloy is required, right? Breed them from Red Alloy and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstonealloy","UID0":"gregtech.bee.speciesRedstonealloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2183,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedalloy","UID0":"gregtech.bee.speciesRedalloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Red Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Red Alloy princess will require a block of Red Alloy. Breed them from Redstone and Copper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedalloy","UID0":"gregtech.bee.speciesRedalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2184,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstone","UID0":"gregtech.bee.speciesRedstone","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Redstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone princess will require a block of Redstone. Breed them from Industrious and Demonic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstone","UID0":"gregtech.bee.speciesRedstone"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2185,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMonastic","UID0":"forestry.speciesMonastic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Monastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Monastic bees aren't found in hives or bred. Instead you will need to find a Beekeeper villager and trade with them for it. There are various ways to make more villagers, so do some research. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMonastic","UID0":"forestry.speciesMonastic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2186,"preRequisites":[1788,2188,2187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesVibrantalloy","UID0":"gregtech.bee.speciesVibrantalloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vibrant Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally. It was a long, hazardous road, but you can now get Vibrant Alloy directly from a bee. Great job. You'll need a Block of Vibrant Alloy. Breed them from Energetic Alloy and Phantasmal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesVibrantalloy","UID0":"gregtech.bee.speciesVibrantalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2187,"preRequisites":[1788,2182],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergeticalloy","UID0":"gregtech.bee.speciesEnergeticalloy","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Energetic Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic Alloy will require a block of Energetic Alloy, of course. Breed them from Redstone Alloy and Demonic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergeticalloy","UID0":"gregtech.bee.speciesEnergeticalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2188,"preRequisites":[1788,2189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesPhantasmal","UID0":"forestry.speciesPhantasmal","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectResurrection","UID0":"forestry.effectResurrection","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Phantasmal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Phantasmal bees are similar to Spectral, except they cause the other drops to reanimate, like ghasts, spiders, creepers, endermen, or even Ender Dragons if their drops are lying around. Breed them from Spectral and Ender."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesPhantasmal","UID0":"forestry.speciesPhantasmal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2189,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSpectral","UID0":"forestry.speciesSpectral","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectReanimation","UID0":"forestry.effectReanimation","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spectral","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spectral bees will require Ender bees to breed. This will test the ability of even the toughest beekeeper - don't forget your apiarist suit. To work in a bee housing, there must be a Dragon Egg nearby. Don't drop any bones, blazerods or rotten meat! This bee will cause those to come back to life! Perhaps you can find a use for this ability. Breed them from Ender and Hermitic. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSpectral","UID0":"forestry.speciesSpectral"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2190,"preRequisites":[1788,2184,2174],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFluix","UID0":"gregtech.bee.speciesFluix","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fluix","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you go deep into AE2, you'll want cheap sources of Fluix from these bees. Breeding will require a block of Fluix. Breed them from Lapis and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFluix","UID0":"gregtech.bee.speciesFluix"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2191,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRuby","UID0":"gregtech.bee.speciesRuby","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ruby","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For early Chrome, a Ruby bee is a great source. It will require a block of Ruby. Breed them from Redstone and Diamond."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRuby","UID0":"gregtech.bee.speciesRuby"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2192,"preRequisites":[1788,2163],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTin","UID0":"gregtech.bee.speciesTin","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Tin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tin is a great early bee to get, saving your time looking for Cassiterite Sand. You'll need a Tin block. Breed them from Clay and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTin","UID0":"gregtech.bee.speciesTin"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2193,"preRequisites":[1788,2162,2192],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesIron","UID0":"gregtech.bee.speciesIron","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron bees as a resource isn't that big a deal, so much stuff makes iron anyways, but they are a key breeding species. They will need an Iron block. Breed them from Copper and Tin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesIron","UID0":"gregtech.bee.speciesIron"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2194,"preRequisites":[1788,2162,2193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesNickel","UID0":"gregtech.bee.speciesNickel","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Nickel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nickel bees provide a pretty useful resource. You'll need a block of Nickel. Breed them from Iron and Copper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesNickel","UID0":"gregtech.bee.speciesNickel"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2195,"preRequisites":[1788,2193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesZinc","UID0":"gregtech.bee.speciesZinc","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Zinc","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Zinc makes great early game item pipes when mixed into brass. Also, these bees have a small change of producing Gallium combs, which is very useful for players needing to make circuits or SMD devices. These bees will require a Zinc block. Breed them from Tin and Iron."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesZinc","UID0":"gregtech.bee.speciesZinc"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2196,"preRequisites":[1788,2168,2162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLead","UID0":"gregtech.bee.speciesLead","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lead","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lead will be necessary in large quantities once you start making nuclear reactors. You'll need a block of Lead for these. Breed them from Copper and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLead","UID0":"gregtech.bee.speciesLead"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2197,"preRequisites":[1788,2196],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSilver","UID0":"gregtech.bee.speciesSilver","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Silver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silver is key metal at HV and up with the amount of Electrum you will need. Requires a block of Silver. Breed them from Lead and Tin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSilver","UID0":"gregtech.bee.speciesSilver"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2198,"preRequisites":[1788,2194,2195],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAluminium","UID0":"gregtech.bee.speciesAluminium","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aluminium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aluminium isn't necessary until MV, but when you want it, you'll want lots. Requires block of Aluminium. Breed them from Nickel and Zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAluminium","UID0":"gregtech.bee.speciesAluminium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2199,"preRequisites":[1788,2173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOlivine","UID0":"gregtech.bee.speciesOlivine","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Olivine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An otherwise mostly useless bee, Olivine is required for breeding better bees. I guess if you need Magnesium? Breed them from Ender and Certus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOlivine","UID0":"gregtech.bee.speciesOlivine"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2200,"preRequisites":[1788,2199,2172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEmerald","UID0":"gregtech.bee.speciesEmerald","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Emerald","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah yes, a very useful bee. Emeralds are used for many upgrades, and trading with villagers. Will require a block of Emerald. Breed them from Olivine and Diamond."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEmerald","UID0":"gregtech.bee.speciesEmerald"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2201,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTitanium","UID0":"gregtech.bee.speciesTitanium","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Titanium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Titanium from bees will make getting those LCRs and distillation towers a breeze. Hey, I rhymed! You'll need a block of Titanium for this bee. Breed them from Aluminium and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTitanium","UID0":"gregtech.bee.speciesTitanium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2202,"preRequisites":[1788,2201],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesChrome","UID0":"gregtech.bee.speciesChrome","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Chrome","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chrome, a necessary ingredient for Stainless Steel. Better to get it directly instead of having to deal with Rubies or Garnets. This bee will require a block of Chrome to breed. Breed them from Titanium and Ruby."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesChrome","UID0":"gregtech.bee.speciesChrome"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2203,"preRequisites":[1788,2202,2172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlatinum","UID0":"gregtech.bee.speciesPlatinum","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Platinum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Platinum. Precious metal for the ages. You'll need a block of Platinum obviously. Breed them from Diamond and Chrome."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlatinum","UID0":"gregtech.bee.speciesPlatinum"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2204,"preRequisites":[1788,2206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesUranium","UID0":"gregtech.bee.speciesUranium","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Uranium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All that hatred had a purpose - to create this bee, capable of producing enormous power. As before, keep away from everything. This bee will require a block of Uranium. Breed them from Avenging and Platinum."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesUranium","UID0":"gregtech.bee.speciesUranium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2205,"preRequisites":[1788,2204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlutonium","UID0":"gregtech.bee.speciesPlutonium","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Plutonium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A metal that represents the epitome of technology. Never existing in the universe before man. Destroying everything around it. This bee will require a block of Plutonium. Breed them from Uranium and Emerald."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlutonium","UID0":"gregtech.bee.speciesPlutonium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2206,"preRequisites":[1788,2208,2207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAvenging","UID0":"forestry.speciesAvenging","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Avenging","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hatred distilled into its most violent form. Keep away from everything. Breed them from Vengeful and Vindictive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAvenging","UID0":"forestry.speciesAvenging"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2207,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVengeful","UID0":"forestry.speciesVengeful","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vengeful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hatred. Of all things, living and solid. Keep bee housing away from anything valuable, or even not valuable. Breed them from Monastic and Vindictive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVengeful","UID0":"forestry.speciesVengeful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2208,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVindictive","UID0":"forestry.speciesVindictive","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vindictive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Beware. These bees not only hate everything, they even hate blocks. Put their bee housing far away from everything. Breed them from Demonic and Monastic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVindictive","UID0":"forestry.speciesVindictive"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2209,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moron's Guide to Breeding Better Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First off, don't be scared by the massive amounts of bees you see here once you unlock the breeding trees. There's even more that aren't included and you'll need NEI to find!\n\nHa ha, just kidding - don't panic! Once you unlock the bee breeding lines, look around and pick and choose which bees really interest you. The way the breeding is done is mostly left to right, and top down. Some of the lines at the bottom might look simple, but they will require bees further up to complete first. Many of the basic bees have multiple breeding options, only one is shown here.\n\nBees have two sets of traits, one active that has effects on how the bee lives, and one Inactive but can be used for breeding. When getting newly bred princesses and drones, check both sets in case you got the target bee. You can breed the bees with inactive traits to try and make them active in later crosses. You can't see the passive traits using a Field Kit, you'll need a Beealyzer. For lots of bees, you can scan them first using a GT scanner, but you'll still need a Beealyzer to see passive traits.\n\nWhen breeding bees, a good idea is to settle upon a master template bee. A bee that has little or no crossbreeding potential, but has all the traits you prefer - short life, nocturnal, cavedwelling, rain tolerant, humidity, temperature, high fertility, etc. Once you have that bee, breed a bunch of pure princesses with those traits as both active and inactive. These will be your breeding stock.\n\nWhen you are trying for a new bee, what you are wanting is a drone - this way you can use your \"breeding stock\" princess for easy breeding, but the drone to get the new species without the annoying effects or limitations. Poor crossed princesses can be returned to normal by crossing with breeding stock drones, or just thrown out if they now have annoying restrictions. Make sure you keep the trait and species you want, and slowly merge the good traits from your breeding stock. You don't have to do this part in an Apiary, you can use a Bee House to swap around traits. Ignoble bees are good for this, since they're mostly disposable - they have a chance to die after 100 breeding cycles - frames can let them live longer. Once you solidify your species, create a pool of drones. You can use those to convert pristine princesses to the new species. Pristine princesses will not die. Rocky bees are a great source - all their princesses are always pristine.\n\nOnce you get a new species, it will replace all of one of the two sets of traits of the bee. For example when you get a Cultivated, either the Active or Inactive column will have all the default Cultivated traits. Mix it a few times and you'll eventually get purebred versions. Just watch out that you don't lose a key trait, like Fast Worker for Cultivated! All the quests will require purebred species. \n\nGenerally all traits can be bred into any bee species, including effects or flower preference. Species generally require their preferred biome to produce their special drops.\n\nAdvanced frames can provide useful boosts to mutation chances, or to lifespan reduction for faster breeding cycles. However excessive multipliers will increase genetic decay, giving a chance for that pristine princess to become ignoble!\n\nIt looks complex, because it is! But it also a lot of dangerous and useful fun!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2210,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDealing with Radiation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nuclear materials cause two types of radiation effects. One is a large number of standard debuffs. These can be removed the normal ways, with milk or terra wart or other methods that imitate them. \n\nThe other effect is a special Radiation unique debuff. This gets applied the longer you hold onto the radioactive item. Severely radioactive items can apply minutes of this deadly debuff. Regeneration might delay the inevitable death, but most regneration sources aren't fast enough or long enough to keep you alive. You can try using an Amulet of Remedium to get rid of the effects. You should have one from your Moon trip, if not you'll have to dive into Thaumcraft to make one."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2211,"preRequisites":[2209],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Bee Stats","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of basic bees that have good stats you will want to breed into your breeding stock.\n\nCave Dwelling - Rocky - This lets you put the bee housing underneath or inside. Handy for putting a chest on top for products.\n\nNocturnal - Rocky - This keeps your bees working all night long, and in the dark.\n\nRain Tolerant - Water - Keep producing even when it is raining.\n\nHigh Fertility - Wintry - For breeding purposes, you want the maximum number of drones produced."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2212,"preRequisites":[1788,2218,2217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesArcane","UID0":"magicbees.speciesArcane","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Arcane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanting drops from Arcane bees are used to create Aromatic Lumps for use in the Swarmer. It has a higher chance of success than normal Royal Jelly. These bees are the other bedrock of the Magic Bees branch. Breed them from Esoteric and Mysterious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesArcane","UID0":"magicbees.speciesArcane"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2213,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEldritch","UID0":"magicbees.speciesEldritch","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Eldritch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eldritch are the start of the magic bee family. Breed them from Mystical and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEldritch","UID0":"magicbees.speciesEldritch"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2214,"preRequisites":[1788,2215,2216],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSupernatural","UID0":"magicbees.speciesSupernatural","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Supernatural","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What have those two brothers gotten into now? The Supernatural bee is a keystone of the Magical branch of bees. Check NEI for details on the best lunar phase for breeding. Breed it from Charmed and Enchanted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSupernatural","UID0":"magicbees.speciesSupernatural"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2215,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEnchanted","UID0":"magicbees.speciesEnchanted","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Enchanted","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted is the next step in the progression. Breed them from Charmed and Eldritch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEnchanted","UID0":"magicbees.speciesEnchanted"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2216,"preRequisites":[1788,2213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesCharmed","UID0":"magicbees.speciesCharmed","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Charmed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The power of three! Charmed bees are your next step up the magic bee tree. Breed them from Eldritch and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesCharmed","UID0":"magicbees.speciesCharmed"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2217,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesMysterious","UID0":"magicbees.speciesMysterious","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Mysterious","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just your mysterious stranger... Breed them from Eldritch and Esoteric."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesMysterious","UID0":"magicbees.speciesMysterious"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2218,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEsoteric","UID0":"magicbees.speciesEsoteric","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Esoteric","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another basic Magic branch bee. Breed them from Eldritch and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEsoteric","UID0":"magicbees.speciesEsoteric"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2219,"preRequisites":[1788,2212,2214],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEthereal","UID0":"magicbees.speciesEthereal","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ethereal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ethereal bees are critical for all the magical aspect bees. Breed them from Arcane and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEthereal","UID0":"magicbees.speciesEthereal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2220,"preRequisites":[1788,2227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCWater","UID0":"magicbees.speciesTCWater","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"magicbees.effectCurative","UID0":"magicbees.effectCurative","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aqua","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aqua requires a Water Crystal Cluster. It will produce Water infused dust. Staying nearby will clear potion effects, like drinking a bucket of milk. Might be useful for the clever industrial engineer! Breed them from two Watery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCWater","UID0":"magicbees.speciesTCWater"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2221,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesFirey","UID0":"magicbees.speciesFirey","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Firey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Firey bees must be bred on top of Lava. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesFirey","UID0":"magicbees.speciesFirey"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2222,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEarthen","UID0":"magicbees.speciesEarthen","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Earthen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Earthen bees must be bred on top of Bricks. Breed them from Supernatural and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEarthen","UID0":"magicbees.speciesEarthen"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2223,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWindy","UID0":"magicbees.speciesWindy","Slot":0},{"UID1":"forestry.speedFaster","UID0":"forestry.speedFaster","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Windy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Windy bees must be bred on top of Oak leaves. Breed them using Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWindy","UID0":"magicbees.speciesWindy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2224,"preRequisites":[1788,2223],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCAir","UID0":"magicbees.speciesTCAir","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringMaximum","UID0":"forestry.floweringMaximum","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"magicbees.effectMoveSpeed","UID0":"magicbees.effectMoveSpeed","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For Aer bees to appear, you must put an Air Crystal Cluster beneath the bee housing. They will produce Aer infused dust for you. Being nearby will grant a Swiftness buff. Breed them from two Windy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCAir","UID0":"magicbees.speciesTCAir"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2225,"preRequisites":[1788,2222],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEarth","UID0":"magicbees.speciesTCEarth","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectDigSpeed","UID0":"magicbees.effectDigSpeed","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Solum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Solum bees require Earth Crystal Clusters. They can produce Earth infused dust. It will also give you a mining speed boost. Breed them from two Earthen."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEarth","UID0":"magicbees.speciesTCEarth"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2226,"preRequisites":[1788,2221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCFire","UID0":"magicbees.speciesTCFire","Slot":0},{"UID1":"forestry.speedFaster","UID0":"forestry.speedFaster","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceDown3","UID0":"forestry.toleranceDown3","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ignis bees require Fire Crystal Clusters beneath the bee housing. They will produce Fire infused dust. Watch out! They will set nearby entities on fire! Breed them from two Firey."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCFire","UID0":"magicbees.speciesTCFire"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2227,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWatery","UID0":"magicbees.speciesWatery","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersSnow","UID0":"forestry.flowersSnow","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Watery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watery bees must be bred over Water. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWatery","UID0":"magicbees.speciesWatery"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2228,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAware","UID0":"magicbees.speciesAware","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not much to say about this bee. Breed them from Ethereal and Attuned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAware","UID0":"magicbees.speciesAware"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2229,"preRequisites":[1788,2228],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpirit","UID0":"magicbees.speciesSpirit","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spirit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Spirit bee is the first bee to give you Soul Combs, necessary for Soulful Wax, used in many magical frames. Breed them from Ethereal and Aware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpirit","UID0":"magicbees.speciesSpirit"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2230,"preRequisites":[1788,2229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSoul","UID0":"magicbees.speciesSoul","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Soul","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Soul bee has the highest chance of making Soul Combs, 20 percent. Breed them from Aware and Spirit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSoul","UID0":"magicbees.speciesSoul","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2231,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCChaos","UID0":"magicbees.speciesTCChaos","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Chaotic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chaotic bees require an Entropic Crystal Cluster. They will produce Entropy Infused Dust. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCChaos","UID0":"magicbees.speciesTCChaos"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2232,"preRequisites":[1788,2219,2212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCOrder","UID0":"magicbees.speciesTCOrder","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ordered","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ordered bees require Ordered Crystal Clusters. They can produce Order Infused Dust. Breed them from Arcane and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCOrder","UID0":"magicbees.speciesTCOrder"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2233,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCVis","UID0":"magicbees.speciesTCVis","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vis bees lead to some of the most powerful bees in the whole pack. They require a node within 75m of the bee housing. Make sure the lunar phase matches the requirments. Breed them from Ethereal and Eldritch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCVis","UID0":"magicbees.speciesTCVis"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2234,"preRequisites":[1788,2233],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCRejuvenating","UID0":"magicbees.speciesTCRejuvenating","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectVisRecharge","UID0":"magicbees.effectVisRecharge","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rejuvenating","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rejuvenating bees must be bred within 25m of a node. They will slowly charge the nearest node. Breed them from Vis and Attuned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCRejuvenating","UID0":"magicbees.speciesTCRejuvenating"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2235,"preRequisites":[1788,2234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEmpowering","UID0":"magicbees.speciesTCEmpowering","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectNodeEmpower","UID0":"magicbees.effectNodeEmpower","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Empowering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Empowering bee will randomly add aspects to nearby nodes, allowing enormous power to build up. The best chance to breed them is during the Full moon. Breed them from Rejuvenating and Vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEmpowering","UID0":"magicbees.speciesTCEmpowering"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2236,"preRequisites":[1788,2237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesEdenic","UID0":"forestry.speciesEdenic","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectExploration","UID0":"forestry.effectExploration","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Edenic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Edenic bee has the remarkable effect of giving experience points to players nearby. Breed it from Exotic and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesEdenic","UID0":"forestry.speciesEdenic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2237,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesExotic","UID0":"forestry.speciesExotic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Exotic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watch out, just like its parent the Exotic bee will poison you. But it is also a source of silk wisps. Breed them from Austere and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesExotic","UID0":"forestry.speciesExotic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2238,"preRequisites":[1788,2236,2226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumdust","UID0":"gregtech.bee.speciesThaumiumdust","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectExploration","UID0":"forestry.effectExploration","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thaumium Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumium is pretty easy to make, but with this bee you can automate and get enormous quantities. It requires a block of Thaumium. Breed them from Edenic and Ignis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumdust","UID0":"gregtech.bee.speciesThaumiumdust"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2239,"preRequisites":[1788,2213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSkulking","UID0":"magicbees.speciesSkulking","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Skulking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Skulking bees are the core of the various mob bees. Check out the rest of the recipes in NEI, there are too many to show here. Breed them using Eldritch and Modest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSkulking","UID0":"magicbees.speciesSkulking"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2240,"preRequisites":[1788,2239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpidery","UID0":"magicbees.speciesSpidery","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"magicbees.effectSpidery","UID0":"magicbees.effectSpidery","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spidery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watch out, the effect from this bee will attract spiders. But it has one nice trait - a large working area. Perfect for breeding into your fast pollinators or for providing useful effects. Breed it from Skulking and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpidery","UID0":"magicbees.speciesSpidery"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2241,"preRequisites":[1788,2238,2220],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumshard","UID0":"gregtech.bee.speciesThaumiumshard","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersSnow","UID0":"forestry.flowersSnow","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectGlacial","UID0":"forestry.effectGlacial","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thaumic Shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Thaumic Shards bee has a chance of giving you any shard propolis. It will require a Magical Forest biome. Breed them from Thaumium Dust and Aqua."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumshard","UID0":"gregtech.bee.speciesThaumiumshard"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2242,"preRequisites":[1788,2241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSalismundus","UID0":"gregtech.bee.speciesSalismundus","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Salis Mundus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of all the effort it takes to make Salis Mundus? After hours of breeding you can now do magic trouble free with this bee making all the Salis Mundus you need. It requires a Magical Forest Biome. Breed them from Thaumic Shards and Thaumium Dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSalismundus","UID0":"gregtech.bee.speciesSalismundus"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2243,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHeroic","UID0":"forestry.speciesHeroic","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectHeroic","UID0":"forestry.effectHeroic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Heroic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This one takes a little luck. You'll have to find Steadfast bees in a dungeon chest. Their useful effect is causing damage to hostile mobs. Breed them from Steadfast and Valiant."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHeroic","UID0":"forestry.speciesHeroic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2244,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesNameless","UID0":"magicbees.speciesNameless","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Nameless","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oblivion bees can be purchased with coins, or found in the End. Nameless is required to get Draconic bees. Nameless are also where you can get Amnesiac Wax. Breed them from Oblivion and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesNameless","UID0":"magicbees.speciesNameless"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2245,"preRequisites":[1788,2244],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAbandoned","UID0":"magicbees.speciesAbandoned","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectRepulsion","UID0":"forestry.effectRepulsion","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Abandoned","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Abandoned are the next step up. Breed them from Oblivion and Nameless."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAbandoned","UID0":"magicbees.speciesAbandoned"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2246,"preRequisites":[1788,2245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesDraconic","UID0":"magicbees.speciesDraconic","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Draconic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Draconic bee is required in order to get the dusts needed to recreate the Dragon Egg using magic. It must be bred in the End. Breed them from Imperial and Abandoned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesDraconic","UID0":"magicbees.speciesDraconic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2247,"preRequisites":[1788,2246,2248],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSparkeling","UID0":"gregtech.bee.speciesSparkeling","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Wither","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wither bee will let you generate Wither skulls and small amounts of Nether star dust. It requires a block of Nether Star, and must be bred in the End. Breed them from Withering and Draconic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSparkeling","UID0":"gregtech.bee.speciesSparkeling"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2248,"preRequisites":[1788,2249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWithering","UID0":"magicbees.speciesWithering","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"magicbees.effectWithering","UID0":"magicbees.effectWithering","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Withering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Inflicts Withering all those who come near. Must be bred in the Nether. Chances are going to be low, so now would be the time to look for frames that increase mutation rates. Breed them from Demonic and Spiteful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWithering","UID0":"magicbees.speciesWithering"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2249,"preRequisites":[1788,2250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpiteful","UID0":"magicbees.speciesSpiteful","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spiteful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sheer disdain this bee shows you is awe inspiring. Must be bred in the Nether. Don't walk around it without proper protection, it seems to laugh when you think about that. Breed them from Hateful and Infernal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpiteful","UID0":"magicbees.speciesSpiteful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2250,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesHateful","UID0":"magicbees.speciesHateful","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hateful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can feel the waves of hate radiating out of her eyes. Don't even think about getting close without an Apiarist Suit. Must be bred in the Nether. Breed them from Eldritch and Infernal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesHateful","UID0":"magicbees.speciesHateful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2251,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.excited","UID0":"extrabees.species.excited","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.redstone","UID0":"extrabees.flower.redstone","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.lightning","UID0":"extrabees.effect.lightning","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Excited","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You might be thinking to yourself, huh this sure is an easy bee to give redstone....well, it also gives destructive lightning strikes. You might want to place them far from you. Or set them up in a Creeper spawner to make charged creepers for...experiments. Breed them from Valiant and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.excited","UID0":"extrabees.species.excited"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2252,"preRequisites":[1788,2251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.celebratory","UID0":"extrabees.species.celebratory","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.fireworks","UID0":"extrabees.effect.fireworks","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Celebratory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nThis fun bee doesn't have any useful products, but it does produce a fun effect - constant fireworks! You can breed the effect into other lines, and the color of the fireworks will match the bee. Make the bees require sky and you can disable the effects by covering them up with a piston. Great for a celebration! Breed them from Austere and Excited."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.celebratory","UID0":"extrabees.species.celebratory"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2253,"preRequisites":[1093],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12726,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lToo much Mercury?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a couple of hours..days..weeks..of processing redstone for Ruby you'll have a massive stockpile of Mercury and not know what to do with it. You can store it all in supertanks, but really, how much hypochlorous acid does one need? Instead you can build an Acid Generator and at least get a little power out of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12726,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2254,"preRequisites":[1788,2197],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesArsenic","UID0":"gregtech.bee.speciesArsenic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Arsenic Princess","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This deadly little princess will get you Arsenic, perfect for use in your circuits. Requires a Block of Arsenic. Breed them from Silver and Zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesArsenic","UID0":"gregtech.bee.speciesArsenic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2255,"preRequisites":[1513],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameGentle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keep calm and bee on","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gentle frame can help protect your bees from the damaging effects of high productivity or mutation rates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameGentle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2256,"preRequisites":[2123,2127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.brazilnut","UID0":"extratrees.species.brazilnut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarger","UID0":"forestry.heightLarger","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.brazilnut","UID0":"extratrees.fruit.brazilnut","Slot":4},{"UID1":"forestry.yieldLow","UID0":"forestry.yieldLow","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Brazil Nut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Brazil Nuts don't give you much in the way of important attributes. Breed them from Common Beech and Jungle."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.brazilnut","UID0":"extratrees.species.brazilnut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2257,"preRequisites":[2123,2126,2256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.coconut","UID0":"extratrees.species.coconut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarger","UID0":"forestry.heightLarger","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"extratrees.fruit.coconut","UID0":"extratrees.fruit.coconut","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFast","UID0":"forestry.maturationFast","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Coconut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Coconut is King for seedoil production - 300L per nut. Breed them from Brazil Nut and Balsa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.coconut","UID0":"extratrees.species.coconut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2258,"preRequisites":[1122,2164],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:miscResources","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Aromatic Lump","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aromatic Lumps are twice as effective as Royal Jelly in an Alveary Swarmer. You'll need Enchanting Drops from Arcane bees and Pollen Clusters from Industrious bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:miscResources","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2259,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:magnet","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite bats! Wait, what??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of the constant chirping from the thousands of bats drawn to your world-bending activities? Use this handy device to attract them to a central location where they can be...disposed. The Corporeal Attractor can be configured to attract or repel mobs, and the redstone strength applied divided by two determines the range.\n\nYou can use Soul Moulds to filter the mobs the Attractor draws in or pushes away. This gives you some idea for automating..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:magnet","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"ThaumicTinkerer:soulMould","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2260,"preRequisites":[1997],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricBootsTraveller","Count":1,"tag":{"charge":100000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better boots with a little pizzazz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These Electric Boots of the Traveller will give a 2 percent vis discount along with the benefits of the normal Boots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":9,"OreDict":""}]}]},{"questID":2261,"preRequisites":[2260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanoBootsTraveller","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walk all over you","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nanosuit boots will give the nanosuit benefits along with a massive speed boost, higher jump, and better vis discount. Great boots for the master magical engineer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanoBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2262,"preRequisites":[2261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumBootsTraveller","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walking across the stars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantum boots of the traveller, for when you really need to run as fast as the wind. Might cause you some problems standing still! "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2263,"preRequisites":[2121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialGrafter","Count":1,"tag":{"charge":375000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Industrial Grafter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're tired of constantly replacing branchcutters, this Industrial Grafter is rechargeable."}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2264,"preRequisites":[1603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Do you taste metal?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Metal oreberries are a great source of new seeds. You can breed some or buy some from the Coins shop. I need some Copper myself, so give me some berries please."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TConstruct:oreBerries","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Copper Oreberry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2265,"preRequisites":[2264],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8503,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Deep blue sea of sapphires","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sapphirum are pretty easy to get from Copper Oreberries. You'll need a block of Sapphire beneath them to get them to maturity. They are a good source of aluminium and oxygen in LV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Sapphirum","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2266,"preRequisites":[2265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8527,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Red touch yellow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Garnets are actually more valuable than Sapphires. They're an early source of Chrome and Manganese, which you'll need for HV machines. To reach maturity, you will need a block of Garnet beneath these crops. You can get Garnets from the HV macerator and Spessartine Ore, or you can use an Implosion Compressor to turn Garnet Sands into crystals to make blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Garnydinia","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2267,"preRequisites":[292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:TrunkSpawner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A travel companion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lonely? The Traveling Trunk is a simple companion, giving you some extra space. With upgrades (one per trunk) it can offer you some nice advantages. Like other golems, you can pick it up with the Golemancer's Bell. It's brain is pretty small though, so it can easily get stuck. You can order it to stay in one spot via the GUI. It will attempt to teleport to you, as long as the chunk is still loaded. It can also follow you into different dimensions.\n\nThey will heal slowly on their own, or faster if you right-click on them with any food, including rotten meat. Keep away from lava.\n\nGolem upgrade effects:\nAer: Moves faster\nEarth: 1 more row of item slots\nFire: Attacks hostile mobs, setting them on fire\nWater: Nearly invulnerable. In SMP, can only be opened or picked up by player who placed it.\nEntropy: Sucks in loose items nearby if it has room\nOrder: Can be picked up with its contents, and nested in other inventories. Don't be stupid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:TrunkSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2268,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:luggage","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who needs friends?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Luggage is better than a dumb old traveling trunk. It automatically picks up dropped items, saving you time while mining. It's near-invulnerable, including in lava. It will follow you like an eager puppy, to the ends of the earth - but you probably should pick her up before changing dimensions. A lightning strike can provide more room. Shift right-clicking will turn it back into an item without losing its contents. Look for her in the GTNH tab of the Thaumonomicon"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:luggage","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2269,"preRequisites":[1788,2270,2273],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.magenta","UID0":"gendustry.bee.magenta","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth3","UID0":"forestry.toleranceBoth3","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Magenta","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magenta bees are also Fastest production, but come with +- 3 Climate. Breed them from Pink and Blue."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.magenta","UID0":"gendustry.bee.magenta","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2270,"preRequisites":[1788,2271,2272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.pink","UID0":"gendustry.bee.pink","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth3","UID0":"forestry.toleranceBoth3","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Pink","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pink princesses provide pink dye. They also have Fastest production and +-3 Humidity. Breed them from Red and White."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.pink","UID0":"gendustry.bee.pink","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2271,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.white","UID0":"gendustry.bee.white","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"White","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"White bees provide white dye. Breed them from Wintry and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.white","UID0":"gendustry.bee.white","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2272,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.red","UID0":"gendustry.bee.red","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Red","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dye bees obviously provide dyes, but some of them are also useful for their traits. There are many dye bees, these are just a sample. They can be useful for the hard to find dye colors from flowers. Breed Red from Common and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.red","UID0":"gendustry.bee.red","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2273,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.blue","UID0":"gendustry.bee.blue","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Blue princesses will provide a handy source of blue dye. Breed them from Forest and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.blue","UID0":"gendustry.bee.blue","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2274,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCBatty","UID0":"magicbees.speciesTCBatty","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"magicbees.effectBatty","UID0":"magicbees.effectBatty","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Batty","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Batty bees will spawn firebats. So prepare for battle. Their specialty is Gunpowder. Breed them from Skulking and Windy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCBatty","UID0":"magicbees.speciesTCBatty","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2275,"preRequisites":[1788,2274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesGhastly","UID0":"magicbees.speciesGhastly","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectGhastly","UID0":"magicbees.effectGhastly","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ghastly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ghastly bees will spawn Ghasts, so beeee careful. Their specialty is Ghast Tears. They only have 1 fertility so you want to make sure you breed the drones with your master template princess. Breed them from Batty and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesGhastly","UID0":"magicbees.speciesGhastly","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2276,"preRequisites":[1788,2275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSmouldering","UID0":"magicbees.speciesSmouldering","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectAblaze","UID0":"magicbees.effectAblaze","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Smouldering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smouldering drones will spawn blazes, and make Blaze Rods as their specialty. Breed the drones with your template princesses so you can prevent the harmful effects from destroying your base. Also, their Hellish temperature and Normal humidity requirements are interesting - use a Climate Acclimator or other methods to adjust the biome. Must be bred in the Nether. Breed them from Ghastly and Hateful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSmouldering","UID0":"magicbees.speciesSmouldering","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2277,"preRequisites":[1788,2278],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fuel","UID0":"extrabees.species.fuel","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Refined","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah, here it is. This bee has been known to power whole civilizations. Placed in a top tier bee housing like an Alveary or Industrial Apiary, with appropriate frames, it can produce oil faster than some wells. In addition, you will get small amounts of Diesel fuel as well! Breed them from Oily and Distilled."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fuel","UID0":"extrabees.species.fuel","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2278,"preRequisites":[1788,2279],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.distilled","UID0":"extrabees.species.distilled","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Distilled","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What's this? A step back you say! Yes, the Distilled bee doesn't make anything of use, but the potential is there. Breed them from Oily and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.distilled","UID0":"extrabees.species.distilled","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2279,"preRequisites":[1788,2280,2282],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.oil","UID0":"extrabees.species.oil","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Oily","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, the Oily bee! Its combs produce the most oil, but its output isn't that thrilling...yet. Breed them from Primeval and Ocean. As an alternative, you can breed them from Primeval and Frugal if you can't find an Ocean biome or used up all your Beekeeper coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.oil","UID0":"extrabees.species.oil","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2280,"preRequisites":[1788,2281],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.primeval","UID0":"extrabees.species.primeval","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Primeval","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Primeval. The next step. Breed them from Ancient and Secluded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.primeval","UID0":"extrabees.species.primeval","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2281,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ancient","UID0":"extrabees.species.ancient","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ancient","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ancient bees are the first step to the best oil bees in the game. Breed them from Diligent and Noble."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ancient","UID0":"extrabees.species.ancient","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2282,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ocean","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Ocean bee can be hard to breed since some servers use a worldgen that prevents ocean biomes from appearing. You might have luck trying in a Twilight Forest lake - you'll know you are in the right biome if you see Water Creepers! If you have trouble locating an appropriate spot, you can also purchase Ocean bees from the Coins tab. Breed them from Diligent and Water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2283,"preRequisites":[1788,2284,2280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.resin","UID0":"extrabees.species.resin","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Resinous","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well at least you can get a couple of Sticky Resin from this otherwise boring bee. Breed them from Miry and Primeval."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.resin","UID0":"extrabees.species.resin","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2284,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMiry","UID0":"forestry.speciesMiry","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersMushrooms","UID0":"forestry.flowersMushrooms","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Miry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Miry bees aren't too useful yet. They'll open up the Boggy branch for you. You'll need to find a biome with Warm/Damp to breed them. Use your Nature's Compass and Habitat Locator to find them. An easy one to find is Rainforest. Breed them from Marshy and Noble. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMiry","UID0":"forestry.speciesMiry","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2285,"preRequisites":[1788,2278,2283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.latex","UID0":"extrabees.species.latex","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Elastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally! A useful bee from the Boggy branch. The Elastic bee will actually produce rubber bars for you! No more smelly Sulfur! Breed them from Distilled and Resinous."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.latex","UID0":"extrabees.species.latex","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2286,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:masterRegistry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Master registry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The master beekeeper needs a master registry. Make sure you don't get any tears in your apiaries as you collect all the requirements!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Forestry:beeCombs","Count":64,"Damage":15,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":4,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":6,"OreDict":""},{"id":"MagicBees:comb","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Forestry:beeCombs","Count":64,"Damage":7,"OreDict":""},{"id":"MagicBees:comb","Count":64,"Damage":1,"OreDict":""},{"id":"ExtraBees:honeyComb","Count":64,"Damage":6,"OreDict":""},{"id":"Forestry:beeCombs","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"Forestry:royalJelly","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:masterRegistry","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2287,"preRequisites":[1788,2288],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAgrarian","UID0":"forestry.speciesAgrarian","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectFertile","UID0":"forestry.effectFertile","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Agrarian","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Agrarian bees are supposed to help crops nearby grow. The effect isn't really that noticeable, is it? You'll have to be in a Plains-like biome for these to appear. Breed them from Farmerly and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAgrarian","UID0":"forestry.speciesAgrarian","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2288,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFarmerly","UID0":"forestry.speciesFarmerly","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Farmerly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like most farmers, these bees seem to spend all their time complaining about the neighbors or the weather instead of actually doing much. They'll need a Plains-like biome. Breed them from Unweary and Rural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFarmerly","UID0":"forestry.speciesFarmerly","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2289,"preRequisites":[1788,2287,2274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSandwich","UID0":"gregtech.bee.speciesSandwich","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectFertile","UID0":"forestry.effectFertile","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sandwich","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"sudo make me a sandwich. Or a bee that makes sandwich parts anyways. Breed them from Batty and Agrarian."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSandwich","UID0":"gregtech.bee.speciesSandwich","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2290,"preRequisites":[1788,2291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFertilizer","UID0":"gregtech.bee.speciesFertilizer","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fertilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Fertilizer bee will make your crop empire purr. Or grow anyways. They are a good source of Fastest production and Faster pollination as well. Breed them from Apatite and Ash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFertilizer","UID0":"gregtech.bee.speciesFertilizer","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2291,"preRequisites":[1788,2292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesApatite","UID0":"gregtech.bee.speciesApatite","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Apatite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Apatite bee requires an Apatite Block beneath it to breed. Its Seedy comb will make seedoil as well. Breed them from Ash and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesApatite","UID0":"gregtech.bee.speciesApatite","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2292,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAsh","UID0":"gregtech.bee.speciesAsh","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ash","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A bee to make ashes? What insanity is this? At least you can get Large territory from them. You'll need to pay the Nether a visit. Breed them from Clay and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAsh","UID0":"gregtech.bee.speciesAsh","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2293,"preRequisites":[851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:NitrogenTetroxide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§9§lNitrogen Tetroxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make Nitrogen Tetroxide you need to combine some copper dust and nitric acid in a Chemical Dehydrator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:NitrogenTetroxide","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30653,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2294,"preRequisites":[147,1245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":793,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRocket Engine EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Rocket Engine is a very dirty device which generate power out of rocket fuels at 60% efficiency.\n200 to 2000 polution each sec."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":793,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"miscutils:RocketFuelMixB","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:RocketFuelMixA","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]}],"questLines":[{"quests":[{"sizeX":72,"x":0,"y":36,"id":0,"sizeY":72},{"sizeX":24,"x":120,"y":60,"id":1,"sizeY":24},{"sizeX":24,"x":84,"y":60,"id":2,"sizeY":24},{"sizeX":48,"x":252,"y":48,"id":3,"sizeY":48},{"sizeX":24,"x":216,"y":60,"id":4,"sizeY":24},{"sizeX":48,"x":324,"y":48,"id":5,"sizeY":48},{"sizeX":24,"x":408,"y":60,"id":6,"sizeY":24},{"sizeX":48,"x":480,"y":48,"id":7,"sizeY":48},{"sizeX":48,"x":324,"y":120,"id":8,"sizeY":48},{"sizeX":48,"x":324,"y":192,"id":9,"sizeY":48},{"sizeX":48,"x":204,"y":264,"id":10,"sizeY":48},{"sizeX":48,"x":252,"y":156,"id":11,"sizeY":48},{"sizeX":48,"x":300,"y":264,"id":12,"sizeY":48},{"sizeX":72,"x":468,"y":312,"id":13,"sizeY":72},{"sizeX":48,"x":12,"y":324,"id":14,"sizeY":48},{"sizeX":24,"x":216,"y":96,"id":440,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":442,"sizeY":24},{"sizeX":48,"x":396,"y":192,"id":444,"sizeY":48},{"sizeX":24,"x":204,"y":168,"id":446,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":448,"sizeY":24},{"sizeX":24,"x":204,"y":132,"id":450,"sizeY":24},{"sizeX":24,"x":408,"y":108,"id":469,"sizeY":24},{"sizeX":24,"x":444,"y":108,"id":470,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":471,"sizeY":24},{"sizeX":24,"x":408,"y":12,"id":484,"sizeY":24},{"sizeX":24,"x":240,"y":12,"id":865,"sizeY":24},{"sizeX":24,"x":288,"y":12,"id":946,"sizeY":24},{"sizeX":48,"x":156,"y":48,"id":1204,"sizeY":48},{"sizeX":24,"x":168,"y":276,"id":1475,"sizeY":24},{"sizeX":24,"x":168,"y":132,"id":1495,"sizeY":24},{"sizeX":24,"x":24,"y":120,"id":1500,"sizeY":24},{"sizeX":24,"x":24,"y":156,"id":1501,"sizeY":24},{"sizeX":24,"x":24,"y":0,"id":1834,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1841,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1842,"sizeY":24},{"sizeX":24,"x":132,"y":216,"id":1843,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":1844,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":1845,"sizeY":24},{"sizeX":24,"x":336,"y":12,"id":1849,"sizeY":24},{"sizeX":24,"x":408,"y":144,"id":1856,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":2145,"sizeY":24}],"lineID":0,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 0 - It begins","icon":{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The very first tier, tier zero. This chapter will introduce you to the basic mechanics of this modpack. Mods covered: Vanilla, Pam's Harvestcraft."}},"order":0},{"quests":[{"sizeX":72,"x":660,"y":144,"id":15,"sizeY":72},{"sizeX":48,"x":756,"y":156,"id":17,"sizeY":48},{"sizeX":48,"x":588,"y":156,"id":18,"sizeY":48},{"sizeX":24,"x":600,"y":228,"id":19,"sizeY":24},{"sizeX":24,"x":744,"y":120,"id":20,"sizeY":24},{"sizeX":24,"x":684,"y":228,"id":21,"sizeY":24},{"sizeX":24,"x":600,"y":264,"id":22,"sizeY":24},{"sizeX":24,"x":636,"y":264,"id":23,"sizeY":24},{"sizeX":48,"x":756,"y":252,"id":24,"sizeY":48},{"sizeX":24,"x":684,"y":264,"id":25,"sizeY":24},{"sizeX":24,"x":684,"y":300,"id":26,"sizeY":24},{"sizeX":48,"x":756,"y":492,"id":27,"sizeY":48},{"sizeX":24,"x":432,"y":504,"id":28,"sizeY":24},{"sizeX":24,"x":288,"y":504,"id":29,"sizeY":24},{"sizeX":48,"x":384,"y":336,"id":30,"sizeY":48},{"sizeX":48,"x":456,"y":336,"id":31,"sizeY":48},{"sizeX":24,"x":636,"y":300,"id":32,"sizeY":24},{"sizeX":48,"x":624,"y":336,"id":33,"sizeY":48},{"sizeX":24,"x":312,"y":384,"id":34,"sizeY":24},{"sizeX":48,"x":420,"y":156,"id":35,"sizeY":48},{"sizeX":48,"x":204,"y":168,"id":36,"sizeY":48},{"sizeX":48,"x":204,"y":408,"id":37,"sizeY":48},{"sizeX":24,"x":336,"y":264,"id":38,"sizeY":24},{"sizeX":24,"x":192,"y":240,"id":39,"sizeY":24},{"sizeX":72,"x":312,"y":0,"id":40,"sizeY":72},{"sizeX":48,"x":516,"y":156,"id":41,"sizeY":48},{"sizeX":48,"x":516,"y":336,"id":42,"sizeY":48},{"sizeX":24,"x":528,"y":264,"id":43,"sizeY":24},{"sizeX":48,"x":624,"y":408,"id":472,"sizeY":48},{"sizeX":24,"x":300,"y":264,"id":473,"sizeY":24},{"sizeX":48,"x":420,"y":408,"id":474,"sizeY":48},{"sizeX":24,"x":360,"y":504,"id":480,"sizeY":24},{"sizeX":24,"x":816,"y":288,"id":481,"sizeY":24},{"sizeX":24,"x":0,"y":156,"id":482,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":483,"sizeY":24},{"sizeX":24,"x":816,"y":240,"id":485,"sizeY":24},{"sizeX":24,"x":276,"y":180,"id":486,"sizeY":24},{"sizeX":24,"x":336,"y":132,"id":487,"sizeY":24},{"sizeX":24,"x":372,"y":132,"id":488,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":489,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":491,"sizeY":24},{"sizeX":24,"x":72,"y":156,"id":492,"sizeY":24},{"sizeX":24,"x":288,"y":468,"id":494,"sizeY":24},{"sizeX":24,"x":240,"y":240,"id":498,"sizeY":24},{"sizeX":24,"x":252,"y":468,"id":535,"sizeY":24},{"sizeX":24,"x":72,"y":228,"id":656,"sizeY":24},{"sizeX":24,"x":120,"y":228,"id":657,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":693,"sizeY":24},{"sizeX":24,"x":180,"y":84,"id":718,"sizeY":24},{"sizeX":24,"x":156,"y":240,"id":727,"sizeY":24},{"sizeX":24,"x":120,"y":276,"id":728,"sizeY":24},{"sizeX":24,"x":156,"y":276,"id":729,"sizeY":24},{"sizeX":24,"x":324,"y":504,"id":825,"sizeY":24},{"sizeX":24,"x":396,"y":504,"id":826,"sizeY":24},{"sizeX":24,"x":696,"y":348,"id":862,"sizeY":24},{"sizeX":24,"x":372,"y":264,"id":863,"sizeY":24},{"sizeX":24,"x":696,"y":420,"id":864,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":945,"sizeY":24},{"sizeX":24,"x":564,"y":264,"id":947,"sizeY":24},{"sizeX":24,"x":144,"y":84,"id":1085,"sizeY":24},{"sizeX":24,"x":144,"y":48,"id":1095,"sizeY":24},{"sizeX":24,"x":252,"y":504,"id":1129,"sizeY":24},{"sizeX":48,"x":420,"y":0,"id":1146,"sizeY":48},{"sizeX":24,"x":36,"y":156,"id":1476,"sizeY":24},{"sizeX":24,"x":432,"y":540,"id":1496,"sizeY":24},{"sizeX":24,"x":396,"y":540,"id":1497,"sizeY":24},{"sizeX":24,"x":360,"y":540,"id":1498,"sizeY":24},{"sizeX":24,"x":216,"y":84,"id":1504,"sizeY":24},{"sizeX":24,"x":684,"y":108,"id":1505,"sizeY":24},{"sizeX":24,"x":684,"y":72,"id":1506,"sizeY":24},{"sizeX":24,"x":108,"y":84,"id":1508,"sizeY":24},{"sizeX":24,"x":216,"y":48,"id":1546,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":1738,"sizeY":24},{"sizeX":24,"x":168,"y":420,"id":1790,"sizeY":24},{"sizeX":24,"x":72,"y":120,"id":1831,"sizeY":24},{"sizeX":24,"x":72,"y":84,"id":1851,"sizeY":24},{"sizeX":24,"x":0,"y":84,"id":1852,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1864,"sizeY":24},{"sizeX":24,"x":336,"y":348,"id":1866,"sizeY":24},{"sizeX":24,"x":276,"y":216,"id":1926,"sizeY":24}],"lineID":1,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 0.5 - Stone Age","icon":{"id":"IC2:itemToolBronzePickaxe","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Basically the \"Tier 0\" of all your progression. This set helps you through the first tier until you can build your first steam machine"}},"order":1},{"quests":[{"sizeX":24,"x":192,"y":648,"id":16,"sizeY":24},{"sizeX":72,"x":48,"y":72,"id":44,"sizeY":72},{"sizeX":48,"x":144,"y":84,"id":46,"sizeY":48},{"sizeX":24,"x":156,"y":48,"id":47,"sizeY":24},{"sizeX":48,"x":252,"y":84,"id":48,"sizeY":48},{"sizeX":48,"x":480,"y":84,"id":49,"sizeY":48},{"sizeX":48,"x":564,"y":84,"id":50,"sizeY":48},{"sizeX":48,"x":564,"y":336,"id":51,"sizeY":48},{"sizeX":48,"x":564,"y":216,"id":52,"sizeY":48},{"sizeX":48,"x":408,"y":432,"id":53,"sizeY":48},{"sizeX":48,"x":408,"y":240,"id":54,"sizeY":48},{"sizeX":24,"x":384,"y":180,"id":55,"sizeY":24},{"sizeX":24,"x":468,"y":444,"id":56,"sizeY":24},{"sizeX":24,"x":624,"y":372,"id":57,"sizeY":24},{"sizeX":24,"x":624,"y":72,"id":58,"sizeY":24},{"sizeX":24,"x":108,"y":156,"id":59,"sizeY":24},{"sizeX":24,"x":144,"y":192,"id":60,"sizeY":24},{"sizeX":24,"x":144,"y":156,"id":61,"sizeY":24},{"sizeX":24,"x":108,"y":192,"id":62,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":63,"sizeY":24},{"sizeX":24,"x":0,"y":60,"id":64,"sizeY":24},{"sizeX":48,"x":60,"y":540,"id":65,"sizeY":48},{"sizeX":48,"x":324,"y":648,"id":66,"sizeY":48},{"sizeX":48,"x":408,"y":648,"id":67,"sizeY":48},{"sizeX":48,"x":324,"y":720,"id":68,"sizeY":48},{"sizeX":48,"x":564,"y":648,"id":69,"sizeY":48},{"sizeX":72,"x":396,"y":792,"id":70,"sizeY":72},{"sizeX":48,"x":564,"y":804,"id":71,"sizeY":48},{"sizeX":48,"x":132,"y":804,"id":72,"sizeY":48},{"sizeX":48,"x":132,"y":648,"id":73,"sizeY":48},{"sizeX":24,"x":228,"y":648,"id":84,"sizeY":24},{"sizeX":24,"x":12,"y":552,"id":119,"sizeY":24},{"sizeX":48,"x":408,"y":540,"id":478,"sizeY":48},{"sizeX":48,"x":480,"y":540,"id":479,"sizeY":48},{"sizeX":48,"x":360,"y":84,"id":493,"sizeY":48},{"sizeX":24,"x":492,"y":180,"id":495,"sizeY":24},{"sizeX":48,"x":564,"y":540,"id":496,"sizeY":48},{"sizeX":24,"x":420,"y":504,"id":497,"sizeY":24},{"sizeX":24,"x":408,"y":612,"id":534,"sizeY":24},{"sizeX":24,"x":624,"y":660,"id":536,"sizeY":24},{"sizeX":24,"x":96,"y":648,"id":558,"sizeY":24},{"sizeX":48,"x":480,"y":336,"id":563,"sizeY":48},{"sizeX":24,"x":48,"y":480,"id":596,"sizeY":24},{"sizeX":24,"x":228,"y":684,"id":625,"sizeY":24},{"sizeX":24,"x":12,"y":600,"id":658,"sizeY":24},{"sizeX":48,"x":408,"y":336,"id":694,"sizeY":48},{"sizeX":24,"x":12,"y":516,"id":705,"sizeY":24},{"sizeX":48,"x":144,"y":312,"id":741,"sizeY":48},{"sizeX":24,"x":204,"y":360,"id":742,"sizeY":24},{"sizeX":24,"x":108,"y":360,"id":743,"sizeY":24},{"sizeX":24,"x":108,"y":324,"id":744,"sizeY":24},{"sizeX":48,"x":228,"y":720,"id":834,"sizeY":48},{"sizeX":48,"x":408,"y":720,"id":835,"sizeY":48},{"sizeX":24,"x":576,"y":144,"id":867,"sizeY":24},{"sizeX":24,"x":624,"y":120,"id":868,"sizeY":24},{"sizeX":24,"x":228,"y":612,"id":871,"sizeY":24},{"sizeX":24,"x":624,"y":528,"id":875,"sizeY":24},{"sizeX":24,"x":192,"y":684,"id":890,"sizeY":24},{"sizeX":24,"x":660,"y":660,"id":942,"sizeY":24},{"sizeX":24,"x":348,"y":252,"id":948,"sizeY":24},{"sizeX":24,"x":348,"y":288,"id":1008,"sizeY":24},{"sizeX":24,"x":348,"y":216,"id":1107,"sizeY":24},{"sizeX":24,"x":348,"y":180,"id":1108,"sizeY":24},{"sizeX":24,"x":468,"y":252,"id":1124,"sizeY":24},{"sizeX":24,"x":468,"y":216,"id":1125,"sizeY":24},{"sizeX":48,"x":144,"y":432,"id":1126,"sizeY":48},{"sizeX":24,"x":12,"y":480,"id":1127,"sizeY":24},{"sizeX":24,"x":576,"y":180,"id":1128,"sizeY":24},{"sizeX":24,"x":492,"y":288,"id":1130,"sizeY":24},{"sizeX":24,"x":468,"y":504,"id":1132,"sizeY":24},{"sizeX":24,"x":96,"y":480,"id":1133,"sizeY":24},{"sizeX":24,"x":624,"y":696,"id":1147,"sizeY":24},{"sizeX":24,"x":204,"y":324,"id":1151,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1156,"sizeY":24},{"sizeX":24,"x":660,"y":696,"id":1157,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1205,"sizeY":24},{"sizeX":24,"x":420,"y":180,"id":1507,"sizeY":24},{"sizeX":24,"x":624,"y":228,"id":1536,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":1735,"sizeY":24},{"sizeX":24,"x":624,"y":576,"id":1741,"sizeY":24},{"sizeX":24,"x":72,"y":684,"id":1789,"sizeY":24},{"sizeX":24,"x":456,"y":612,"id":1888,"sizeY":24},{"sizeX":24,"x":516,"y":504,"id":1908,"sizeY":24},{"sizeX":24,"x":624,"y":324,"id":1915,"sizeY":24},{"sizeX":24,"x":372,"y":444,"id":1919,"sizeY":24},{"sizeX":24,"x":48,"y":648,"id":1987,"sizeY":24},{"sizeX":24,"x":12,"y":648,"id":1988,"sizeY":24},{"sizeX":24,"x":348,"y":324,"id":2026,"sizeY":24},{"sizeX":24,"x":504,"y":612,"id":2056,"sizeY":24},{"sizeX":24,"x":12,"y":684,"id":2087,"sizeY":24},{"sizeX":24,"x":528,"y":216,"id":2140,"sizeY":24},{"sizeX":24,"x":420,"y":876,"id":2161,"sizeY":24}],"lineID":2,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 1 - Steam","icon":{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Quest set for all steam-based machines."}},"order":2},{"quests":[{"sizeX":72,"x":324,"y":120,"id":88,"sizeY":72},{"sizeX":48,"x":336,"y":0,"id":90,"sizeY":48},{"sizeX":48,"x":240,"y":288,"id":91,"sizeY":48},{"sizeX":48,"x":516,"y":432,"id":92,"sizeY":48},{"sizeX":48,"x":336,"y":288,"id":93,"sizeY":48},{"sizeX":48,"x":540,"y":288,"id":94,"sizeY":48},{"sizeX":48,"x":432,"y":288,"id":95,"sizeY":48},{"sizeX":48,"x":264,"y":0,"id":96,"sizeY":48},{"sizeX":72,"x":504,"y":588,"id":97,"sizeY":72},{"sizeX":48,"x":432,"y":1020,"id":98,"sizeY":48},{"sizeX":24,"x":444,"y":252,"id":100,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":101,"sizeY":24},{"sizeX":48,"x":84,"y":1020,"id":102,"sizeY":48},{"sizeX":72,"x":96,"y":120,"id":103,"sizeY":72},{"sizeX":48,"x":24,"y":132,"id":104,"sizeY":48},{"sizeX":48,"x":432,"y":840,"id":105,"sizeY":48},{"sizeX":24,"x":432,"y":96,"id":113,"sizeY":24},{"sizeX":24,"x":468,"y":48,"id":114,"sizeY":24},{"sizeX":24,"x":432,"y":48,"id":115,"sizeY":24},{"sizeX":24,"x":384,"y":84,"id":116,"sizeY":24},{"sizeX":24,"x":588,"y":540,"id":117,"sizeY":24},{"sizeX":24,"x":468,"y":504,"id":118,"sizeY":24},{"sizeX":24,"x":588,"y":48,"id":120,"sizeY":24},{"sizeX":24,"x":588,"y":96,"id":121,"sizeY":24},{"sizeX":24,"x":636,"y":48,"id":122,"sizeY":24},{"sizeX":24,"x":636,"y":96,"id":123,"sizeY":24},{"sizeX":24,"x":684,"y":48,"id":124,"sizeY":24},{"sizeX":24,"x":684,"y":96,"id":125,"sizeY":24},{"sizeX":48,"x":600,"y":432,"id":529,"sizeY":48},{"sizeX":48,"x":684,"y":432,"id":530,"sizeY":48},{"sizeX":24,"x":660,"y":612,"id":531,"sizeY":24},{"sizeX":24,"x":528,"y":348,"id":532,"sizeY":24},{"sizeX":24,"x":528,"y":252,"id":533,"sizeY":24},{"sizeX":24,"x":348,"y":384,"id":538,"sizeY":24},{"sizeX":48,"x":360,"y":756,"id":539,"sizeY":48},{"sizeX":48,"x":0,"y":1020,"id":540,"sizeY":48},{"sizeX":48,"x":0,"y":288,"id":541,"sizeY":48},{"sizeX":48,"x":768,"y":132,"id":542,"sizeY":48},{"sizeX":72,"x":276,"y":744,"id":543,"sizeY":72},{"sizeX":24,"x":480,"y":348,"id":544,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":545,"sizeY":24},{"sizeX":24,"x":96,"y":492,"id":546,"sizeY":24},{"sizeX":48,"x":84,"y":600,"id":547,"sizeY":48},{"sizeX":24,"x":192,"y":612,"id":548,"sizeY":24},{"sizeX":24,"x":192,"y":648,"id":549,"sizeY":24},{"sizeX":48,"x":288,"y":840,"id":550,"sizeY":48},{"sizeX":24,"x":144,"y":900,"id":551,"sizeY":24},{"sizeX":24,"x":180,"y":900,"id":552,"sizeY":24},{"sizeX":48,"x":264,"y":72,"id":554,"sizeY":48},{"sizeX":24,"x":372,"y":816,"id":555,"sizeY":24},{"sizeX":48,"x":372,"y":468,"id":579,"sizeY":48},{"sizeX":48,"x":180,"y":0,"id":587,"sizeY":48},{"sizeX":48,"x":516,"y":996,"id":597,"sizeY":48},{"sizeX":48,"x":516,"y":924,"id":598,"sizeY":48},{"sizeX":24,"x":828,"y":828,"id":599,"sizeY":24},{"sizeX":48,"x":516,"y":840,"id":608,"sizeY":48},{"sizeX":48,"x":612,"y":924,"id":609,"sizeY":48},{"sizeX":24,"x":732,"y":1104,"id":611,"sizeY":24},{"sizeX":24,"x":732,"y":1140,"id":612,"sizeY":24},{"sizeX":24,"x":864,"y":1068,"id":613,"sizeY":24},{"sizeX":24,"x":828,"y":1068,"id":614,"sizeY":24},{"sizeX":48,"x":924,"y":1056,"id":615,"sizeY":48},{"sizeX":24,"x":624,"y":1068,"id":616,"sizeY":24},{"sizeX":24,"x":624,"y":1140,"id":617,"sizeY":24},{"sizeX":24,"x":732,"y":1068,"id":618,"sizeY":24},{"sizeX":48,"x":852,"y":1128,"id":619,"sizeY":48},{"sizeX":24,"x":660,"y":1008,"id":620,"sizeY":24},{"sizeX":24,"x":744,"y":1008,"id":621,"sizeY":24},{"sizeX":48,"x":768,"y":924,"id":622,"sizeY":48},{"sizeX":24,"x":780,"y":1044,"id":623,"sizeY":24},{"sizeX":48,"x":852,"y":996,"id":624,"sizeY":48},{"sizeX":24,"x":264,"y":1032,"id":626,"sizeY":24},{"sizeX":24,"x":156,"y":648,"id":639,"sizeY":24},{"sizeX":24,"x":168,"y":852,"id":640,"sizeY":24},{"sizeX":24,"x":204,"y":720,"id":641,"sizeY":24},{"sizeX":24,"x":120,"y":936,"id":642,"sizeY":24},{"sizeX":24,"x":204,"y":936,"id":643,"sizeY":24},{"sizeX":24,"x":300,"y":936,"id":644,"sizeY":24},{"sizeX":24,"x":588,"y":1008,"id":646,"sizeY":24},{"sizeX":24,"x":468,"y":576,"id":661,"sizeY":24},{"sizeX":48,"x":996,"y":1128,"id":662,"sizeY":48},{"sizeX":24,"x":1056,"y":1140,"id":663,"sizeY":24},{"sizeX":48,"x":924,"y":1128,"id":664,"sizeY":48},{"sizeX":48,"x":300,"y":468,"id":673,"sizeY":48},{"sizeX":48,"x":636,"y":252,"id":716,"sizeY":48},{"sizeX":72,"x":600,"y":744,"id":717,"sizeY":72},{"sizeX":24,"x":264,"y":708,"id":726,"sizeY":24},{"sizeX":48,"x":444,"y":756,"id":745,"sizeY":48},{"sizeX":48,"x":612,"y":840,"id":747,"sizeY":48},{"sizeX":48,"x":516,"y":756,"id":748,"sizeY":48},{"sizeX":24,"x":252,"y":348,"id":771,"sizeY":24},{"sizeX":48,"x":696,"y":756,"id":795,"sizeY":48},{"sizeX":48,"x":768,"y":840,"id":836,"sizeY":48},{"sizeX":24,"x":204,"y":852,"id":840,"sizeY":24},{"sizeX":24,"x":480,"y":252,"id":869,"sizeY":24},{"sizeX":24,"x":276,"y":384,"id":891,"sizeY":24},{"sizeX":24,"x":276,"y":420,"id":892,"sizeY":24},{"sizeX":24,"x":312,"y":384,"id":898,"sizeY":24},{"sizeX":24,"x":744,"y":444,"id":930,"sizeY":24},{"sizeX":24,"x":444,"y":1104,"id":962,"sizeY":24},{"sizeX":24,"x":492,"y":1104,"id":1035,"sizeY":24},{"sizeX":48,"x":24,"y":600,"id":1084,"sizeY":48},{"sizeX":24,"x":144,"y":492,"id":1090,"sizeY":24},{"sizeX":24,"x":120,"y":1104,"id":1091,"sizeY":24},{"sizeX":24,"x":192,"y":492,"id":1092,"sizeY":24},{"sizeX":24,"x":156,"y":1104,"id":1094,"sizeY":24},{"sizeX":24,"x":588,"y":504,"id":1131,"sizeY":24},{"sizeX":24,"x":576,"y":852,"id":1134,"sizeY":24},{"sizeX":24,"x":312,"y":420,"id":1135,"sizeY":24},{"sizeX":24,"x":468,"y":540,"id":1136,"sizeY":24},{"sizeX":24,"x":264,"y":480,"id":1149,"sizeY":24},{"sizeX":24,"x":264,"y":528,"id":1150,"sizeY":24},{"sizeX":24,"x":216,"y":528,"id":1152,"sizeY":24},{"sizeX":24,"x":216,"y":576,"id":1153,"sizeY":24},{"sizeX":24,"x":300,"y":528,"id":1154,"sizeY":24},{"sizeX":48,"x":288,"y":564,"id":1155,"sizeY":48},{"sizeX":24,"x":372,"y":888,"id":1160,"sizeY":24},{"sizeX":24,"x":648,"y":216,"id":1166,"sizeY":24},{"sizeX":48,"x":852,"y":924,"id":1167,"sizeY":48},{"sizeX":24,"x":780,"y":1008,"id":1168,"sizeY":24},{"sizeX":48,"x":996,"y":1056,"id":1172,"sizeY":48},{"sizeX":48,"x":108,"y":60,"id":1266,"sizeY":48},{"sizeX":24,"x":348,"y":348,"id":1273,"sizeY":24},{"sizeX":24,"x":384,"y":348,"id":1274,"sizeY":24},{"sizeX":24,"x":396,"y":1104,"id":1285,"sizeY":24},{"sizeX":24,"x":264,"y":660,"id":1485,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1499,"sizeY":24},{"sizeX":24,"x":588,"y":576,"id":1510,"sizeY":24},{"sizeX":24,"x":372,"y":852,"id":1519,"sizeY":24},{"sizeX":24,"x":48,"y":1104,"id":1528,"sizeY":24},{"sizeX":24,"x":408,"y":720,"id":1540,"sizeY":24},{"sizeX":48,"x":516,"y":672,"id":1549,"sizeY":48},{"sizeX":24,"x":504,"y":48,"id":1599,"sizeY":24},{"sizeX":24,"x":408,"y":684,"id":1613,"sizeY":24},{"sizeX":24,"x":84,"y":1104,"id":1653,"sizeY":24},{"sizeX":24,"x":408,"y":648,"id":1791,"sizeY":24},{"sizeX":24,"x":624,"y":576,"id":1792,"sizeY":24},{"sizeX":24,"x":828,"y":876,"id":1796,"sizeY":24},{"sizeX":24,"x":672,"y":888,"id":1821,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1846,"sizeY":24},{"sizeX":24,"x":384,"y":528,"id":1863,"sizeY":24},{"sizeX":24,"x":456,"y":612,"id":1865,"sizeY":24},{"sizeX":24,"x":444,"y":216,"id":1887,"sizeY":24},{"sizeX":24,"x":576,"y":684,"id":1918,"sizeY":24},{"sizeX":24,"x":252,"y":252,"id":2142,"sizeY":24},{"sizeX":48,"x":240,"y":192,"id":2143,"sizeY":48}],"lineID":3,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 2 - 32 EU (LV)","icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17019,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The first \"voltage\" tier of this pack. Things are getting easier...\nBTW, if you can't see any quests, click in the quest window or use the mousewheel to zoom in and out. "}},"order":3},{"quests":[{"sizeX":24,"x":528,"y":204,"id":89,"sizeY":24},{"sizeX":48,"x":228,"y":420,"id":126,"sizeY":48},{"sizeX":24,"x":672,"y":348,"id":128,"sizeY":24},{"sizeX":24,"x":792,"y":312,"id":129,"sizeY":24},{"sizeX":24,"x":792,"y":264,"id":130,"sizeY":24},{"sizeX":24,"x":744,"y":264,"id":131,"sizeY":24},{"sizeX":24,"x":792,"y":228,"id":132,"sizeY":24},{"sizeX":24,"x":828,"y":312,"id":134,"sizeY":24},{"sizeX":24,"x":864,"y":312,"id":135,"sizeY":24},{"sizeX":24,"x":864,"y":264,"id":136,"sizeY":24},{"sizeX":24,"x":828,"y":264,"id":137,"sizeY":24},{"sizeX":24,"x":672,"y":228,"id":138,"sizeY":24},{"sizeX":24,"x":636,"y":192,"id":140,"sizeY":24},{"sizeX":24,"x":792,"y":192,"id":142,"sizeY":24},{"sizeX":24,"x":744,"y":228,"id":143,"sizeY":24},{"sizeX":24,"x":744,"y":192,"id":145,"sizeY":24},{"sizeX":24,"x":828,"y":156,"id":148,"sizeY":24},{"sizeX":24,"x":792,"y":156,"id":149,"sizeY":24},{"sizeX":24,"x":828,"y":192,"id":150,"sizeY":24},{"sizeX":24,"x":828,"y":120,"id":151,"sizeY":24},{"sizeX":24,"x":828,"y":84,"id":152,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":153,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":154,"sizeY":24},{"sizeX":24,"x":228,"y":192,"id":155,"sizeY":24},{"sizeX":24,"x":264,"y":192,"id":156,"sizeY":24},{"sizeX":24,"x":300,"y":192,"id":157,"sizeY":24},{"sizeX":24,"x":300,"y":228,"id":158,"sizeY":24},{"sizeX":24,"x":300,"y":156,"id":159,"sizeY":24},{"sizeX":24,"x":540,"y":600,"id":553,"sizeY":24},{"sizeX":24,"x":744,"y":312,"id":604,"sizeY":24},{"sizeX":24,"x":552,"y":492,"id":659,"sizeY":24},{"sizeX":24,"x":564,"y":540,"id":660,"sizeY":24},{"sizeX":24,"x":36,"y":348,"id":730,"sizeY":24},{"sizeX":24,"x":36,"y":384,"id":731,"sizeY":24},{"sizeX":24,"x":36,"y":444,"id":732,"sizeY":24},{"sizeX":24,"x":36,"y":528,"id":733,"sizeY":24},{"sizeX":24,"x":72,"y":528,"id":734,"sizeY":24},{"sizeX":24,"x":0,"y":528,"id":735,"sizeY":24},{"sizeX":24,"x":36,"y":600,"id":736,"sizeY":24},{"sizeX":48,"x":588,"y":480,"id":740,"sizeY":48},{"sizeX":48,"x":228,"y":924,"id":746,"sizeY":48},{"sizeX":48,"x":408,"y":516,"id":749,"sizeY":48},{"sizeX":72,"x":288,"y":660,"id":750,"sizeY":72},{"sizeX":48,"x":480,"y":588,"id":751,"sizeY":48},{"sizeX":48,"x":480,"y":924,"id":752,"sizeY":48},{"sizeX":72,"x":468,"y":660,"id":753,"sizeY":72},{"sizeX":48,"x":480,"y":516,"id":754,"sizeY":48},{"sizeX":24,"x":288,"y":468,"id":757,"sizeY":24},{"sizeX":24,"x":240,"y":372,"id":758,"sizeY":24},{"sizeX":48,"x":228,"y":672,"id":759,"sizeY":48},{"sizeX":48,"x":144,"y":180,"id":760,"sizeY":48},{"sizeX":24,"x":192,"y":684,"id":773,"sizeY":24},{"sizeX":24,"x":0,"y":408,"id":774,"sizeY":24},{"sizeX":24,"x":156,"y":684,"id":778,"sizeY":24},{"sizeX":24,"x":0,"y":444,"id":780,"sizeY":24},{"sizeX":48,"x":144,"y":84,"id":782,"sizeY":48},{"sizeX":48,"x":648,"y":924,"id":785,"sizeY":48},{"sizeX":48,"x":144,"y":0,"id":791,"sizeY":48},{"sizeX":48,"x":372,"y":84,"id":792,"sizeY":48},{"sizeX":48,"x":876,"y":0,"id":793,"sizeY":48},{"sizeX":48,"x":600,"y":0,"id":794,"sizeY":48},{"sizeX":48,"x":372,"y":0,"id":837,"sizeY":48},{"sizeX":72,"x":864,"y":912,"id":838,"sizeY":72},{"sizeX":24,"x":924,"y":876,"id":839,"sizeY":24},{"sizeX":24,"x":0,"y":600,"id":842,"sizeY":24},{"sizeX":24,"x":72,"y":636,"id":843,"sizeY":24},{"sizeX":24,"x":36,"y":636,"id":844,"sizeY":24},{"sizeX":24,"x":36,"y":684,"id":845,"sizeY":24},{"sizeX":48,"x":168,"y":504,"id":846,"sizeY":48},{"sizeX":48,"x":228,"y":588,"id":847,"sizeY":48},{"sizeX":24,"x":36,"y":732,"id":848,"sizeY":24},{"sizeX":24,"x":96,"y":684,"id":849,"sizeY":24},{"sizeX":24,"x":324,"y":516,"id":850,"sizeY":24},{"sizeX":24,"x":288,"y":516,"id":852,"sizeY":24},{"sizeX":48,"x":372,"y":420,"id":893,"sizeY":48},{"sizeX":24,"x":336,"y":432,"id":894,"sizeY":24},{"sizeX":48,"x":480,"y":420,"id":895,"sizeY":48},{"sizeX":48,"x":588,"y":420,"id":896,"sizeY":48},{"sizeX":48,"x":744,"y":420,"id":897,"sizeY":48},{"sizeX":24,"x":636,"y":384,"id":931,"sizeY":24},{"sizeX":24,"x":468,"y":120,"id":933,"sizeY":24},{"sizeX":24,"x":504,"y":120,"id":934,"sizeY":24},{"sizeX":24,"x":468,"y":156,"id":935,"sizeY":24},{"sizeX":24,"x":492,"y":756,"id":938,"sizeY":24},{"sizeX":24,"x":456,"y":756,"id":939,"sizeY":24},{"sizeX":24,"x":336,"y":468,"id":944,"sizeY":24},{"sizeX":48,"x":372,"y":672,"id":951,"sizeY":48},{"sizeX":24,"x":432,"y":636,"id":952,"sizeY":24},{"sizeX":24,"x":576,"y":684,"id":953,"sizeY":24},{"sizeX":48,"x":384,"y":792,"id":1013,"sizeY":48},{"sizeX":48,"x":384,"y":864,"id":1015,"sizeY":48},{"sizeX":48,"x":300,"y":864,"id":1020,"sizeY":48},{"sizeX":48,"x":300,"y":792,"id":1021,"sizeY":48},{"sizeX":48,"x":648,"y":480,"id":1081,"sizeY":48},{"sizeX":24,"x":312,"y":372,"id":1082,"sizeY":24},{"sizeX":24,"x":276,"y":372,"id":1083,"sizeY":24},{"sizeX":24,"x":108,"y":480,"id":1093,"sizeY":24},{"sizeX":72,"x":132,"y":324,"id":1148,"sizeY":72},{"sizeX":24,"x":660,"y":540,"id":1180,"sizeY":24},{"sizeX":24,"x":0,"y":684,"id":1226,"sizeY":24},{"sizeX":24,"x":312,"y":756,"id":1227,"sizeY":24},{"sizeX":24,"x":204,"y":288,"id":1267,"sizeY":24},{"sizeX":24,"x":240,"y":288,"id":1268,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":1269,"sizeY":24},{"sizeX":24,"x":672,"y":384,"id":1279,"sizeY":24},{"sizeX":24,"x":72,"y":408,"id":1320,"sizeY":24},{"sizeX":24,"x":0,"y":480,"id":1321,"sizeY":24},{"sizeX":24,"x":72,"y":480,"id":1322,"sizeY":24},{"sizeX":24,"x":36,"y":564,"id":1323,"sizeY":24},{"sizeX":24,"x":36,"y":780,"id":1324,"sizeY":24},{"sizeX":24,"x":576,"y":756,"id":1417,"sizeY":24},{"sizeX":48,"x":456,"y":228,"id":1477,"sizeY":48},{"sizeX":48,"x":372,"y":228,"id":1478,"sizeY":48},{"sizeX":24,"x":468,"y":192,"id":1482,"sizeY":24},{"sizeX":24,"x":540,"y":756,"id":1494,"sizeY":24},{"sizeX":24,"x":636,"y":228,"id":1518,"sizeY":24},{"sizeX":24,"x":660,"y":852,"id":1520,"sizeY":24},{"sizeX":24,"x":432,"y":684,"id":1524,"sizeY":24},{"sizeX":24,"x":672,"y":192,"id":1527,"sizeY":24},{"sizeX":24,"x":552,"y":636,"id":1537,"sizeY":24},{"sizeX":24,"x":132,"y":780,"id":1544,"sizeY":24},{"sizeX":24,"x":600,"y":384,"id":1547,"sizeY":24},{"sizeX":48,"x":648,"y":792,"id":1598,"sizeY":48},{"sizeX":24,"x":804,"y":432,"id":1614,"sizeY":24},{"sizeX":24,"x":636,"y":156,"id":1643,"sizeY":24},{"sizeX":24,"x":540,"y":432,"id":1736,"sizeY":24},{"sizeX":48,"x":228,"y":504,"id":1744,"sizeY":48},{"sizeX":24,"x":444,"y":876,"id":1819,"sizeY":24},{"sizeX":24,"x":852,"y":876,"id":1823,"sizeY":24},{"sizeX":24,"x":744,"y":348,"id":1835,"sizeY":24},{"sizeX":24,"x":528,"y":312,"id":1850,"sizeY":24},{"sizeX":48,"x":420,"y":336,"id":1867,"sizeY":48},{"sizeX":48,"x":600,"y":84,"id":1868,"sizeY":48},{"sizeX":24,"x":528,"y":240,"id":1869,"sizeY":24},{"sizeX":24,"x":564,"y":384,"id":1870,"sizeY":24},{"sizeX":24,"x":288,"y":600,"id":1872,"sizeY":24},{"sizeX":24,"x":324,"y":600,"id":1873,"sizeY":24},{"sizeX":24,"x":360,"y":600,"id":1874,"sizeY":24},{"sizeX":24,"x":708,"y":492,"id":1907,"sizeY":24},{"sizeX":24,"x":600,"y":540,"id":1910,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1911,"sizeY":24},{"sizeX":24,"x":372,"y":312,"id":1913,"sizeY":24},{"sizeX":24,"x":336,"y":312,"id":1914,"sizeY":24},{"sizeX":24,"x":384,"y":192,"id":1916,"sizeY":24},{"sizeX":24,"x":384,"y":156,"id":1917,"sizeY":24},{"sizeX":24,"x":696,"y":540,"id":2014,"sizeY":24},{"sizeX":24,"x":288,"y":432,"id":2043,"sizeY":24},{"sizeX":24,"x":708,"y":804,"id":2047,"sizeY":24},{"sizeX":24,"x":744,"y":156,"id":2086,"sizeY":24},{"sizeX":24,"x":528,"y":276,"id":2141,"sizeY":24},{"sizeX":24,"x":108,"y":444,"id":2253,"sizeY":24}],"lineID":4,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 3 - 128 EU (MV)","icon":{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Your second voltage tier. Don't mix different voltage levels, or you will be punished in a hard way. Start thinking about how to expand your base. \nAgain, use mousewheel to zoom out to see quests."}},"order":4},{"quests":[{"sizeX":24,"x":420,"y":348,"id":133,"sizeY":24},{"sizeX":24,"x":744,"y":180,"id":141,"sizeY":24},{"sizeX":24,"x":648,"y":228,"id":144,"sizeY":24},{"sizeX":24,"x":648,"y":264,"id":146,"sizeY":24},{"sizeX":24,"x":444,"y":876,"id":147,"sizeY":24},{"sizeX":72,"x":456,"y":156,"id":160,"sizeY":72},{"sizeX":48,"x":552,"y":564,"id":162,"sizeY":48},{"sizeX":24,"x":780,"y":264,"id":163,"sizeY":24},{"sizeX":24,"x":696,"y":264,"id":165,"sizeY":24},{"sizeX":24,"x":612,"y":264,"id":166,"sizeY":24},{"sizeX":24,"x":504,"y":276,"id":167,"sizeY":24},{"sizeX":24,"x":696,"y":228,"id":168,"sizeY":24},{"sizeX":24,"x":744,"y":264,"id":169,"sizeY":24},{"sizeX":24,"x":780,"y":132,"id":170,"sizeY":24},{"sizeX":24,"x":360,"y":132,"id":171,"sizeY":24},{"sizeX":24,"x":312,"y":132,"id":172,"sizeY":24},{"sizeX":24,"x":264,"y":132,"id":173,"sizeY":24},{"sizeX":24,"x":228,"y":132,"id":174,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":175,"sizeY":24},{"sizeX":24,"x":360,"y":912,"id":557,"sizeY":24},{"sizeX":48,"x":300,"y":324,"id":769,"sizeY":48},{"sizeX":48,"x":300,"y":408,"id":770,"sizeY":48},{"sizeX":48,"x":216,"y":324,"id":772,"sizeY":48},{"sizeX":24,"x":312,"y":288,"id":789,"sizeY":24},{"sizeX":24,"x":312,"y":252,"id":790,"sizeY":24},{"sizeX":48,"x":432,"y":48,"id":808,"sizeY":48},{"sizeX":24,"x":360,"y":876,"id":841,"sizeY":24},{"sizeX":24,"x":324,"y":876,"id":851,"sizeY":24},{"sizeX":24,"x":360,"y":828,"id":853,"sizeY":24},{"sizeX":24,"x":252,"y":828,"id":854,"sizeY":24},{"sizeX":24,"x":312,"y":828,"id":855,"sizeY":24},{"sizeX":24,"x":444,"y":948,"id":856,"sizeY":24},{"sizeX":24,"x":360,"y":792,"id":857,"sizeY":24},{"sizeX":24,"x":252,"y":984,"id":858,"sizeY":24},{"sizeX":24,"x":480,"y":984,"id":859,"sizeY":24},{"sizeX":72,"x":732,"y":636,"id":860,"sizeY":72},{"sizeX":24,"x":504,"y":348,"id":932,"sizeY":24},{"sizeX":48,"x":300,"y":720,"id":943,"sizeY":48},{"sizeX":24,"x":744,"y":336,"id":987,"sizeY":24},{"sizeX":24,"x":816,"y":180,"id":988,"sizeY":24},{"sizeX":24,"x":648,"y":180,"id":989,"sizeY":24},{"sizeX":24,"x":744,"y":300,"id":990,"sizeY":24},{"sizeX":24,"x":744,"y":132,"id":998,"sizeY":24},{"sizeX":24,"x":744,"y":96,"id":999,"sizeY":24},{"sizeX":24,"x":648,"y":132,"id":1000,"sizeY":24},{"sizeX":24,"x":696,"y":132,"id":1001,"sizeY":24},{"sizeX":48,"x":648,"y":564,"id":1011,"sizeY":48},{"sizeX":48,"x":744,"y":564,"id":1012,"sizeY":48},{"sizeX":72,"x":48,"y":312,"id":1014,"sizeY":72},{"sizeX":48,"x":60,"y":564,"id":1016,"sizeY":48},{"sizeX":48,"x":60,"y":408,"id":1017,"sizeY":48},{"sizeX":48,"x":216,"y":564,"id":1018,"sizeY":48},{"sizeX":48,"x":60,"y":492,"id":1019,"sizeY":48},{"sizeX":24,"x":564,"y":72,"id":1137,"sizeY":24},{"sizeX":24,"x":564,"y":36,"id":1138,"sizeY":24},{"sizeX":24,"x":600,"y":72,"id":1139,"sizeY":24},{"sizeX":24,"x":600,"y":36,"id":1140,"sizeY":24},{"sizeX":24,"x":564,"y":0,"id":1141,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":1142,"sizeY":24},{"sizeX":24,"x":360,"y":72,"id":1143,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":1144,"sizeY":24},{"sizeX":24,"x":600,"y":0,"id":1145,"sizeY":24},{"sizeX":48,"x":552,"y":480,"id":1164,"sizeY":48},{"sizeX":48,"x":144,"y":564,"id":1221,"sizeY":48},{"sizeX":48,"x":60,"y":240,"id":1222,"sizeY":48},{"sizeX":48,"x":60,"y":168,"id":1225,"sizeY":48},{"sizeX":72,"x":456,"y":396,"id":1231,"sizeY":72},{"sizeX":72,"x":288,"y":552,"id":1232,"sizeY":72},{"sizeX":48,"x":300,"y":648,"id":1233,"sizeY":48},{"sizeX":24,"x":156,"y":624,"id":1235,"sizeY":24},{"sizeX":48,"x":144,"y":408,"id":1236,"sizeY":48},{"sizeX":48,"x":216,"y":168,"id":1237,"sizeY":48},{"sizeX":48,"x":216,"y":252,"id":1238,"sizeY":48},{"sizeX":48,"x":144,"y":324,"id":1239,"sizeY":48},{"sizeX":48,"x":144,"y":168,"id":1240,"sizeY":48},{"sizeX":24,"x":540,"y":348,"id":1271,"sizeY":24},{"sizeX":24,"x":420,"y":444,"id":1289,"sizeY":24},{"sizeX":24,"x":396,"y":72,"id":1403,"sizeY":24},{"sizeX":24,"x":540,"y":276,"id":1404,"sizeY":24},{"sizeX":24,"x":816,"y":660,"id":1405,"sizeY":24},{"sizeX":24,"x":288,"y":876,"id":1411,"sizeY":24},{"sizeX":24,"x":612,"y":492,"id":1420,"sizeY":24},{"sizeX":48,"x":648,"y":648,"id":1424,"sizeY":48},{"sizeX":24,"x":612,"y":228,"id":1502,"sizeY":24},{"sizeX":24,"x":816,"y":216,"id":1509,"sizeY":24},{"sizeX":24,"x":504,"y":312,"id":1517,"sizeY":24},{"sizeX":24,"x":612,"y":420,"id":1521,"sizeY":24},{"sizeX":24,"x":780,"y":300,"id":1526,"sizeY":24},{"sizeX":24,"x":360,"y":384,"id":1529,"sizeY":24},{"sizeX":72,"x":540,"y":636,"id":1612,"sizeY":72},{"sizeX":24,"x":240,"y":732,"id":1615,"sizeY":24},{"sizeX":24,"x":180,"y":732,"id":1617,"sizeY":24},{"sizeX":24,"x":120,"y":780,"id":1620,"sizeY":24},{"sizeX":24,"x":120,"y":732,"id":1621,"sizeY":24},{"sizeX":24,"x":120,"y":828,"id":1622,"sizeY":24},{"sizeX":24,"x":264,"y":660,"id":1655,"sizeY":24},{"sizeX":24,"x":120,"y":876,"id":1660,"sizeY":24},{"sizeX":24,"x":216,"y":780,"id":1661,"sizeY":24},{"sizeX":24,"x":168,"y":780,"id":1662,"sizeY":24},{"sizeX":24,"x":168,"y":828,"id":1663,"sizeY":24},{"sizeX":24,"x":168,"y":876,"id":1664,"sizeY":24},{"sizeX":24,"x":108,"y":624,"id":1713,"sizeY":24},{"sizeX":24,"x":60,"y":624,"id":1714,"sizeY":24},{"sizeX":24,"x":648,"y":312,"id":1739,"sizeY":24},{"sizeX":24,"x":612,"y":132,"id":1811,"sizeY":24},{"sizeX":48,"x":396,"y":720,"id":1812,"sizeY":48},{"sizeX":48,"x":432,"y":648,"id":1813,"sizeY":48},{"sizeX":48,"x":432,"y":564,"id":1814,"sizeY":48},{"sizeX":24,"x":420,"y":312,"id":1815,"sizeY":24},{"sizeX":24,"x":756,"y":720,"id":1824,"sizeY":24},{"sizeX":24,"x":780,"y":216,"id":1858,"sizeY":24},{"sizeX":24,"x":456,"y":348,"id":1871,"sizeY":24},{"sizeX":24,"x":0,"y":228,"id":1876,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1877,"sizeY":24},{"sizeX":48,"x":300,"y":480,"id":1903,"sizeY":48},{"sizeX":24,"x":0,"y":276,"id":1906,"sizeY":24},{"sizeX":24,"x":456,"y":312,"id":1909,"sizeY":24},{"sizeX":48,"x":504,"y":48,"id":1921,"sizeY":48},{"sizeX":24,"x":324,"y":72,"id":1922,"sizeY":24},{"sizeX":24,"x":324,"y":36,"id":1923,"sizeY":24},{"sizeX":24,"x":324,"y":0,"id":1924,"sizeY":24},{"sizeX":24,"x":360,"y":252,"id":2069,"sizeY":24},{"sizeX":24,"x":324,"y":948,"id":2293,"sizeY":24}],"lineID":5,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 4 - 512 EU (HV)","icon":{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Finally some power to work with. This tier will help you reach distant planets and gather more rare resources to build even more advanced machines."}},"order":5},{"quests":[{"sizeX":72,"x":252,"y":324,"id":176,"sizeY":72},{"sizeX":48,"x":192,"y":468,"id":186,"sizeY":48},{"sizeX":24,"x":216,"y":396,"id":187,"sizeY":24},{"sizeX":48,"x":168,"y":336,"id":188,"sizeY":48},{"sizeX":48,"x":420,"y":336,"id":189,"sizeY":48},{"sizeX":48,"x":492,"y":336,"id":190,"sizeY":48},{"sizeX":24,"x":552,"y":432,"id":191,"sizeY":24},{"sizeX":24,"x":588,"y":432,"id":192,"sizeY":24},{"sizeX":48,"x":492,"y":420,"id":193,"sizeY":48},{"sizeX":24,"x":504,"y":264,"id":194,"sizeY":24},{"sizeX":24,"x":504,"y":300,"id":195,"sizeY":24},{"sizeX":24,"x":552,"y":348,"id":196,"sizeY":24},{"sizeX":24,"x":552,"y":300,"id":197,"sizeY":24},{"sizeX":24,"x":588,"y":480,"id":198,"sizeY":24},{"sizeX":24,"x":456,"y":216,"id":199,"sizeY":24},{"sizeX":24,"x":456,"y":180,"id":200,"sizeY":24},{"sizeX":24,"x":504,"y":216,"id":206,"sizeY":24},{"sizeX":24,"x":432,"y":516,"id":207,"sizeY":24},{"sizeX":24,"x":432,"y":480,"id":208,"sizeY":24},{"sizeX":24,"x":432,"y":552,"id":209,"sizeY":24},{"sizeX":24,"x":396,"y":516,"id":210,"sizeY":24},{"sizeX":24,"x":432,"y":444,"id":211,"sizeY":24},{"sizeX":24,"x":336,"y":240,"id":212,"sizeY":24},{"sizeX":24,"x":144,"y":168,"id":805,"sizeY":24},{"sizeX":24,"x":108,"y":168,"id":806,"sizeY":24},{"sizeX":24,"x":72,"y":132,"id":807,"sizeY":24},{"sizeX":72,"x":180,"y":672,"id":861,"sizeY":72},{"sizeX":24,"x":540,"y":180,"id":936,"sizeY":24},{"sizeX":24,"x":540,"y":144,"id":937,"sizeY":24},{"sizeX":24,"x":576,"y":180,"id":1003,"sizeY":24},{"sizeX":24,"x":576,"y":144,"id":1004,"sizeY":24},{"sizeX":24,"x":336,"y":408,"id":1005,"sizeY":24},{"sizeX":48,"x":0,"y":0,"id":1223,"sizeY":48},{"sizeX":48,"x":264,"y":84,"id":1224,"sizeY":48},{"sizeX":48,"x":348,"y":84,"id":1228,"sizeY":48},{"sizeX":48,"x":264,"y":228,"id":1229,"sizeY":48},{"sizeX":48,"x":264,"y":156,"id":1230,"sizeY":48},{"sizeX":48,"x":180,"y":84,"id":1234,"sizeY":48},{"sizeX":24,"x":72,"y":288,"id":1241,"sizeY":24},{"sizeX":24,"x":336,"y":276,"id":1242,"sizeY":24},{"sizeX":48,"x":120,"y":540,"id":1243,"sizeY":48},{"sizeX":48,"x":192,"y":540,"id":1244,"sizeY":48},{"sizeX":48,"x":192,"y":228,"id":1245,"sizeY":48},{"sizeX":48,"x":0,"y":156,"id":1246,"sizeY":48},{"sizeX":48,"x":0,"y":228,"id":1247,"sizeY":48},{"sizeX":48,"x":108,"y":0,"id":1248,"sizeY":48},{"sizeX":48,"x":108,"y":84,"id":1249,"sizeY":48},{"sizeX":48,"x":180,"y":0,"id":1250,"sizeY":48},{"sizeX":72,"x":252,"y":-12,"id":1251,"sizeY":72},{"sizeX":24,"x":108,"y":288,"id":1252,"sizeY":24},{"sizeX":48,"x":348,"y":0,"id":1261,"sizeY":48},{"sizeX":24,"x":504,"y":180,"id":1262,"sizeY":24},{"sizeX":24,"x":504,"y":144,"id":1263,"sizeY":24},{"sizeX":24,"x":504,"y":108,"id":1264,"sizeY":24},{"sizeX":24,"x":456,"y":144,"id":1265,"sizeY":24},{"sizeX":48,"x":180,"y":156,"id":1406,"sizeY":48},{"sizeX":24,"x":72,"y":168,"id":1407,"sizeY":24},{"sizeX":24,"x":180,"y":624,"id":1408,"sizeY":24},{"sizeX":24,"x":180,"y":396,"id":1415,"sizeY":24},{"sizeX":24,"x":132,"y":624,"id":1416,"sizeY":24},{"sizeX":24,"x":132,"y":696,"id":1418,"sizeY":24},{"sizeX":48,"x":120,"y":468,"id":1461,"sizeY":48},{"sizeX":24,"x":336,"y":324,"id":1474,"sizeY":24},{"sizeX":24,"x":144,"y":288,"id":1480,"sizeY":24},{"sizeX":24,"x":588,"y":516,"id":1481,"sizeY":24},{"sizeX":24,"x":336,"y":372,"id":1525,"sizeY":24},{"sizeX":24,"x":156,"y":432,"id":1656,"sizeY":24},{"sizeX":24,"x":120,"y":432,"id":1657,"sizeY":24},{"sizeX":24,"x":84,"y":432,"id":1658,"sizeY":24},{"sizeX":24,"x":48,"y":432,"id":1659,"sizeY":24},{"sizeX":24,"x":276,"y":696,"id":1847,"sizeY":24},{"sizeX":24,"x":72,"y":96,"id":1878,"sizeY":24},{"sizeX":24,"x":36,"y":60,"id":1879,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":1880,"sizeY":24},{"sizeX":48,"x":264,"y":540,"id":1891,"sizeY":48},{"sizeX":24,"x":552,"y":480,"id":1898,"sizeY":24},{"sizeX":24,"x":504,"y":480,"id":1899,"sizeY":24},{"sizeX":24,"x":504,"y":516,"id":1900,"sizeY":24},{"sizeX":24,"x":552,"y":516,"id":1901,"sizeY":24},{"sizeX":24,"x":456,"y":300,"id":1902,"sizeY":24},{"sizeX":48,"x":96,"y":228,"id":1925,"sizeY":48},{"sizeX":48,"x":264,"y":468,"id":2018,"sizeY":48},{"sizeX":48,"x":336,"y":540,"id":2023,"sizeY":48},{"sizeX":24,"x":384,"y":372,"id":2210,"sizeY":24},{"sizeX":24,"x":204,"y":288,"id":2294,"sizeY":24}],"lineID":6,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 5 - 2048 EU (EV)","icon":{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Titanium level, fissile energy sources, Applied Energistics 2."}},"order":6},{"quests":[{"sizeX":72,"x":456,"y":108,"id":213,"sizeY":72},{"sizeX":48,"x":468,"y":300,"id":214,"sizeY":48},{"sizeX":72,"x":456,"y":204,"id":215,"sizeY":72},{"sizeX":24,"x":720,"y":288,"id":216,"sizeY":24},{"sizeX":24,"x":456,"y":372,"id":217,"sizeY":24},{"sizeX":24,"x":504,"y":372,"id":218,"sizeY":24},{"sizeX":24,"x":672,"y":132,"id":219,"sizeY":24},{"sizeX":24,"x":720,"y":132,"id":220,"sizeY":24},{"sizeX":24,"x":720,"y":84,"id":221,"sizeY":24},{"sizeX":24,"x":768,"y":132,"id":222,"sizeY":24},{"sizeX":24,"x":768,"y":84,"id":223,"sizeY":24},{"sizeX":24,"x":168,"y":264,"id":1006,"sizeY":24},{"sizeX":24,"x":132,"y":300,"id":1007,"sizeY":24},{"sizeX":24,"x":600,"y":72,"id":1409,"sizeY":24},{"sizeX":24,"x":528,"y":72,"id":1410,"sizeY":24},{"sizeX":72,"x":348,"y":108,"id":1413,"sizeY":72},{"sizeX":72,"x":252,"y":204,"id":1414,"sizeY":72},{"sizeX":72,"x":600,"y":204,"id":1491,"sizeY":72},{"sizeX":24,"x":564,"y":72,"id":1522,"sizeY":24},{"sizeX":48,"x":384,"y":300,"id":1533,"sizeY":48},{"sizeX":48,"x":552,"y":300,"id":1534,"sizeY":48},{"sizeX":48,"x":264,"y":300,"id":1538,"sizeY":48},{"sizeX":48,"x":360,"y":216,"id":1539,"sizeY":48},{"sizeX":24,"x":684,"y":288,"id":1665,"sizeY":24},{"sizeX":48,"x":612,"y":468,"id":1666,"sizeY":48},{"sizeX":48,"x":264,"y":468,"id":1667,"sizeY":48},{"sizeX":48,"x":84,"y":216,"id":1669,"sizeY":48},{"sizeX":48,"x":264,"y":648,"id":1670,"sizeY":48},{"sizeX":48,"x":84,"y":648,"id":1671,"sizeY":48},{"sizeX":24,"x":168,"y":624,"id":1672,"sizeY":24},{"sizeX":48,"x":84,"y":336,"id":1673,"sizeY":48},{"sizeX":24,"x":60,"y":300,"id":1674,"sizeY":24},{"sizeX":48,"x":0,"y":216,"id":1675,"sizeY":48},{"sizeX":48,"x":0,"y":120,"id":1676,"sizeY":48},{"sizeX":48,"x":84,"y":120,"id":1677,"sizeY":48},{"sizeX":48,"x":180,"y":0,"id":1678,"sizeY":48},{"sizeX":48,"x":84,"y":0,"id":1679,"sizeY":48},{"sizeX":48,"x":948,"y":216,"id":1691,"sizeY":48},{"sizeX":48,"x":1032,"y":216,"id":1692,"sizeY":48},{"sizeX":48,"x":1032,"y":300,"id":1693,"sizeY":48},{"sizeX":48,"x":1032,"y":384,"id":1694,"sizeY":48},{"sizeX":48,"x":1032,"y":468,"id":1695,"sizeY":48},{"sizeX":48,"x":768,"y":216,"id":1696,"sizeY":48},{"sizeX":48,"x":1032,"y":612,"id":1697,"sizeY":48},{"sizeX":48,"x":948,"y":468,"id":1698,"sizeY":48},{"sizeX":48,"x":948,"y":384,"id":1699,"sizeY":48},{"sizeX":48,"x":864,"y":468,"id":1700,"sizeY":48},{"sizeX":48,"x":684,"y":468,"id":1701,"sizeY":48},{"sizeX":48,"x":864,"y":384,"id":1702,"sizeY":48},{"sizeX":48,"x":864,"y":300,"id":1703,"sizeY":48},{"sizeX":48,"x":768,"y":384,"id":1704,"sizeY":48},{"sizeX":48,"x":264,"y":0,"id":1705,"sizeY":48},{"sizeX":48,"x":360,"y":0,"id":1706,"sizeY":48},{"sizeX":48,"x":468,"y":0,"id":1707,"sizeY":48},{"sizeX":24,"x":60,"y":396,"id":1712,"sizeY":24},{"sizeX":48,"x":192,"y":396,"id":1715,"sizeY":48},{"sizeX":48,"x":192,"y":300,"id":1716,"sizeY":48},{"sizeX":48,"x":192,"y":468,"id":1717,"sizeY":48},{"sizeX":24,"x":480,"y":72,"id":1718,"sizeY":24},{"sizeX":24,"x":216,"y":600,"id":1719,"sizeY":24},{"sizeX":48,"x":264,"y":120,"id":1890,"sizeY":48},{"sizeX":24,"x":372,"y":444,"id":1896,"sizeY":24},{"sizeX":24,"x":372,"y":396,"id":1897,"sizeY":24},{"sizeX":24,"x":144,"y":132,"id":2148,"sizeY":24},{"sizeX":24,"x":180,"y":132,"id":2149,"sizeY":24},{"sizeX":24,"x":180,"y":168,"id":2150,"sizeY":24}],"lineID":7,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 6 - 8192 EU (IV)","icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Tungsten level, Asteriod dims, assembly line"}},"order":7},{"quests":[{"sizeX":24,"x":108,"y":48,"id":201,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":202,"sizeY":24},{"sizeX":48,"x":312,"y":96,"id":1489,"sizeY":48},{"sizeX":48,"x":240,"y":96,"id":1490,"sizeY":48},{"sizeX":72,"x":300,"y":0,"id":1493,"sizeY":72},{"sizeX":24,"x":180,"y":48,"id":1680,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":1681,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1682,"sizeY":24},{"sizeX":48,"x":240,"y":168,"id":1683,"sizeY":48},{"sizeX":24,"x":180,"y":252,"id":1684,"sizeY":24},{"sizeX":48,"x":240,"y":240,"id":1685,"sizeY":48},{"sizeX":24,"x":180,"y":180,"id":1686,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1687,"sizeY":24},{"sizeX":24,"x":180,"y":216,"id":1688,"sizeY":24},{"sizeX":48,"x":168,"y":96,"id":1689,"sizeY":48},{"sizeX":24,"x":108,"y":180,"id":1708,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1709,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":1710,"sizeY":24},{"sizeX":24,"x":324,"y":288,"id":1711,"sizeY":24},{"sizeX":24,"x":396,"y":60,"id":1720,"sizeY":24},{"sizeX":24,"x":432,"y":60,"id":1721,"sizeY":24},{"sizeX":48,"x":384,"y":96,"id":1722,"sizeY":48},{"sizeX":24,"x":384,"y":24,"id":2024,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":2041,"sizeY":24},{"sizeX":24,"x":252,"y":60,"id":2071,"sizeY":24}],"lineID":8,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 7 - 32768 EU (LuV)","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""},"bg_image":"","bg_size":256,"desc":"If you have made it this far, you should walk with your head held high - you are at the start of the lategame. Endgame is still a long road ahead of you, but you are now an expert at GTNH and most of the mods it comes with. Congrats, and be proud of your Big Dick Energy."}},"order":8},{"quests":[{"sizeX":48,"x":108,"y":84,"id":1197,"sizeY":48},{"sizeX":48,"x":228,"y":168,"id":1198,"sizeY":48},{"sizeX":48,"x":108,"y":168,"id":1199,"sizeY":48},{"sizeX":24,"x":24,"y":84,"id":1200,"sizeY":24},{"sizeX":24,"x":24,"y":120,"id":1201,"sizeY":24},{"sizeX":48,"x":228,"y":96,"id":1202,"sizeY":48},{"sizeX":48,"x":228,"y":12,"id":1203,"sizeY":48},{"sizeX":72,"x":0,"y":0,"id":1212,"sizeY":72},{"sizeX":48,"x":108,"y":12,"id":1213,"sizeY":48}],"lineID":9,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Fusion","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Making power for the lategame tiers, LuV-UMV"}},"order":9},{"quests":[{"sizeX":24,"x":306,"y":36,"id":627,"sizeY":24},{"sizeX":24,"x":342,"y":0,"id":628,"sizeY":24},{"sizeX":24,"x":378,"y":36,"id":629,"sizeY":24},{"sizeX":24,"x":504,"y":108,"id":630,"sizeY":24},{"sizeX":24,"x":342,"y":36,"id":631,"sizeY":24},{"sizeX":24,"x":468,"y":108,"id":632,"sizeY":24},{"sizeX":24,"x":468,"y":72,"id":633,"sizeY":24},{"sizeX":24,"x":270,"y":36,"id":634,"sizeY":24},{"sizeX":24,"x":270,"y":72,"id":635,"sizeY":24},{"sizeX":24,"x":270,"y":144,"id":636,"sizeY":24},{"sizeX":24,"x":270,"y":108,"id":637,"sizeY":24},{"sizeX":24,"x":270,"y":180,"id":638,"sizeY":24},{"sizeX":24,"x":342,"y":180,"id":665,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":718,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":719,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":720,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":721,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":722,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":723,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":724,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":725,"sizeY":24},{"sizeX":24,"x":504,"y":72,"id":1009,"sizeY":24},{"sizeX":24,"x":426,"y":72,"id":1010,"sizeY":24},{"sizeX":24,"x":270,"y":228,"id":1086,"sizeY":24},{"sizeX":24,"x":306,"y":180,"id":1087,"sizeY":24},{"sizeX":24,"x":342,"y":228,"id":1088,"sizeY":24},{"sizeX":24,"x":306,"y":228,"id":1089,"sizeY":24},{"sizeX":24,"x":426,"y":132,"id":1178,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1270,"sizeY":24},{"sizeX":24,"x":342,"y":72,"id":1272,"sizeY":24},{"sizeX":24,"x":378,"y":108,"id":1275,"sizeY":24},{"sizeX":24,"x":378,"y":72,"id":1276,"sizeY":24},{"sizeX":24,"x":552,"y":36,"id":1277,"sizeY":24},{"sizeX":24,"x":342,"y":108,"id":1278,"sizeY":24},{"sizeX":24,"x":552,"y":72,"id":1280,"sizeY":24},{"sizeX":24,"x":552,"y":108,"id":1281,"sizeY":24},{"sizeX":24,"x":588,"y":36,"id":1282,"sizeY":24},{"sizeX":24,"x":624,"y":36,"id":1283,"sizeY":24},{"sizeX":24,"x":624,"y":0,"id":1284,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1288,"sizeY":24},{"sizeX":24,"x":354,"y":366,"id":1483,"sizeY":24},{"sizeX":24,"x":402,"y":318,"id":1484,"sizeY":24},{"sizeX":24,"x":450,"y":366,"id":1486,"sizeY":24},{"sizeX":24,"x":498,"y":318,"id":1487,"sizeY":24},{"sizeX":24,"x":546,"y":366,"id":1488,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1541,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1542,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1543,"sizeY":24},{"sizeX":24,"x":270,"y":0,"id":1560,"sizeY":24},{"sizeX":24,"x":126,"y":228,"id":1600,"sizeY":24},{"sizeX":24,"x":180,"y":228,"id":1601,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1602,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1603,"sizeY":24},{"sizeX":24,"x":108,"y":300,"id":1604,"sizeY":24},{"sizeX":24,"x":180,"y":300,"id":1605,"sizeY":24},{"sizeX":24,"x":144,"y":300,"id":1606,"sizeY":24},{"sizeX":24,"x":126,"y":336,"id":1607,"sizeY":24},{"sizeX":24,"x":0,"y":264,"id":1737,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1793,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1794,"sizeY":24},{"sizeX":24,"x":180,"y":264,"id":1795,"sizeY":24},{"sizeX":24,"x":72,"y":300,"id":1797,"sizeY":24},{"sizeX":24,"x":36,"y":336,"id":1798,"sizeY":24},{"sizeX":24,"x":36,"y":372,"id":1799,"sizeY":24},{"sizeX":24,"x":0,"y":372,"id":1800,"sizeY":24},{"sizeX":24,"x":0,"y":336,"id":1801,"sizeY":24},{"sizeX":24,"x":108,"y":372,"id":1802,"sizeY":24},{"sizeX":24,"x":180,"y":336,"id":1803,"sizeY":24},{"sizeX":24,"x":216,"y":336,"id":1804,"sizeY":24},{"sizeX":24,"x":144,"y":408,"id":1805,"sizeY":24},{"sizeX":24,"x":72,"y":372,"id":1806,"sizeY":24},{"sizeX":24,"x":252,"y":408,"id":1807,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1808,"sizeY":24},{"sizeX":24,"x":0,"y":408,"id":1809,"sizeY":24},{"sizeX":24,"x":378,"y":180,"id":1836,"sizeY":24},{"sizeX":24,"x":306,"y":144,"id":1854,"sizeY":24},{"sizeX":24,"x":306,"y":108,"id":1855,"sizeY":24},{"sizeX":24,"x":342,"y":144,"id":1857,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1862,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1920,"sizeY":24},{"sizeX":24,"x":36,"y":408,"id":1927,"sizeY":24},{"sizeX":24,"x":72,"y":408,"id":1928,"sizeY":24},{"sizeX":24,"x":108,"y":408,"id":1929,"sizeY":24},{"sizeX":24,"x":216,"y":408,"id":1930,"sizeY":24},{"sizeX":24,"x":36,"y":300,"id":1931,"sizeY":24},{"sizeX":24,"x":180,"y":408,"id":1932,"sizeY":24},{"sizeX":24,"x":0,"y":300,"id":1933,"sizeY":24},{"sizeX":24,"x":216,"y":372,"id":1949,"sizeY":24},{"sizeX":24,"x":252,"y":372,"id":1950,"sizeY":24},{"sizeX":24,"x":288,"y":408,"id":1951,"sizeY":24},{"sizeX":24,"x":72,"y":264,"id":2048,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":2264,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":2265,"sizeY":24},{"sizeX":24,"x":36,"y":264,"id":2266,"sizeY":24}],"lineID":10,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Fishing Farming Cooking","icon":{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Catch it, grow it, eat it!"}},"order":10},{"quests":[{"sizeX":24,"x":204,"y":192,"id":139,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":645,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":647,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":648,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":649,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":650,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":651,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":652,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":653,"sizeY":24},{"sizeX":24,"x":24,"y":408,"id":654,"sizeY":24},{"sizeX":24,"x":0,"y":468,"id":655,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":683,"sizeY":24},{"sizeX":24,"x":204,"y":0,"id":684,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":685,"sizeY":24},{"sizeX":24,"x":180,"y":48,"id":686,"sizeY":24},{"sizeX":24,"x":204,"y":96,"id":687,"sizeY":24},{"sizeX":24,"x":252,"y":96,"id":688,"sizeY":24},{"sizeX":24,"x":300,"y":96,"id":689,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":690,"sizeY":24},{"sizeX":24,"x":108,"y":96,"id":691,"sizeY":24},{"sizeX":24,"x":120,"y":192,"id":692,"sizeY":24},{"sizeX":24,"x":120,"y":252,"id":775,"sizeY":24},{"sizeX":24,"x":180,"y":312,"id":776,"sizeY":24},{"sizeX":24,"x":60,"y":312,"id":777,"sizeY":24},{"sizeX":24,"x":120,"y":312,"id":779,"sizeY":24},{"sizeX":24,"x":228,"y":312,"id":796,"sizeY":24},{"sizeX":24,"x":228,"y":348,"id":797,"sizeY":24},{"sizeX":24,"x":216,"y":408,"id":799,"sizeY":24},{"sizeX":24,"x":96,"y":372,"id":800,"sizeY":24},{"sizeX":24,"x":144,"y":372,"id":801,"sizeY":24},{"sizeX":24,"x":120,"y":408,"id":802,"sizeY":24},{"sizeX":24,"x":96,"y":468,"id":803,"sizeY":24},{"sizeX":24,"x":144,"y":468,"id":804,"sizeY":24},{"sizeX":24,"x":204,"y":144,"id":991,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":997,"sizeY":24},{"sizeX":24,"x":180,"y":348,"id":1419,"sizeY":24},{"sizeX":24,"x":48,"y":216,"id":1442,"sizeY":24},{"sizeX":24,"x":48,"y":252,"id":1443,"sizeY":24},{"sizeX":24,"x":84,"y":252,"id":1444,"sizeY":24},{"sizeX":24,"x":252,"y":48,"id":1779,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":1781,"sizeY":24},{"sizeX":24,"x":324,"y":180,"id":1782,"sizeY":24},{"sizeX":24,"x":324,"y":216,"id":1783,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1784,"sizeY":24},{"sizeX":24,"x":324,"y":288,"id":1785,"sizeY":24},{"sizeX":24,"x":324,"y":324,"id":1786,"sizeY":24},{"sizeX":24,"x":348,"y":96,"id":1839,"sizeY":24},{"sizeX":24,"x":156,"y":252,"id":1848,"sizeY":24},{"sizeX":24,"x":396,"y":96,"id":2057,"sizeY":24},{"sizeX":24,"x":396,"y":144,"id":2058,"sizeY":24},{"sizeX":24,"x":372,"y":288,"id":2112,"sizeY":24},{"sizeX":24,"x":420,"y":216,"id":2113,"sizeY":24},{"sizeX":24,"x":420,"y":180,"id":2114,"sizeY":24},{"sizeX":24,"x":456,"y":324,"id":2115,"sizeY":24},{"sizeX":24,"x":420,"y":252,"id":2116,"sizeY":24},{"sizeX":24,"x":420,"y":288,"id":2117,"sizeY":24},{"sizeX":24,"x":420,"y":360,"id":2118,"sizeY":24},{"sizeX":24,"x":420,"y":324,"id":2139,"sizeY":24}],"lineID":11,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Armors and Jetpacks","icon":{"id":"GraviSuite:graviChestPlate","Count":1,"tag":{"charge":30000000},"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Guiding you through the armor and jetpacks and Adventure Backpacks."}},"order":11},{"quests":[{"sizeX":24,"x":204,"y":0,"id":45,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":74,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":75,"sizeY":24},{"sizeX":48,"x":84,"y":60,"id":76,"sizeY":48},{"sizeX":48,"x":84,"y":144,"id":77,"sizeY":48},{"sizeX":48,"x":84,"y":240,"id":78,"sizeY":48},{"sizeX":48,"x":84,"y":312,"id":79,"sizeY":48},{"sizeX":48,"x":252,"y":144,"id":80,"sizeY":48},{"sizeX":48,"x":144,"y":312,"id":81,"sizeY":48},{"sizeX":24,"x":264,"y":108,"id":82,"sizeY":24},{"sizeX":24,"x":36,"y":300,"id":83,"sizeY":24},{"sizeX":24,"x":324,"y":108,"id":85,"sizeY":24},{"sizeX":48,"x":84,"y":384,"id":86,"sizeY":48},{"sizeX":24,"x":204,"y":60,"id":87,"sizeY":24},{"sizeX":48,"x":144,"y":384,"id":475,"sizeY":48},{"sizeX":48,"x":144,"y":456,"id":476,"sizeY":48},{"sizeX":48,"x":84,"y":456,"id":477,"sizeY":48},{"sizeX":24,"x":204,"y":156,"id":556,"sizeY":24},{"sizeX":24,"x":396,"y":60,"id":559,"sizeY":24},{"sizeX":24,"x":396,"y":0,"id":560,"sizeY":24},{"sizeX":24,"x":444,"y":0,"id":561,"sizeY":24},{"sizeX":24,"x":444,"y":60,"id":562,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":695,"sizeY":24},{"sizeX":24,"x":36,"y":60,"id":696,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":697,"sizeY":24},{"sizeX":24,"x":204,"y":108,"id":698,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":699,"sizeY":24},{"sizeX":24,"x":36,"y":204,"id":755,"sizeY":24},{"sizeX":24,"x":36,"y":252,"id":756,"sizeY":24},{"sizeX":24,"x":264,"y":204,"id":761,"sizeY":24},{"sizeX":24,"x":324,"y":156,"id":762,"sizeY":24},{"sizeX":24,"x":324,"y":204,"id":763,"sizeY":24},{"sizeX":24,"x":204,"y":204,"id":764,"sizeY":24},{"sizeX":24,"x":360,"y":108,"id":765,"sizeY":24},{"sizeX":24,"x":468,"y":192,"id":766,"sizeY":24},{"sizeX":24,"x":492,"y":0,"id":767,"sizeY":24},{"sizeX":24,"x":420,"y":156,"id":768,"sizeY":24},{"sizeX":24,"x":156,"y":252,"id":781,"sizeY":24},{"sizeX":24,"x":588,"y":60,"id":783,"sizeY":24},{"sizeX":24,"x":540,"y":0,"id":784,"sizeY":24},{"sizeX":24,"x":492,"y":60,"id":786,"sizeY":24},{"sizeX":24,"x":492,"y":108,"id":787,"sizeY":24},{"sizeX":24,"x":468,"y":156,"id":788,"sizeY":24},{"sizeX":24,"x":360,"y":60,"id":870,"sizeY":24},{"sizeX":24,"x":444,"y":108,"id":876,"sizeY":24},{"sizeX":48,"x":240,"y":312,"id":940,"sizeY":48},{"sizeX":48,"x":0,"y":144,"id":941,"sizeY":48},{"sizeX":24,"x":156,"y":60,"id":954,"sizeY":24},{"sizeX":24,"x":156,"y":204,"id":1179,"sizeY":24},{"sizeX":48,"x":468,"y":432,"id":1412,"sizeY":48},{"sizeX":48,"x":252,"y":0,"id":1503,"sizeY":48},{"sizeX":24,"x":396,"y":108,"id":1545,"sizeY":24},{"sizeX":24,"x":420,"y":192,"id":1652,"sizeY":24},{"sizeX":24,"x":540,"y":60,"id":1654,"sizeY":24},{"sizeX":24,"x":540,"y":108,"id":1740,"sizeY":24},{"sizeX":24,"x":360,"y":156,"id":1742,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1743,"sizeY":24},{"sizeX":24,"x":552,"y":444,"id":1787,"sizeY":24},{"sizeX":48,"x":84,"y":528,"id":1817,"sizeY":48},{"sizeX":24,"x":360,"y":252,"id":1818,"sizeY":24},{"sizeX":24,"x":324,"y":396,"id":1820,"sizeY":24},{"sizeX":24,"x":516,"y":192,"id":1822,"sizeY":24},{"sizeX":24,"x":372,"y":396,"id":1825,"sizeY":24},{"sizeX":24,"x":420,"y":396,"id":1826,"sizeY":24},{"sizeX":24,"x":420,"y":432,"id":1827,"sizeY":24},{"sizeX":24,"x":372,"y":432,"id":1828,"sizeY":24},{"sizeX":24,"x":324,"y":432,"id":1829,"sizeY":24},{"sizeX":24,"x":324,"y":468,"id":1830,"sizeY":24},{"sizeX":24,"x":264,"y":60,"id":1832,"sizeY":24},{"sizeX":48,"x":144,"y":528,"id":1833,"sizeY":48},{"sizeX":24,"x":156,"y":156,"id":1853,"sizeY":24},{"sizeX":24,"x":588,"y":108,"id":1893,"sizeY":24},{"sizeX":24,"x":588,"y":156,"id":1894,"sizeY":24},{"sizeX":48,"x":192,"y":240,"id":1904,"sizeY":48},{"sizeX":24,"x":480,"y":396,"id":1905,"sizeY":24},{"sizeX":24,"x":552,"y":396,"id":2027,"sizeY":24},{"sizeX":24,"x":216,"y":468,"id":2044,"sizeY":24},{"sizeX":24,"x":264,"y":468,"id":2045,"sizeY":24},{"sizeX":24,"x":324,"y":324,"id":2144,"sizeY":24}],"lineID":12,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Multiblock Goals","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This set is a global tracker for multiblock structure goals. As you can build several parts of many multiblocks way earlier than the respective tier. Check back often."}},"order":12},{"quests":[{"sizeX":24,"x":36,"y":216,"id":1464,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":1935,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1936,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1937,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":1938,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":1939,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1940,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1941,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1942,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1943,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":1944,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1945,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1946,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1947,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1948,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1952,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":1953,"sizeY":24},{"sizeX":24,"x":216,"y":72,"id":1955,"sizeY":24},{"sizeX":24,"x":216,"y":108,"id":1956,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":1957,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1958,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":1959,"sizeY":24},{"sizeX":24,"x":216,"y":180,"id":1960,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1961,"sizeY":24},{"sizeX":24,"x":288,"y":180,"id":1962,"sizeY":24},{"sizeX":24,"x":216,"y":216,"id":1963,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1964,"sizeY":24},{"sizeX":24,"x":288,"y":144,"id":1965,"sizeY":24},{"sizeX":24,"x":288,"y":108,"id":1966,"sizeY":24},{"sizeX":24,"x":252,"y":72,"id":1967,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":1968,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1969,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1970,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1971,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1972,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":1973,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1974,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":1975,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1976,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1977,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1978,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1979,"sizeY":24},{"sizeX":24,"x":0,"y":252,"id":1980,"sizeY":24},{"sizeX":24,"x":36,"y":252,"id":1981,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1982,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":1983,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1984,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1985,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":1986,"sizeY":24},{"sizeX":24,"x":72,"y":252,"id":2070,"sizeY":24},{"sizeX":24,"x":180,"y":108,"id":2105,"sizeY":24},{"sizeX":24,"x":0,"y":288,"id":2138,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":2160,"sizeY":24}],"lineID":13,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Building Better Bases","icon":{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Tired of torches everywhere making your base look like a loser built it? Make your base look like a winner with these quests. (under construction)"}},"order":13},{"quests":[{"sizeX":24,"x":48,"y":96,"id":106,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":107,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":108,"sizeY":24},{"sizeX":24,"x":216,"y":48,"id":109,"sizeY":24},{"sizeX":24,"x":216,"y":96,"id":110,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":111,"sizeY":24},{"sizeX":24,"x":156,"y":48,"id":112,"sizeY":24},{"sizeX":24,"x":156,"y":204,"id":1208,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":1209,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1210,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":1211,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1550,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":1551,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1552,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1553,"sizeY":24}],"lineID":14,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Steve Carts","icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Basic auto farming and mining. Protect them from lightning strikes!"}},"order":14},{"quests":[{"sizeX":24,"x":0,"y":0,"id":1623,"sizeY":24},{"sizeX":24,"x":0,"y":42,"id":1624,"sizeY":24},{"sizeX":24,"x":0,"y":78,"id":1625,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":1626,"sizeY":24},{"sizeX":24,"x":48,"y":150,"id":1627,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":1628,"sizeY":24},{"sizeX":24,"x":48,"y":198,"id":1629,"sizeY":24},{"sizeX":24,"x":96,"y":120,"id":1630,"sizeY":24},{"sizeX":24,"x":150,"y":120,"id":1631,"sizeY":24},{"sizeX":24,"x":150,"y":78,"id":1632,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":1633,"sizeY":24},{"sizeX":24,"x":150,"y":162,"id":1634,"sizeY":24},{"sizeX":24,"x":204,"y":162,"id":1635,"sizeY":24},{"sizeX":24,"x":204,"y":78,"id":1636,"sizeY":24},{"sizeX":24,"x":204,"y":30,"id":1637,"sizeY":24},{"sizeX":24,"x":252,"y":30,"id":1638,"sizeY":24},{"sizeX":24,"x":252,"y":78,"id":1639,"sizeY":24},{"sizeX":24,"x":300,"y":78,"id":1640,"sizeY":24},{"sizeX":24,"x":150,"y":30,"id":1641,"sizeY":24},{"sizeX":24,"x":300,"y":30,"id":1642,"sizeY":24}],"lineID":15,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Project Red","icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Low tier storage and automation. You'll need a forming press to get started."}},"order":15},{"quests":[{"sizeX":24,"x":36,"y":0,"id":872,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":873,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":880,"sizeY":24},{"sizeX":24,"x":348,"y":0,"id":881,"sizeY":24},{"sizeX":24,"x":444,"y":0,"id":882,"sizeY":24},{"sizeX":24,"x":396,"y":0,"id":883,"sizeY":24},{"sizeX":24,"x":204,"y":0,"id":884,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":885,"sizeY":24},{"sizeX":24,"x":486,"y":0,"id":886,"sizeY":24},{"sizeX":24,"x":300,"y":0,"id":888,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":949,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":950,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":955,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":956,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":957,"sizeY":24},{"sizeX":24,"x":204,"y":144,"id":958,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":959,"sizeY":24},{"sizeX":24,"x":300,"y":144,"id":960,"sizeY":24},{"sizeX":24,"x":348,"y":144,"id":961,"sizeY":24},{"sizeX":24,"x":444,"y":144,"id":963,"sizeY":24},{"sizeX":24,"x":444,"y":180,"id":964,"sizeY":24},{"sizeX":24,"x":480,"y":108,"id":965,"sizeY":24},{"sizeX":24,"x":480,"y":144,"id":966,"sizeY":24},{"sizeX":24,"x":480,"y":180,"id":967,"sizeY":24},{"sizeX":24,"x":516,"y":180,"id":968,"sizeY":24},{"sizeX":24,"x":480,"y":216,"id":969,"sizeY":24},{"sizeX":24,"x":516,"y":216,"id":970,"sizeY":24},{"sizeX":24,"x":516,"y":252,"id":971,"sizeY":24},{"sizeX":24,"x":588,"y":144,"id":972,"sizeY":24},{"sizeX":24,"x":588,"y":108,"id":973,"sizeY":24},{"sizeX":24,"x":732,"y":144,"id":974,"sizeY":24},{"sizeX":24,"x":624,"y":144,"id":975,"sizeY":24},{"sizeX":24,"x":768,"y":144,"id":976,"sizeY":24},{"sizeX":24,"x":624,"y":108,"id":977,"sizeY":24},{"sizeX":24,"x":660,"y":108,"id":978,"sizeY":24},{"sizeX":24,"x":696,"y":108,"id":979,"sizeY":24},{"sizeX":24,"x":732,"y":108,"id":980,"sizeY":24},{"sizeX":24,"x":768,"y":108,"id":981,"sizeY":24},{"sizeX":24,"x":804,"y":144,"id":982,"sizeY":24},{"sizeX":24,"x":108,"y":276,"id":983,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":984,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1022,"sizeY":24},{"sizeX":24,"x":156,"y":180,"id":1023,"sizeY":24},{"sizeX":24,"x":204,"y":180,"id":1024,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1025,"sizeY":24},{"sizeX":24,"x":300,"y":180,"id":1026,"sizeY":24},{"sizeX":24,"x":348,"y":180,"id":1027,"sizeY":24},{"sizeX":24,"x":396,"y":180,"id":1028,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1029,"sizeY":24},{"sizeX":24,"x":156,"y":216,"id":1030,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1031,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1032,"sizeY":24},{"sizeX":24,"x":300,"y":216,"id":1033,"sizeY":24},{"sizeX":24,"x":348,"y":216,"id":1034,"sizeY":24},{"sizeX":24,"x":444,"y":216,"id":1036,"sizeY":24},{"sizeX":24,"x":516,"y":288,"id":1037,"sizeY":24},{"sizeX":24,"x":480,"y":252,"id":1038,"sizeY":24},{"sizeX":24,"x":480,"y":288,"id":1039,"sizeY":24},{"sizeX":24,"x":480,"y":324,"id":1040,"sizeY":24},{"sizeX":24,"x":480,"y":360,"id":1041,"sizeY":24},{"sizeX":24,"x":156,"y":276,"id":1042,"sizeY":24},{"sizeX":24,"x":804,"y":108,"id":1043,"sizeY":24},{"sizeX":24,"x":444,"y":252,"id":1044,"sizeY":24},{"sizeX":24,"x":444,"y":288,"id":1045,"sizeY":24},{"sizeX":24,"x":588,"y":0,"id":1046,"sizeY":24},{"sizeX":24,"x":0,"y":348,"id":1047,"sizeY":24},{"sizeX":24,"x":36,"y":384,"id":1048,"sizeY":24},{"sizeX":24,"x":0,"y":420,"id":1049,"sizeY":24},{"sizeX":24,"x":0,"y":276,"id":1050,"sizeY":24},{"sizeX":24,"x":36,"y":276,"id":1051,"sizeY":24},{"sizeX":24,"x":36,"y":312,"id":1052,"sizeY":24},{"sizeX":24,"x":36,"y":420,"id":1053,"sizeY":24},{"sizeX":24,"x":72,"y":420,"id":1054,"sizeY":24},{"sizeX":24,"x":36,"y":348,"id":1056,"sizeY":24},{"sizeX":24,"x":72,"y":348,"id":1057,"sizeY":24},{"sizeX":24,"x":108,"y":348,"id":1058,"sizeY":24},{"sizeX":24,"x":144,"y":348,"id":1059,"sizeY":24},{"sizeX":24,"x":180,"y":348,"id":1060,"sizeY":24},{"sizeX":24,"x":216,"y":348,"id":1061,"sizeY":24},{"sizeX":24,"x":252,"y":348,"id":1062,"sizeY":24},{"sizeX":24,"x":0,"y":384,"id":1063,"sizeY":24},{"sizeX":24,"x":288,"y":348,"id":1064,"sizeY":24},{"sizeX":24,"x":324,"y":348,"id":1065,"sizeY":24},{"sizeX":24,"x":360,"y":348,"id":1066,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1069,"sizeY":24},{"sizeX":24,"x":156,"y":36,"id":1073,"sizeY":24},{"sizeX":24,"x":204,"y":36,"id":1074,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":1075,"sizeY":24},{"sizeX":24,"x":300,"y":36,"id":1076,"sizeY":24},{"sizeX":24,"x":348,"y":36,"id":1077,"sizeY":24},{"sizeX":24,"x":396,"y":36,"id":1078,"sizeY":24},{"sizeX":24,"x":444,"y":36,"id":1079,"sizeY":24},{"sizeX":24,"x":486,"y":36,"id":1080,"sizeY":24},{"sizeX":24,"x":552,"y":180,"id":1161,"sizeY":24},{"sizeX":24,"x":552,"y":216,"id":1162,"sizeY":24},{"sizeX":24,"x":60,"y":144,"id":1163,"sizeY":24},{"sizeX":24,"x":624,"y":36,"id":1165,"sizeY":24},{"sizeX":24,"x":288,"y":420,"id":1169,"sizeY":24},{"sizeX":24,"x":324,"y":420,"id":1170,"sizeY":24},{"sizeX":24,"x":660,"y":0,"id":1171,"sizeY":24},{"sizeX":24,"x":696,"y":0,"id":1173,"sizeY":24},{"sizeX":24,"x":732,"y":0,"id":1174,"sizeY":24},{"sizeX":24,"x":768,"y":0,"id":1175,"sizeY":24},{"sizeX":24,"x":804,"y":0,"id":1176,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1192,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1193,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1194,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1195,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1196,"sizeY":24},{"sizeX":24,"x":660,"y":144,"id":1206,"sizeY":24},{"sizeX":24,"x":696,"y":144,"id":1207,"sizeY":24},{"sizeX":24,"x":360,"y":420,"id":1287,"sizeY":24},{"sizeX":24,"x":840,"y":360,"id":1297,"sizeY":24},{"sizeX":24,"x":840,"y":396,"id":1307,"sizeY":24},{"sizeX":24,"x":216,"y":420,"id":1366,"sizeY":24},{"sizeX":24,"x":204,"y":276,"id":1425,"sizeY":24},{"sizeX":24,"x":252,"y":276,"id":1438,"sizeY":24},{"sizeX":24,"x":300,"y":276,"id":1455,"sizeY":24},{"sizeX":24,"x":696,"y":36,"id":1479,"sizeY":24},{"sizeX":24,"x":588,"y":72,"id":1492,"sizeY":24},{"sizeX":24,"x":588,"y":36,"id":1523,"sizeY":24},{"sizeX":24,"x":552,"y":288,"id":1608,"sizeY":24},{"sizeX":24,"x":552,"y":324,"id":1609,"sizeY":24},{"sizeX":24,"x":60,"y":180,"id":1610,"sizeY":24},{"sizeX":24,"x":60,"y":216,"id":1611,"sizeY":24},{"sizeX":24,"x":552,"y":360,"id":1616,"sizeY":24},{"sizeX":24,"x":552,"y":252,"id":1618,"sizeY":24},{"sizeX":24,"x":660,"y":36,"id":1619,"sizeY":24},{"sizeX":24,"x":252,"y":420,"id":1644,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1780,"sizeY":24},{"sizeX":24,"x":552,"y":0,"id":1816,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1859,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1860,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":1861,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":1881,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1882,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1883,"sizeY":24},{"sizeX":24,"x":624,"y":72,"id":1884,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1885,"sizeY":24},{"sizeX":24,"x":552,"y":36,"id":1886,"sizeY":24},{"sizeX":24,"x":660,"y":72,"id":1889,"sizeY":24},{"sizeX":24,"x":804,"y":72,"id":1892,"sizeY":24},{"sizeX":24,"x":624,"y":0,"id":1895,"sizeY":24},{"sizeX":24,"x":156,"y":72,"id":1934,"sizeY":24},{"sizeX":24,"x":72,"y":312,"id":2080,"sizeY":24},{"sizeX":24,"x":732,"y":36,"id":2151,"sizeY":24},{"sizeX":24,"x":768,"y":36,"id":2152,"sizeY":24}],"lineID":16,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Coins, Coins, Coins","icon":{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"These quests will guide you to use your Coins wisely and buy some useful or fancy stuff.\nZoom out using mousewheel to see all the amazing things for sale!"}},"order":16},{"quests":[{"sizeX":24,"x":240,"y":0,"id":1416,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1417,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":1418,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1419,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1420,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":1421,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":1422,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":1423,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":2025,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":2028,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":2029,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":2030,"sizeY":24},{"sizeX":24,"x":384,"y":96,"id":2031,"sizeY":24},{"sizeX":24,"x":384,"y":48,"id":2032,"sizeY":24},{"sizeX":24,"x":384,"y":0,"id":2033,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":2034,"sizeY":24},{"sizeX":24,"x":264,"y":144,"id":2035,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":2036,"sizeY":24},{"sizeX":24,"x":120,"y":144,"id":2037,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2038,"sizeY":24},{"sizeX":24,"x":408,"y":144,"id":2039,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":2040,"sizeY":24},{"sizeX":24,"x":432,"y":72,"id":2049,"sizeY":24},{"sizeX":24,"x":432,"y":24,"id":2053,"sizeY":24},{"sizeX":24,"x":192,"y":192,"id":2054,"sizeY":24}],"lineID":17,"properties":{"betterquesting":{"visibility":"NORMAL","name":"GT++ ","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""},"bg_image":"","bg_size":256,"desc":"GT++ adds new functionality to GT, including high speed multiblocks - Under Construction"}},"order":17},{"quests":[{"sizeX":24,"x":48,"y":48,"id":576,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":577,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":578,"sizeY":24},{"sizeX":24,"x":48,"y":336,"id":580,"sizeY":24},{"sizeX":24,"x":168,"y":264,"id":581,"sizeY":24},{"sizeX":24,"x":204,"y":168,"id":582,"sizeY":24},{"sizeX":24,"x":204,"y":264,"id":583,"sizeY":24},{"sizeX":24,"x":240,"y":264,"id":584,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":585,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":586,"sizeY":24},{"sizeX":24,"x":204,"y":300,"id":588,"sizeY":24},{"sizeX":24,"x":168,"y":120,"id":589,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":590,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":591,"sizeY":24},{"sizeX":24,"x":168,"y":204,"id":592,"sizeY":24},{"sizeX":24,"x":240,"y":228,"id":593,"sizeY":24},{"sizeX":24,"x":276,"y":228,"id":594,"sizeY":24},{"sizeX":24,"x":312,"y":228,"id":595,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":994,"sizeY":24},{"sizeX":24,"x":336,"y":12,"id":1115,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":1214,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1215,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1216,"sizeY":24},{"sizeX":24,"x":132,"y":264,"id":1217,"sizeY":24},{"sizeX":24,"x":132,"y":228,"id":1218,"sizeY":24},{"sizeX":24,"x":132,"y":192,"id":1219,"sizeY":24},{"sizeX":24,"x":96,"y":228,"id":1220,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":2051,"sizeY":24},{"sizeX":24,"x":132,"y":144,"id":2052,"sizeY":24},{"sizeX":24,"x":96,"y":180,"id":2055,"sizeY":24},{"sizeX":24,"x":336,"y":60,"id":2083,"sizeY":24},{"sizeX":24,"x":372,"y":108,"id":2084,"sizeY":24},{"sizeX":24,"x":372,"y":12,"id":2085,"sizeY":24},{"sizeX":24,"x":300,"y":60,"id":2107,"sizeY":24},{"sizeX":24,"x":372,"y":156,"id":2121,"sizeY":24},{"sizeX":24,"x":372,"y":60,"id":2122,"sizeY":24},{"sizeX":24,"x":426,"y":12,"id":2124,"sizeY":24},{"sizeX":24,"x":426,"y":156,"id":2125,"sizeY":24},{"sizeX":24,"x":474,"y":156,"id":2126,"sizeY":24},{"sizeX":24,"x":426,"y":108,"id":2127,"sizeY":24},{"sizeX":24,"x":474,"y":12,"id":2128,"sizeY":24},{"sizeX":24,"x":522,"y":12,"id":2129,"sizeY":24},{"sizeX":24,"x":570,"y":12,"id":2130,"sizeY":24},{"sizeX":24,"x":522,"y":60,"id":2131,"sizeY":24},{"sizeX":24,"x":570,"y":60,"id":2132,"sizeY":24},{"sizeX":24,"x":522,"y":156,"id":2133,"sizeY":24},{"sizeX":24,"x":570,"y":156,"id":2134,"sizeY":24},{"sizeX":24,"x":570,"y":204,"id":2135,"sizeY":24},{"sizeX":24,"x":474,"y":108,"id":2256,"sizeY":24},{"sizeX":24,"x":522,"y":108,"id":2257,"sizeY":24},{"sizeX":24,"x":372,"y":204,"id":2263,"sizeY":24}],"lineID":18,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Forestry and Multi-farms","icon":{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Automated Farms, tree breeding, and more....."}},"order":18},{"quests":[{"sizeX":24,"x":48,"y":0,"id":1116,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1117,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":1118,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":1119,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1120,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":1121,"sizeY":24},{"sizeX":24,"x":192,"y":48,"id":1122,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":2153,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":2154,"sizeY":24},{"sizeX":24,"x":288,"y":48,"id":2155,"sizeY":24},{"sizeX":24,"x":240,"y":0,"id":2156,"sizeY":24},{"sizeX":24,"x":240,"y":48,"id":2157,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":2158,"sizeY":24},{"sizeX":24,"x":24,"y":24,"id":2159,"sizeY":24},{"sizeX":24,"x":288,"y":144,"id":2162,"sizeY":24},{"sizeX":24,"x":240,"y":144,"id":2163,"sizeY":24},{"sizeX":24,"x":192,"y":144,"id":2164,"sizeY":24},{"sizeX":24,"x":240,"y":240,"id":2165,"sizeY":24},{"sizeX":24,"x":288,"y":240,"id":2166,"sizeY":24},{"sizeX":24,"x":336,"y":240,"id":2167,"sizeY":24},{"sizeX":24,"x":288,"y":192,"id":2168,"sizeY":24},{"sizeX":24,"x":240,"y":192,"id":2169,"sizeY":24},{"sizeX":24,"x":192,"y":192,"id":2170,"sizeY":24},{"sizeX":24,"x":336,"y":48,"id":2171,"sizeY":24},{"sizeX":24,"x":336,"y":288,"id":2172,"sizeY":24},{"sizeX":24,"x":288,"y":288,"id":2173,"sizeY":24},{"sizeX":24,"x":240,"y":336,"id":2174,"sizeY":24},{"sizeX":24,"x":240,"y":288,"id":2175,"sizeY":24},{"sizeX":24,"x":192,"y":336,"id":2176,"sizeY":24},{"sizeX":24,"x":144,"y":336,"id":2177,"sizeY":24},{"sizeX":24,"x":144,"y":384,"id":2178,"sizeY":24},{"sizeX":24,"x":192,"y":288,"id":2179,"sizeY":24},{"sizeX":24,"x":144,"y":288,"id":2180,"sizeY":24},{"sizeX":24,"x":96,"y":288,"id":2181,"sizeY":24},{"sizeX":24,"x":240,"y":432,"id":2182,"sizeY":24},{"sizeX":24,"x":192,"y":432,"id":2183,"sizeY":24},{"sizeX":24,"x":144,"y":432,"id":2184,"sizeY":24},{"sizeX":24,"x":144,"y":240,"id":2185,"sizeY":24},{"sizeX":24,"x":336,"y":432,"id":2186,"sizeY":24},{"sizeX":24,"x":288,"y":432,"id":2187,"sizeY":24},{"sizeX":24,"x":288,"y":480,"id":2188,"sizeY":24},{"sizeX":24,"x":240,"y":480,"id":2189,"sizeY":24},{"sizeX":24,"x":240,"y":384,"id":2190,"sizeY":24},{"sizeX":24,"x":192,"y":384,"id":2191,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":2192,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":2193,"sizeY":24},{"sizeX":24,"x":336,"y":144,"id":2194,"sizeY":24},{"sizeX":24,"x":384,"y":96,"id":2195,"sizeY":24},{"sizeX":24,"x":336,"y":192,"id":2196,"sizeY":24},{"sizeX":24,"x":384,"y":192,"id":2197,"sizeY":24},{"sizeX":24,"x":384,"y":144,"id":2198,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":2199,"sizeY":24},{"sizeX":24,"x":384,"y":288,"id":2200,"sizeY":24},{"sizeX":24,"x":288,"y":384,"id":2201,"sizeY":24},{"sizeX":24,"x":336,"y":384,"id":2202,"sizeY":24},{"sizeX":24,"x":384,"y":384,"id":2203,"sizeY":24},{"sizeX":24,"x":336,"y":528,"id":2204,"sizeY":24},{"sizeX":24,"x":384,"y":528,"id":2205,"sizeY":24},{"sizeX":24,"x":288,"y":528,"id":2206,"sizeY":24},{"sizeX":24,"x":240,"y":576,"id":2207,"sizeY":24},{"sizeX":24,"x":240,"y":528,"id":2208,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":2209,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":2211,"sizeY":24},{"sizeX":24,"x":600,"y":144,"id":2212,"sizeY":24},{"sizeX":24,"x":504,"y":0,"id":2213,"sizeY":24},{"sizeX":24,"x":600,"y":48,"id":2214,"sizeY":24},{"sizeX":24,"x":552,"y":48,"id":2215,"sizeY":24},{"sizeX":24,"x":552,"y":0,"id":2216,"sizeY":24},{"sizeX":24,"x":552,"y":144,"id":2217,"sizeY":24},{"sizeX":24,"x":552,"y":96,"id":2218,"sizeY":24},{"sizeX":24,"x":648,"y":144,"id":2219,"sizeY":24},{"sizeX":24,"x":744,"y":288,"id":2220,"sizeY":24},{"sizeX":24,"x":696,"y":336,"id":2221,"sizeY":24},{"sizeX":24,"x":696,"y":240,"id":2222,"sizeY":24},{"sizeX":24,"x":696,"y":192,"id":2223,"sizeY":24},{"sizeX":24,"x":744,"y":192,"id":2224,"sizeY":24},{"sizeX":24,"x":744,"y":240,"id":2225,"sizeY":24},{"sizeX":24,"x":744,"y":336,"id":2226,"sizeY":24},{"sizeX":24,"x":696,"y":288,"id":2227,"sizeY":24},{"sizeX":24,"x":696,"y":48,"id":2228,"sizeY":24},{"sizeX":24,"x":744,"y":48,"id":2229,"sizeY":24},{"sizeX":24,"x":792,"y":48,"id":2230,"sizeY":24},{"sizeX":24,"x":696,"y":96,"id":2231,"sizeY":24},{"sizeX":24,"x":648,"y":192,"id":2232,"sizeY":24},{"sizeX":24,"x":696,"y":0,"id":2233,"sizeY":24},{"sizeX":24,"x":744,"y":0,"id":2234,"sizeY":24},{"sizeX":24,"x":792,"y":0,"id":2235,"sizeY":24},{"sizeX":24,"x":744,"y":384,"id":2236,"sizeY":24},{"sizeX":24,"x":696,"y":384,"id":2237,"sizeY":24},{"sizeX":24,"x":792,"y":336,"id":2238,"sizeY":24},{"sizeX":24,"x":504,"y":48,"id":2239,"sizeY":24},{"sizeX":24,"x":504,"y":96,"id":2240,"sizeY":24},{"sizeX":24,"x":840,"y":336,"id":2241,"sizeY":24},{"sizeX":24,"x":888,"y":336,"id":2242,"sizeY":24},{"sizeX":24,"x":504,"y":192,"id":2243,"sizeY":24},{"sizeX":24,"x":696,"y":144,"id":2244,"sizeY":24},{"sizeX":24,"x":744,"y":144,"id":2245,"sizeY":24},{"sizeX":24,"x":792,"y":144,"id":2246,"sizeY":24},{"sizeX":24,"x":840,"y":144,"id":2247,"sizeY":24},{"sizeX":24,"x":840,"y":96,"id":2248,"sizeY":24},{"sizeX":24,"x":840,"y":48,"id":2249,"sizeY":24},{"sizeX":24,"x":840,"y":0,"id":2250,"sizeY":24},{"sizeX":24,"x":48,"y":336,"id":2251,"sizeY":24},{"sizeX":24,"x":96,"y":336,"id":2252,"sizeY":24},{"sizeX":24,"x":384,"y":240,"id":2254,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":2258,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":2269,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":2270,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":2271,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2272,"sizeY":24},{"sizeX":24,"x":48,"y":192,"id":2273,"sizeY":24},{"sizeX":24,"x":504,"y":240,"id":2274,"sizeY":24},{"sizeX":24,"x":552,"y":240,"id":2275,"sizeY":24},{"sizeX":24,"x":600,"y":240,"id":2276,"sizeY":24},{"sizeX":24,"x":696,"y":432,"id":2277,"sizeY":24},{"sizeX":24,"x":648,"y":432,"id":2278,"sizeY":24},{"sizeX":24,"x":600,"y":432,"id":2279,"sizeY":24},{"sizeX":24,"x":552,"y":432,"id":2280,"sizeY":24},{"sizeX":24,"x":504,"y":432,"id":2281,"sizeY":24},{"sizeX":24,"x":552,"y":384,"id":2282,"sizeY":24},{"sizeX":24,"x":600,"y":480,"id":2283,"sizeY":24},{"sizeX":24,"x":552,"y":480,"id":2284,"sizeY":24},{"sizeX":24,"x":648,"y":480,"id":2285,"sizeY":24},{"sizeX":24,"x":552,"y":288,"id":2287,"sizeY":24},{"sizeX":24,"x":504,"y":288,"id":2288,"sizeY":24},{"sizeX":24,"x":600,"y":288,"id":2289,"sizeY":24},{"sizeX":24,"x":96,"y":240,"id":2290,"sizeY":24},{"sizeX":24,"x":48,"y":240,"id":2291,"sizeY":24},{"sizeX":24,"x":0,"y":240,"id":2292,"sizeY":24}],"lineID":19,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Be(e) Breeding","icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Mate":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergy","UID0":"gregtech.bee.speciesEnergy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]},"Health":60,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergy","UID0":"gregtech.bee.speciesEnergy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Breeding Bees for Better Bling (experimental, may cause honey leakage)"}},"order":19},{"quests":[{"sizeX":24,"x":0,"y":84,"id":500,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":501,"sizeY":24},{"sizeX":24,"x":72,"y":120,"id":502,"sizeY":24},{"sizeX":24,"x":114,"y":84,"id":503,"sizeY":24},{"sizeX":24,"x":156,"y":120,"id":504,"sizeY":24},{"sizeX":24,"x":204,"y":84,"id":505,"sizeY":24},{"sizeX":24,"x":108,"y":192,"id":506,"sizeY":24},{"sizeX":24,"x":156,"y":156,"id":507,"sizeY":24},{"sizeX":24,"x":108,"y":228,"id":508,"sizeY":24},{"sizeX":24,"x":36,"y":228,"id":509,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":510,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":511,"sizeY":24},{"sizeX":24,"x":0,"y":228,"id":512,"sizeY":24},{"sizeX":24,"x":156,"y":228,"id":513,"sizeY":24},{"sizeX":24,"x":72,"y":156,"id":514,"sizeY":24},{"sizeX":24,"x":36,"y":156,"id":515,"sizeY":24},{"sizeX":24,"x":0,"y":156,"id":516,"sizeY":24},{"sizeX":24,"x":72,"y":228,"id":517,"sizeY":24},{"sizeX":24,"x":72,"y":192,"id":518,"sizeY":24},{"sizeX":24,"x":342,"y":336,"id":519,"sizeY":24},{"sizeX":24,"x":90,"y":336,"id":520,"sizeY":24},{"sizeX":24,"x":162,"y":336,"id":521,"sizeY":24},{"sizeX":24,"x":54,"y":336,"id":522,"sizeY":24},{"sizeX":24,"x":18,"y":336,"id":523,"sizeY":24},{"sizeX":24,"x":270,"y":336,"id":524,"sizeY":24},{"sizeX":24,"x":126,"y":336,"id":525,"sizeY":24},{"sizeX":24,"x":198,"y":336,"id":526,"sizeY":24},{"sizeX":24,"x":306,"y":336,"id":527,"sizeY":24},{"sizeX":24,"x":234,"y":336,"id":528,"sizeY":24},{"sizeX":24,"x":72,"y":84,"id":992,"sizeY":24},{"sizeX":24,"x":72,"y":48,"id":993,"sizeY":24},{"sizeX":24,"x":108,"y":48,"id":995,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":996,"sizeY":24},{"sizeX":24,"x":204,"y":156,"id":1111,"sizeY":24},{"sizeX":24,"x":36,"y":120,"id":1112,"sizeY":24},{"sizeX":24,"x":114,"y":120,"id":1113,"sizeY":24},{"sizeX":24,"x":204,"y":192,"id":1114,"sizeY":24},{"sizeX":24,"x":252,"y":192,"id":1123,"sizeY":24},{"sizeX":24,"x":156,"y":48,"id":1367,"sizeY":24},{"sizeX":24,"x":36,"y":84,"id":1511,"sizeY":24},{"sizeX":24,"x":156,"y":84,"id":1512,"sizeY":24},{"sizeX":24,"x":204,"y":228,"id":1513,"sizeY":24},{"sizeX":24,"x":252,"y":228,"id":1514,"sizeY":24},{"sizeX":24,"x":300,"y":228,"id":1515,"sizeY":24},{"sizeX":24,"x":252,"y":264,"id":1516,"sizeY":24},{"sizeX":24,"x":252,"y":156,"id":2089,"sizeY":24},{"sizeX":24,"x":156,"y":192,"id":2090,"sizeY":24},{"sizeX":24,"x":300,"y":192,"id":2091,"sizeY":24},{"sizeX":24,"x":300,"y":156,"id":2092,"sizeY":24},{"sizeX":24,"x":348,"y":156,"id":2093,"sizeY":24},{"sizeX":24,"x":348,"y":192,"id":2094,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":2106,"sizeY":24},{"sizeX":24,"x":252,"y":84,"id":2108,"sizeY":24},{"sizeX":24,"x":252,"y":120,"id":2109,"sizeY":24},{"sizeX":24,"x":204,"y":264,"id":2255,"sizeY":24}],"lineID":20,"properties":{"betterquesting":{"visibility":"NORMAL","name":"How to be(e)","icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A non-tiered quest set that is meant as an in game, quest based tutorial and guide to bees. Since they are a really helpful tool to advance forward."}},"order":20},{"quests":[{"sizeX":24,"x":144,"y":0,"id":1954,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":2081,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":2082,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":2088,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":2095,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":2096,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":2097,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":2098,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":2099,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":2100,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":2101,"sizeY":24},{"sizeX":24,"x":216,"y":72,"id":2102,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":2103,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2104,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":2110,"sizeY":24}],"lineID":21,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Slice and splice","icon":{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"An introduction to using Binnie's Genetics mod for bees, trees, and Botany flowers. (under construction)"}},"order":21},{"quests":[{"sizeX":24,"x":216,"y":0,"id":224,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":225,"sizeY":24},{"sizeX":24,"x":396,"y":72,"id":226,"sizeY":24},{"sizeX":24,"x":312,"y":72,"id":227,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":229,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":230,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":231,"sizeY":24},{"sizeX":24,"x":432,"y":72,"id":232,"sizeY":24},{"sizeX":24,"x":84,"y":144,"id":233,"sizeY":24},{"sizeX":24,"x":432,"y":144,"id":234,"sizeY":24},{"sizeX":24,"x":360,"y":108,"id":235,"sizeY":24},{"sizeX":24,"x":396,"y":108,"id":236,"sizeY":24},{"sizeX":24,"x":360,"y":180,"id":237,"sizeY":24},{"sizeX":24,"x":360,"y":216,"id":238,"sizeY":24},{"sizeX":24,"x":312,"y":216,"id":239,"sizeY":24},{"sizeX":24,"x":312,"y":180,"id":240,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":241,"sizeY":24},{"sizeX":24,"x":84,"y":252,"id":242,"sizeY":24},{"sizeX":24,"x":180,"y":252,"id":243,"sizeY":24},{"sizeX":24,"x":288,"y":336,"id":244,"sizeY":24},{"sizeX":24,"x":360,"y":372,"id":245,"sizeY":24},{"sizeX":24,"x":432,"y":336,"id":246,"sizeY":24},{"sizeX":24,"x":288,"y":408,"id":247,"sizeY":24},{"sizeX":24,"x":432,"y":408,"id":248,"sizeY":24},{"sizeX":24,"x":288,"y":372,"id":249,"sizeY":24},{"sizeX":24,"x":432,"y":372,"id":250,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":251,"sizeY":24},{"sizeX":24,"x":312,"y":252,"id":252,"sizeY":24},{"sizeX":24,"x":312,"y":144,"id":253,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":254,"sizeY":24},{"sizeX":24,"x":240,"y":144,"id":255,"sizeY":24},{"sizeX":24,"x":240,"y":180,"id":256,"sizeY":24},{"sizeX":24,"x":312,"y":108,"id":257,"sizeY":24},{"sizeX":24,"x":432,"y":252,"id":258,"sizeY":24},{"sizeX":24,"x":396,"y":252,"id":259,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":610,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":798,"sizeY":24},{"sizeX":24,"x":180,"y":216,"id":1002,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1070,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1071,"sizeY":24},{"sizeX":24,"x":360,"y":72,"id":1096,"sizeY":24},{"sizeX":24,"x":432,"y":180,"id":1100,"sizeY":24},{"sizeX":24,"x":468,"y":180,"id":1101,"sizeY":24},{"sizeX":24,"x":504,"y":180,"id":1103,"sizeY":24},{"sizeX":24,"x":468,"y":216,"id":1104,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1106,"sizeY":24},{"sizeX":24,"x":84,"y":36,"id":1158,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":1159,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":1177,"sizeY":24},{"sizeX":24,"x":240,"y":216,"id":1286,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":1368,"sizeY":24},{"sizeX":24,"x":240,"y":108,"id":1369,"sizeY":24},{"sizeX":24,"x":276,"y":108,"id":1370,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":1565,"sizeY":24},{"sizeX":24,"x":276,"y":72,"id":1778,"sizeY":24},{"sizeX":24,"x":132,"y":36,"id":1837,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1838,"sizeY":24},{"sizeX":24,"x":396,"y":216,"id":1912,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":1995,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1996,"sizeY":24},{"sizeX":24,"x":144,"y":216,"id":1997,"sizeY":24},{"sizeX":24,"x":432,"y":216,"id":1998,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":2042,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2046,"sizeY":24},{"sizeX":24,"x":312,"y":36,"id":2050,"sizeY":24},{"sizeX":24,"x":132,"y":0,"id":2059,"sizeY":24},{"sizeX":24,"x":312,"y":288,"id":2060,"sizeY":24},{"sizeX":24,"x":342,"y":288,"id":2061,"sizeY":24},{"sizeX":24,"x":342,"y":324,"id":2062,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":2063,"sizeY":24},{"sizeX":24,"x":240,"y":36,"id":2065,"sizeY":24},{"sizeX":24,"x":276,"y":36,"id":2066,"sizeY":24},{"sizeX":24,"x":468,"y":252,"id":2067,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":2146,"sizeY":24},{"sizeX":24,"x":120,"y":108,"id":2147,"sizeY":24},{"sizeX":24,"x":396,"y":288,"id":2259,"sizeY":24}],"lineID":22,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Novice Thaumaturge","icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Magic lies beyond. Great achievements, but also a lot of work. I shall be your guide. Follow my instructions, and you shall become a great wizard, like me."}},"order":22},{"quests":[{"sizeX":24,"x":132,"y":96,"id":260,"sizeY":24},{"sizeX":24,"x":408,"y":132,"id":261,"sizeY":24},{"sizeX":24,"x":408,"y":96,"id":262,"sizeY":24},{"sizeX":24,"x":360,"y":132,"id":263,"sizeY":24},{"sizeX":24,"x":276,"y":120,"id":264,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":265,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":266,"sizeY":24},{"sizeX":24,"x":276,"y":192,"id":267,"sizeY":24},{"sizeX":24,"x":276,"y":156,"id":268,"sizeY":24},{"sizeX":24,"x":276,"y":36,"id":269,"sizeY":24},{"sizeX":24,"x":276,"y":0,"id":270,"sizeY":24},{"sizeX":24,"x":276,"y":72,"id":271,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":272,"sizeY":24},{"sizeX":24,"x":408,"y":204,"id":273,"sizeY":24},{"sizeX":24,"x":408,"y":168,"id":274,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":275,"sizeY":24},{"sizeX":24,"x":96,"y":168,"id":276,"sizeY":24},{"sizeX":24,"x":96,"y":132,"id":277,"sizeY":24},{"sizeX":24,"x":132,"y":216,"id":278,"sizeY":24},{"sizeX":24,"x":504,"y":168,"id":279,"sizeY":24},{"sizeX":24,"x":540,"y":168,"id":280,"sizeY":24},{"sizeX":24,"x":576,"y":168,"id":281,"sizeY":24},{"sizeX":24,"x":576,"y":132,"id":282,"sizeY":24},{"sizeX":24,"x":504,"y":204,"id":283,"sizeY":24},{"sizeX":24,"x":504,"y":252,"id":284,"sizeY":24},{"sizeX":24,"x":504,"y":132,"id":285,"sizeY":24},{"sizeX":24,"x":540,"y":96,"id":286,"sizeY":24},{"sizeX":24,"x":540,"y":132,"id":287,"sizeY":24},{"sizeX":24,"x":468,"y":132,"id":288,"sizeY":24},{"sizeX":24,"x":576,"y":96,"id":289,"sizeY":24},{"sizeX":24,"x":96,"y":288,"id":290,"sizeY":24},{"sizeX":24,"x":228,"y":252,"id":291,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":292,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":293,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":294,"sizeY":24},{"sizeX":24,"x":168,"y":288,"id":295,"sizeY":24},{"sizeX":24,"x":132,"y":288,"id":296,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":297,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":298,"sizeY":24},{"sizeX":24,"x":168,"y":252,"id":299,"sizeY":24},{"sizeX":24,"x":228,"y":288,"id":300,"sizeY":24},{"sizeX":24,"x":96,"y":252,"id":301,"sizeY":24},{"sizeX":24,"x":168,"y":132,"id":302,"sizeY":24},{"sizeX":24,"x":360,"y":168,"id":303,"sizeY":24},{"sizeX":24,"x":360,"y":204,"id":304,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":305,"sizeY":24},{"sizeX":24,"x":204,"y":132,"id":306,"sizeY":24},{"sizeX":24,"x":468,"y":96,"id":833,"sizeY":24},{"sizeX":24,"x":204,"y":36,"id":877,"sizeY":24},{"sizeX":24,"x":324,"y":168,"id":878,"sizeY":24},{"sizeX":24,"x":204,"y":72,"id":879,"sizeY":24},{"sizeX":24,"x":324,"y":204,"id":887,"sizeY":24},{"sizeX":24,"x":132,"y":48,"id":1055,"sizeY":24},{"sizeX":24,"x":132,"y":12,"id":1097,"sizeY":24},{"sizeX":24,"x":168,"y":12,"id":1098,"sizeY":24},{"sizeX":24,"x":96,"y":12,"id":1099,"sizeY":24},{"sizeX":24,"x":408,"y":48,"id":1102,"sizeY":24},{"sizeX":24,"x":408,"y":0,"id":1105,"sizeY":24},{"sizeX":24,"x":324,"y":132,"id":1191,"sizeY":24},{"sizeX":24,"x":48,"y":216,"id":1382,"sizeY":24},{"sizeX":24,"x":48,"y":168,"id":1383,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1401,"sizeY":24},{"sizeX":24,"x":444,"y":168,"id":1402,"sizeY":24},{"sizeX":24,"x":60,"y":12,"id":1875,"sizeY":24},{"sizeX":24,"x":204,"y":168,"id":1992,"sizeY":24},{"sizeX":24,"x":240,"y":132,"id":1993,"sizeY":24},{"sizeX":24,"x":240,"y":168,"id":1994,"sizeY":24},{"sizeX":24,"x":336,"y":72,"id":2020,"sizeY":24},{"sizeX":24,"x":378,"y":72,"id":2021,"sizeY":24},{"sizeX":24,"x":336,"y":36,"id":2022,"sizeY":24},{"sizeX":24,"x":48,"y":252,"id":2064,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":2068,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":2267,"sizeY":24},{"sizeX":24,"x":444,"y":48,"id":2268,"sizeY":24}],"lineID":23,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Adept Thaumaturgy","icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"orichalcum","rod":"neutronium_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":2000,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Warp included."}},"order":23},{"quests":[{"sizeX":24,"x":144,"y":0,"id":307,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":309,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":310,"sizeY":24},{"sizeX":24,"x":192,"y":180,"id":311,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":312,"sizeY":24},{"sizeX":24,"x":192,"y":108,"id":313,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":314,"sizeY":24},{"sizeX":24,"x":192,"y":144,"id":315,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":316,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":317,"sizeY":24},{"sizeX":24,"x":192,"y":72,"id":318,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":319,"sizeY":24},{"sizeX":24,"x":96,"y":72,"id":320,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":321,"sizeY":24},{"sizeX":24,"x":48,"y":180,"id":322,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":323,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":324,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":325,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":326,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":327,"sizeY":24},{"sizeX":24,"x":288,"y":72,"id":328,"sizeY":24},{"sizeX":24,"x":96,"y":36,"id":329,"sizeY":24},{"sizeX":24,"x":96,"y":180,"id":330,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":331,"sizeY":24},{"sizeX":24,"x":48,"y":36,"id":1109,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1110,"sizeY":24}],"lineID":24,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Kaaami, Haaaami, ... HA!","icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Ultimate (magical) POWER!!!"}},"order":24},{"quests":[{"sizeX":24,"x":132,"y":0,"id":1372,"sizeY":24},{"sizeX":24,"x":132,"y":36,"id":1373,"sizeY":24},{"sizeX":24,"x":84,"y":36,"id":1374,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1375,"sizeY":24},{"sizeX":24,"x":228,"y":36,"id":1376,"sizeY":24},{"sizeX":24,"x":132,"y":72,"id":1377,"sizeY":24},{"sizeX":24,"x":228,"y":72,"id":1378,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1380,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":1381,"sizeY":24},{"sizeX":24,"x":84,"y":72,"id":1384,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":1385,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1386,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":1387,"sizeY":24},{"sizeX":24,"x":84,"y":144,"id":1388,"sizeY":24},{"sizeX":24,"x":84,"y":180,"id":1389,"sizeY":24},{"sizeX":24,"x":132,"y":108,"id":1390,"sizeY":24},{"sizeX":24,"x":132,"y":180,"id":1391,"sizeY":24},{"sizeX":24,"x":180,"y":180,"id":1392,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1393,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1394,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1395,"sizeY":24},{"sizeX":24,"x":228,"y":180,"id":1396,"sizeY":24},{"sizeX":24,"x":228,"y":216,"id":1397,"sizeY":24},{"sizeX":24,"x":276,"y":216,"id":1398,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1399,"sizeY":24},{"sizeX":24,"x":276,"y":108,"id":1400,"sizeY":24}],"lineID":25,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Focus on Wand Foci","icon":{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Did you know which wand focus is useful and which not?"}},"order":25},{"quests":[{"sizeX":24,"x":42,"y":42,"id":1332,"sizeY":24},{"sizeX":24,"x":210,"y":42,"id":1333,"sizeY":24},{"sizeX":24,"x":252,"y":42,"id":1334,"sizeY":24},{"sizeX":24,"x":0,"y":42,"id":1335,"sizeY":24},{"sizeX":24,"x":42,"y":84,"id":1336,"sizeY":24},{"sizeX":24,"x":0,"y":84,"id":1337,"sizeY":24},{"sizeX":24,"x":42,"y":126,"id":1338,"sizeY":24},{"sizeX":24,"x":186,"y":0,"id":1339,"sizeY":24},{"sizeX":24,"x":168,"y":42,"id":1340,"sizeY":24},{"sizeX":24,"x":234,"y":0,"id":1341,"sizeY":24},{"sizeX":24,"x":210,"y":84,"id":1342,"sizeY":24},{"sizeX":24,"x":294,"y":0,"id":1343,"sizeY":24},{"sizeX":24,"x":294,"y":42,"id":1344,"sizeY":24},{"sizeX":24,"x":294,"y":84,"id":1345,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":1346,"sizeY":24},{"sizeX":24,"x":336,"y":42,"id":1347,"sizeY":24},{"sizeX":24,"x":336,"y":84,"id":1348,"sizeY":24},{"sizeX":24,"x":126,"y":0,"id":1349,"sizeY":24},{"sizeX":24,"x":126,"y":42,"id":1350,"sizeY":24},{"sizeX":24,"x":126,"y":84,"id":1351,"sizeY":24},{"sizeX":24,"x":84,"y":84,"id":1352,"sizeY":24},{"sizeX":24,"x":42,"y":0,"id":1353,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":1354,"sizeY":24},{"sizeX":24,"x":294,"y":126,"id":1355,"sizeY":24},{"sizeX":24,"x":294,"y":168,"id":1356,"sizeY":24},{"sizeX":24,"x":84,"y":42,"id":1357,"sizeY":24},{"sizeX":24,"x":168,"y":84,"id":1358,"sizeY":24},{"sizeX":24,"x":168,"y":126,"id":1359,"sizeY":24},{"sizeX":24,"x":210,"y":126,"id":1360,"sizeY":24},{"sizeX":24,"x":378,"y":0,"id":1361,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1362,"sizeY":24},{"sizeX":24,"x":378,"y":42,"id":2260,"sizeY":24},{"sizeX":24,"x":378,"y":84,"id":2261,"sizeY":24},{"sizeX":24,"x":378,"y":126,"id":2262,"sizeY":24}],"lineID":26,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Electro Magic","icon":{"id":"EMT:electricCloud","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This Tab focus on Electro Magic Tools and Thaumic Energistics. These are some nice mods, that will help you with machinery and magic."}},"order":26},{"quests":[{"sizeX":24,"x":66,"y":36,"id":332,"sizeY":24},{"sizeX":24,"x":156,"y":180,"id":333,"sizeY":24},{"sizeX":24,"x":168,"y":72,"id":334,"sizeY":24},{"sizeX":24,"x":396,"y":288,"id":335,"sizeY":24},{"sizeX":24,"x":210,"y":162,"id":336,"sizeY":24},{"sizeX":24,"x":204,"y":108,"id":337,"sizeY":24},{"sizeX":24,"x":588,"y":444,"id":338,"sizeY":24},{"sizeX":24,"x":348,"y":384,"id":339,"sizeY":24},{"sizeX":24,"x":300,"y":360,"id":340,"sizeY":24},{"sizeX":24,"x":264,"y":384,"id":341,"sizeY":24},{"sizeX":24,"x":276,"y":420,"id":342,"sizeY":24},{"sizeX":24,"x":324,"y":246,"id":343,"sizeY":24},{"sizeX":24,"x":456,"y":240,"id":344,"sizeY":24},{"sizeX":24,"x":336,"y":312,"id":345,"sizeY":24},{"sizeX":24,"x":456,"y":312,"id":346,"sizeY":24},{"sizeX":24,"x":480,"y":276,"id":347,"sizeY":24},{"sizeX":24,"x":360,"y":222,"id":348,"sizeY":24},{"sizeX":24,"x":324,"y":408,"id":349,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1554,"sizeY":24},{"sizeX":24,"x":108,"y":84,"id":1555,"sizeY":24},{"sizeX":24,"x":24,"y":204,"id":1556,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1557,"sizeY":24},{"sizeX":24,"x":48,"y":156,"id":1558,"sizeY":24},{"sizeX":24,"x":108,"y":120,"id":1559,"sizeY":24},{"sizeX":24,"x":24,"y":36,"id":1560,"sizeY":24},{"sizeX":24,"x":120,"y":156,"id":1561,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1562,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":1563,"sizeY":24},{"sizeX":24,"x":324,"y":132,"id":1564,"sizeY":24},{"sizeX":24,"x":372,"y":156,"id":1566,"sizeY":24},{"sizeX":24,"x":396,"y":204,"id":1567,"sizeY":24},{"sizeX":24,"x":84,"y":168,"id":1568,"sizeY":24},{"sizeX":24,"x":36,"y":120,"id":1569,"sizeY":24},{"sizeX":24,"x":444,"y":360,"id":1570,"sizeY":24},{"sizeX":24,"x":384,"y":336,"id":1571,"sizeY":24},{"sizeX":24,"x":456,"y":456,"id":1572,"sizeY":24},{"sizeX":24,"x":408,"y":384,"id":1573,"sizeY":24},{"sizeX":24,"x":396,"y":432,"id":1574,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":1575,"sizeY":24},{"sizeX":24,"x":516,"y":408,"id":1576,"sizeY":24},{"sizeX":24,"x":588,"y":396,"id":1577,"sizeY":24},{"sizeX":24,"x":648,"y":432,"id":1578,"sizeY":24},{"sizeX":24,"x":708,"y":468,"id":1579,"sizeY":24},{"sizeX":24,"x":684,"y":324,"id":1580,"sizeY":24},{"sizeX":24,"x":600,"y":348,"id":1581,"sizeY":24},{"sizeX":24,"x":792,"y":492,"id":1582,"sizeY":24},{"sizeX":24,"x":732,"y":528,"id":1583,"sizeY":24},{"sizeX":24,"x":540,"y":600,"id":1584,"sizeY":24},{"sizeX":24,"x":540,"y":480,"id":1585,"sizeY":24},{"sizeX":24,"x":504,"y":528,"id":1586,"sizeY":24},{"sizeX":24,"x":492,"y":576,"id":1587,"sizeY":24},{"sizeX":24,"x":576,"y":492,"id":1588,"sizeY":24},{"sizeX":24,"x":504,"y":492,"id":1589,"sizeY":24},{"sizeX":24,"x":456,"y":624,"id":1590,"sizeY":24},{"sizeX":24,"x":540,"y":528,"id":1591,"sizeY":24},{"sizeX":24,"x":540,"y":672,"id":1592,"sizeY":24},{"sizeX":24,"x":504,"y":636,"id":1593,"sizeY":24},{"sizeX":24,"x":588,"y":660,"id":1594,"sizeY":24},{"sizeX":24,"x":576,"y":624,"id":1595,"sizeY":24},{"sizeX":24,"x":468,"y":672,"id":1596,"sizeY":24},{"sizeX":24,"x":588,"y":576,"id":1597,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1645,"sizeY":24},{"sizeX":24,"x":306,"y":282,"id":1646,"sizeY":24},{"sizeX":24,"x":216,"y":456,"id":1647,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1648,"sizeY":24},{"sizeX":24,"x":120,"y":0,"id":1649,"sizeY":24},{"sizeX":24,"x":180,"y":12,"id":1650,"sizeY":24},{"sizeX":24,"x":204,"y":48,"id":1651,"sizeY":24}],"lineID":27,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Look to the edges","icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Granny Weatherwax would approve."}},"order":27},{"quests":[{"sizeX":24,"x":0,"y":0,"id":161,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":164,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":177,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":407,"sizeY":24},{"sizeX":24,"x":156,"y":72,"id":408,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":409,"sizeY":24},{"sizeX":24,"x":276,"y":0,"id":410,"sizeY":24},{"sizeX":24,"x":240,"y":120,"id":411,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":412,"sizeY":24},{"sizeX":24,"x":276,"y":96,"id":413,"sizeY":24},{"sizeX":24,"x":312,"y":72,"id":414,"sizeY":24},{"sizeX":24,"x":312,"y":120,"id":415,"sizeY":24},{"sizeX":24,"x":108,"y":120,"id":1325,"sizeY":24}],"lineID":28,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Paying the highest price","icon":{"id":"AWWayofTime:blankSlate","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"When regular magic just won't cover it, pay demons to do it for you! The cost might scare some people... But no risk no fun!"}},"order":28},{"quests":[{"sizeX":24,"x":336,"y":36,"id":228,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":416,"sizeY":24},{"sizeX":24,"x":72,"y":168,"id":417,"sizeY":24},{"sizeX":24,"x":0,"y":168,"id":418,"sizeY":24},{"sizeX":24,"x":36,"y":168,"id":419,"sizeY":24},{"sizeX":24,"x":372,"y":0,"id":420,"sizeY":24},{"sizeX":24,"x":300,"y":0,"id":421,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":422,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":423,"sizeY":24},{"sizeX":24,"x":300,"y":72,"id":424,"sizeY":24},{"sizeX":24,"x":336,"y":72,"id":425,"sizeY":24},{"sizeX":24,"x":300,"y":108,"id":426,"sizeY":24},{"sizeX":24,"x":372,"y":108,"id":427,"sizeY":24},{"sizeX":24,"x":372,"y":72,"id":428,"sizeY":24},{"sizeX":24,"x":300,"y":168,"id":429,"sizeY":24},{"sizeX":24,"x":264,"y":168,"id":430,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":431,"sizeY":24},{"sizeX":24,"x":216,"y":168,"id":432,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":433,"sizeY":24},{"sizeX":24,"x":144,"y":168,"id":434,"sizeY":24},{"sizeX":24,"x":180,"y":168,"id":435,"sizeY":24},{"sizeX":24,"x":108,"y":168,"id":436,"sizeY":24},{"sizeX":24,"x":216,"y":108,"id":437,"sizeY":24},{"sizeX":24,"x":336,"y":108,"id":438,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":463,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":926,"sizeY":24},{"sizeX":24,"x":264,"y":72,"id":927,"sizeY":24}],"lineID":29,"properties":{"betterquesting":{"visibility":"NORMAL","name":"More blood, more stuff","icon":{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Advanced Blood Magic? My veins feel weird..."}},"order":29},{"quests":[{"sizeX":24,"x":0,"y":72,"id":406,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":700,"sizeY":24},{"sizeX":24,"x":252,"y":72,"id":701,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":702,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":703,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":704,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":706,"sizeY":24},{"sizeX":24,"x":288,"y":36,"id":707,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":708,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":709,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":710,"sizeY":24},{"sizeX":24,"x":324,"y":36,"id":711,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":712,"sizeY":24},{"sizeX":24,"x":288,"y":72,"id":713,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":714,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":715,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":928,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":929,"sizeY":24}],"lineID":30,"properties":{"betterquesting":{"visibility":"NORMAL","name":"They are coming...","icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The spirits that I've called... Demon invasions and beyond. Really deep into dark magic!"}},"order":30},{"quests":[{"sizeX":24,"x":108,"y":42,"id":1745,"sizeY":24},{"sizeX":24,"x":90,"y":0,"id":1746,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1747,"sizeY":24},{"sizeX":24,"x":60,"y":60,"id":1748,"sizeY":24},{"sizeX":24,"x":156,"y":24,"id":1749,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":1750,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1751,"sizeY":24},{"sizeX":24,"x":60,"y":24,"id":1752,"sizeY":24},{"sizeX":24,"x":60,"y":144,"id":1753,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1754,"sizeY":24},{"sizeX":24,"x":30,"y":144,"id":1755,"sizeY":24},{"sizeX":24,"x":186,"y":144,"id":1756,"sizeY":24},{"sizeX":24,"x":126,"y":0,"id":1757,"sizeY":24},{"sizeX":24,"x":156,"y":60,"id":1758,"sizeY":24},{"sizeX":24,"x":108,"y":102,"id":1759,"sizeY":24},{"sizeX":24,"x":90,"y":144,"id":1760,"sizeY":24},{"sizeX":24,"x":138,"y":216,"id":1761,"sizeY":24},{"sizeX":24,"x":126,"y":144,"id":1762,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1763,"sizeY":24},{"sizeX":24,"x":198,"y":216,"id":1764,"sizeY":24},{"sizeX":24,"x":108,"y":270,"id":1765,"sizeY":24},{"sizeX":24,"x":126,"y":312,"id":1766,"sizeY":24},{"sizeX":24,"x":162,"y":312,"id":1767,"sizeY":24},{"sizeX":24,"x":54,"y":312,"id":1768,"sizeY":24},{"sizeX":24,"x":90,"y":312,"id":1769,"sizeY":24},{"sizeX":24,"x":18,"y":312,"id":1771,"sizeY":24},{"sizeX":24,"x":162,"y":348,"id":1772,"sizeY":24},{"sizeX":24,"x":126,"y":348,"id":1773,"sizeY":24},{"sizeX":24,"x":90,"y":348,"id":1774,"sizeY":24},{"sizeX":24,"x":54,"y":348,"id":1775,"sizeY":24},{"sizeX":24,"x":18,"y":348,"id":1776,"sizeY":24},{"sizeX":24,"x":72,"y":270,"id":1777,"sizeY":24}],"lineID":31,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Open Computers","icon":{"id":"OpenComputers:item","Count":1,"Damage":103,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The magical world of ingame programming!"}},"order":31},{"quests":[{"sizeX":24,"x":72,"y":0,"id":1989,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1990,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1991,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1999,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":2000,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":2001,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":2002,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":2003,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":2004,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":2009,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":2010,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2011,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":2012,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":2013,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2015,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":2016,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2017,"sizeY":24},{"sizeX":24,"x":72,"y":-36,"id":2019,"sizeY":24}],"lineID":32,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Stacy's Factory Manager","icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Right? Right."}},"order":32},{"quests":[{"sizeX":24,"x":132,"y":0,"id":490,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":666,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":667,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":668,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":669,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":670,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":671,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":672,"sizeY":24},{"sizeX":24,"x":408,"y":36,"id":674,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":675,"sizeY":24},{"sizeX":24,"x":384,"y":72,"id":676,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":677,"sizeY":24},{"sizeX":24,"x":216,"y":96,"id":866,"sizeY":24},{"sizeX":24,"x":132,"y":48,"id":874,"sizeY":24},{"sizeX":24,"x":264,"y":0,"id":1181,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":1182,"sizeY":24},{"sizeX":24,"x":312,"y":0,"id":1183,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":1184,"sizeY":24},{"sizeX":24,"x":408,"y":0,"id":1185,"sizeY":24},{"sizeX":24,"x":168,"y":96,"id":1186,"sizeY":24},{"sizeX":24,"x":216,"y":168,"id":1187,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":1188,"sizeY":24},{"sizeX":24,"x":264,"y":168,"id":1189,"sizeY":24},{"sizeX":24,"x":312,"y":168,"id":1190,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":1379,"sizeY":24},{"sizeX":24,"x":216,"y":216,"id":1810,"sizeY":24}],"lineID":33,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Transportation","icon":{"id":"minecraft:activator_rail","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"From four legged steeds to iron horses"}},"order":33},{"quests":[{"sizeX":24,"x":384,"y":336,"id":204,"sizeY":24},{"sizeX":24,"x":384,"y":372,"id":205,"sizeY":24},{"sizeX":24,"x":120,"y":0,"id":809,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":810,"sizeY":24},{"sizeX":24,"x":36,"y":60,"id":811,"sizeY":24},{"sizeX":24,"x":120,"y":60,"id":812,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":813,"sizeY":24},{"sizeX":24,"x":84,"y":96,"id":814,"sizeY":24},{"sizeX":24,"x":204,"y":96,"id":815,"sizeY":24},{"sizeX":24,"x":252,"y":132,"id":816,"sizeY":24},{"sizeX":24,"x":252,"y":96,"id":817,"sizeY":24},{"sizeX":24,"x":288,"y":132,"id":818,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":819,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":820,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":821,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":822,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":823,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":824,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":827,"sizeY":24},{"sizeX":24,"x":336,"y":132,"id":828,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":829,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":830,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":831,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":832,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1067,"sizeY":24},{"sizeX":24,"x":72,"y":252,"id":1068,"sizeY":24},{"sizeX":24,"x":168,"y":252,"id":1072,"sizeY":24},{"sizeX":24,"x":36,"y":336,"id":1371,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1426,"sizeY":24},{"sizeX":24,"x":300,"y":252,"id":1427,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1428,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1429,"sizeY":24},{"sizeX":24,"x":300,"y":216,"id":1430,"sizeY":24},{"sizeX":24,"x":336,"y":216,"id":1431,"sizeY":24},{"sizeX":24,"x":252,"y":252,"id":1432,"sizeY":24},{"sizeX":24,"x":252,"y":168,"id":1433,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":1434,"sizeY":24},{"sizeX":24,"x":288,"y":168,"id":1435,"sizeY":24},{"sizeX":24,"x":384,"y":168,"id":1436,"sizeY":24},{"sizeX":24,"x":204,"y":252,"id":1437,"sizeY":24},{"sizeX":24,"x":132,"y":336,"id":1439,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":1440,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":1441,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":1445,"sizeY":24},{"sizeX":24,"x":300,"y":372,"id":1446,"sizeY":24},{"sizeX":24,"x":336,"y":408,"id":1447,"sizeY":24},{"sizeX":24,"x":228,"y":468,"id":1448,"sizeY":24},{"sizeX":24,"x":336,"y":372,"id":1449,"sizeY":24},{"sizeX":24,"x":384,"y":408,"id":1450,"sizeY":24},{"sizeX":24,"x":420,"y":408,"id":1451,"sizeY":24},{"sizeX":24,"x":420,"y":372,"id":1452,"sizeY":24},{"sizeX":24,"x":300,"y":408,"id":1453,"sizeY":24},{"sizeX":24,"x":300,"y":540,"id":1454,"sizeY":24},{"sizeX":24,"x":336,"y":468,"id":1456,"sizeY":24},{"sizeX":24,"x":264,"y":468,"id":1457,"sizeY":24},{"sizeX":24,"x":384,"y":468,"id":1458,"sizeY":24},{"sizeX":24,"x":420,"y":468,"id":1459,"sizeY":24},{"sizeX":24,"x":192,"y":468,"id":1460,"sizeY":24},{"sizeX":24,"x":336,"y":252,"id":1462,"sizeY":24},{"sizeX":24,"x":300,"y":576,"id":1463,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":1464,"sizeY":24},{"sizeX":24,"x":228,"y":300,"id":1465,"sizeY":24},{"sizeX":24,"x":228,"y":336,"id":1466,"sizeY":24},{"sizeX":24,"x":264,"y":300,"id":1467,"sizeY":24},{"sizeX":24,"x":336,"y":300,"id":1468,"sizeY":24},{"sizeX":24,"x":264,"y":336,"id":1469,"sizeY":24},{"sizeX":24,"x":228,"y":372,"id":1470,"sizeY":24},{"sizeX":24,"x":264,"y":372,"id":1471,"sizeY":24},{"sizeX":24,"x":384,"y":252,"id":1472,"sizeY":24},{"sizeX":24,"x":156,"y":468,"id":1473,"sizeY":24},{"sizeX":24,"x":342,"y":540,"id":1530,"sizeY":24},{"sizeX":24,"x":384,"y":576,"id":1531,"sizeY":24},{"sizeX":24,"x":342,"y":576,"id":1532,"sizeY":24},{"sizeX":24,"x":342,"y":624,"id":1535,"sizeY":24},{"sizeX":24,"x":300,"y":624,"id":1723,"sizeY":24},{"sizeX":24,"x":228,"y":624,"id":1724,"sizeY":24},{"sizeX":24,"x":204,"y":564,"id":1725,"sizeY":24},{"sizeX":24,"x":96,"y":624,"id":1726,"sizeY":24},{"sizeX":24,"x":216,"y":720,"id":1727,"sizeY":24},{"sizeX":24,"x":156,"y":552,"id":1728,"sizeY":24},{"sizeX":24,"x":192,"y":648,"id":1729,"sizeY":24},{"sizeX":24,"x":192,"y":600,"id":1730,"sizeY":24},{"sizeX":24,"x":216,"y":528,"id":1731,"sizeY":24},{"sizeX":24,"x":426,"y":540,"id":1732,"sizeY":24},{"sizeX":24,"x":426,"y":576,"id":1733,"sizeY":24},{"sizeX":24,"x":384,"y":540,"id":1734,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1742,"sizeY":24},{"sizeX":24,"x":372,"y":300,"id":1743,"sizeY":24},{"sizeX":24,"x":168,"y":288,"id":1840,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2072,"sizeY":24}],"lineID":34,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Space Race","icon":{"id":"GalaxySpace:item.Tier6Rocket","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A guide to help you start Galacticraft and reach the Moon"}},"order":34},{"quests":[{"sizeX":24,"x":228,"y":48,"id":178,"sizeY":24},{"sizeX":24,"x":228,"y":12,"id":179,"sizeY":24},{"sizeX":24,"x":468,"y":48,"id":180,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":181,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":182,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":183,"sizeY":24},{"sizeX":24,"x":192,"y":72,"id":184,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":185,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":203,"sizeY":24},{"sizeX":24,"x":468,"y":96,"id":1253,"sizeY":24},{"sizeX":24,"x":468,"y":144,"id":1254,"sizeY":24},{"sizeX":24,"x":516,"y":48,"id":1255,"sizeY":24},{"sizeX":24,"x":516,"y":96,"id":1256,"sizeY":24},{"sizeX":24,"x":516,"y":144,"id":1257,"sizeY":24},{"sizeX":24,"x":144,"y":288,"id":1258,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1259,"sizeY":24},{"sizeX":24,"x":264,"y":180,"id":1260,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1290,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":1291,"sizeY":24},{"sizeX":24,"x":228,"y":96,"id":1292,"sizeY":24},{"sizeX":24,"x":228,"y":144,"id":1293,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1294,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1295,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":1296,"sizeY":24},{"sizeX":24,"x":144,"y":252,"id":1298,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":1299,"sizeY":24},{"sizeX":24,"x":144,"y":216,"id":1300,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1301,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1302,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1303,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1304,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1305,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1306,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1308,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1309,"sizeY":24},{"sizeX":24,"x":312,"y":48,"id":1310,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":1311,"sizeY":24},{"sizeX":24,"x":312,"y":144,"id":1312,"sizeY":24},{"sizeX":24,"x":360,"y":48,"id":1313,"sizeY":24},{"sizeX":24,"x":360,"y":96,"id":1314,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":1315,"sizeY":24},{"sizeX":24,"x":396,"y":48,"id":1316,"sizeY":24},{"sizeX":24,"x":396,"y":96,"id":1317,"sizeY":24},{"sizeX":24,"x":396,"y":144,"id":1318,"sizeY":24},{"sizeX":24,"x":432,"y":96,"id":1319,"sizeY":24},{"sizeX":24,"x":312,"y":180,"id":1326,"sizeY":24},{"sizeX":24,"x":264,"y":48,"id":1327,"sizeY":24},{"sizeX":24,"x":264,"y":12,"id":1328,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":1329,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":1330,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1331,"sizeY":24},{"sizeX":24,"x":192,"y":36,"id":2119,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":2120,"sizeY":24},{"sizeX":24,"x":192,"y":108,"id":2136,"sizeY":24},{"sizeX":24,"x":264,"y":144,"id":2137,"sizeY":24}],"lineID":35,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Applied Energistics","icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"tag":{},"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"AE2 focuses on creating a compact, easily accessible, considerably extendible storage system called an ME Network. "}},"order":35},{"quests":[{"sizeX":24,"x":0,"y":0,"id":2005,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2006,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":2007,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":2008,"sizeY":24}],"lineID":36,"properties":{"betterquesting":{"visibility":"NORMAL","name":"An Age of Tech","icon":{"id":"tectech:gt.blockcasingsTT","Count":1,"Damage":9,"OreDict":""},"bg_image":"","bg_size":256,"desc":"I've been keeping a watchful eye on your technological advance - it's time to see the dreams of a technological future! I shall guide you to a whole new complicated series of machinery. Be wary though, these machines will test your resolve (and energy limits) to the extreme. (under construction)"}},"order":36},{"quests":[{"sizeX":24,"x":336,"y":132,"id":537,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":900,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":901,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":902,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":903,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":904,"sizeY":24},{"sizeX":24,"x":240,"y":0,"id":905,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":906,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":907,"sizeY":24},{"sizeX":24,"x":384,"y":0,"id":908,"sizeY":24},{"sizeX":24,"x":444,"y":132,"id":909,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":910,"sizeY":24},{"sizeX":24,"x":372,"y":132,"id":911,"sizeY":24},{"sizeX":24,"x":408,"y":132,"id":912,"sizeY":24},{"sizeX":24,"x":228,"y":132,"id":913,"sizeY":24},{"sizeX":24,"x":264,"y":132,"id":914,"sizeY":24},{"sizeX":24,"x":300,"y":132,"id":915,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":916,"sizeY":24},{"sizeX":24,"x":408,"y":96,"id":917,"sizeY":24},{"sizeX":24,"x":0,"y":60,"id":918,"sizeY":24},{"sizeX":24,"x":48,"y":60,"id":919,"sizeY":24},{"sizeX":24,"x":96,"y":60,"id":920,"sizeY":24},{"sizeX":24,"x":144,"y":60,"id":921,"sizeY":24},{"sizeX":24,"x":192,"y":60,"id":922,"sizeY":24},{"sizeX":24,"x":240,"y":60,"id":923,"sizeY":24},{"sizeX":24,"x":288,"y":60,"id":924,"sizeY":24},{"sizeX":24,"x":336,"y":60,"id":925,"sizeY":24},{"sizeX":24,"x":192,"y":132,"id":985,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":2073,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":2074,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":2075,"sizeY":24},{"sizeX":24,"x":48,"y":132,"id":2076,"sizeY":24},{"sizeX":24,"x":0,"y":132,"id":2077,"sizeY":24},{"sizeX":24,"x":96,"y":132,"id":2078,"sizeY":24},{"sizeX":24,"x":48,"y":168,"id":2079,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":2111,"sizeY":24}],"lineID":37,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Kill all the things","icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This world is full of nasty things. Time to kill some and improve your reputation."}},"order":37},{"quests":[{"sizeX":24,"x":0,"y":0,"id":600,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":601,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":602,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":603,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":605,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":606,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":607,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":986,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":2286,"sizeY":24}],"lineID":38,"properties":{"betterquesting":{"visibility":"NORMAL","name":"To grind, or not to grind","icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"That is the question. Do you want good tools? Well, then go grind stuff! The rewards of these quests are worth it, trust me."}},"order":38},{"quests":[{"sizeX":24,"x":252,"y":72,"id":308,"sizeY":24},{"sizeX":24,"x":204,"y":72,"id":350,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":351,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":352,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":353,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":354,"sizeY":24},{"sizeX":24,"x":96,"y":36,"id":355,"sizeY":24},{"sizeX":24,"x":156,"y":36,"id":356,"sizeY":24},{"sizeX":24,"x":96,"y":72,"id":357,"sizeY":24},{"sizeX":24,"x":96,"y":108,"id":358,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":359,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":360,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":361,"sizeY":24}],"lineID":39,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Quests","icon":{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary quest-line with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":39},{"quests":[{"sizeX":24,"x":0,"y":32,"id":362,"sizeY":24},{"sizeX":24,"x":32,"y":32,"id":363,"sizeY":24},{"sizeX":24,"x":64,"y":32,"id":364,"sizeY":24},{"sizeX":24,"x":96,"y":32,"id":365,"sizeY":24},{"sizeX":24,"x":160,"y":32,"id":366,"sizeY":24},{"sizeX":24,"x":128,"y":32,"id":367,"sizeY":24},{"sizeX":24,"x":192,"y":32,"id":368,"sizeY":24},{"sizeX":24,"x":224,"y":32,"id":369,"sizeY":24},{"sizeX":24,"x":256,"y":32,"id":370,"sizeY":24},{"sizeX":24,"x":288,"y":32,"id":371,"sizeY":24},{"sizeX":24,"x":320,"y":32,"id":372,"sizeY":24},{"sizeX":24,"x":352,"y":32,"id":373,"sizeY":24},{"sizeX":24,"x":384,"y":32,"id":374,"sizeY":24},{"sizeX":24,"x":64,"y":64,"id":375,"sizeY":24},{"sizeX":24,"x":96,"y":64,"id":376,"sizeY":24},{"sizeX":24,"x":384,"y":64,"id":377,"sizeY":24},{"sizeX":24,"x":352,"y":64,"id":378,"sizeY":24},{"sizeX":24,"x":320,"y":64,"id":379,"sizeY":24},{"sizeX":24,"x":288,"y":64,"id":380,"sizeY":24},{"sizeX":24,"x":256,"y":64,"id":381,"sizeY":24},{"sizeX":24,"x":224,"y":64,"id":382,"sizeY":24},{"sizeX":24,"x":192,"y":64,"id":383,"sizeY":24},{"sizeX":24,"x":160,"y":64,"id":384,"sizeY":24},{"sizeX":24,"x":128,"y":64,"id":385,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":386,"sizeY":24},{"sizeX":24,"x":0,"y":64,"id":387,"sizeY":24},{"sizeX":24,"x":32,"y":64,"id":388,"sizeY":24},{"sizeX":24,"x":224,"y":128,"id":389,"sizeY":24},{"sizeX":24,"x":192,"y":128,"id":390,"sizeY":24},{"sizeX":24,"x":256,"y":128,"id":391,"sizeY":24},{"sizeX":24,"x":32,"y":96,"id":392,"sizeY":24},{"sizeX":24,"x":64,"y":96,"id":393,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":394,"sizeY":24},{"sizeX":24,"x":128,"y":96,"id":395,"sizeY":24},{"sizeX":24,"x":160,"y":128,"id":396,"sizeY":24},{"sizeX":24,"x":288,"y":128,"id":397,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":464,"sizeY":24}],"lineID":40,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Tier X","icon":{"id":"DraconicEvolution:chaosCrystal","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary quest-line with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":40},{"quests":[{"sizeX":24,"x":0,"y":0,"id":398,"sizeY":24},{"sizeX":24,"x":0,"y":32,"id":399,"sizeY":24},{"sizeX":24,"x":0,"y":64,"id":400,"sizeY":24},{"sizeX":24,"x":32,"y":0,"id":401,"sizeY":24},{"sizeX":24,"x":64,"y":32,"id":402,"sizeY":24},{"sizeX":24,"x":64,"y":0,"id":403,"sizeY":24},{"sizeX":24,"x":64,"y":64,"id":404,"sizeY":24},{"sizeX":24,"x":32,"y":32,"id":405,"sizeY":24}],"lineID":41,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Infinity","icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary questline with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":41},{"quests":[{"sizeX":24,"x":36,"y":0,"id":439,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":441,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":443,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":445,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":447,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":449,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":564,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":565,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":566,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":567,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":568,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":569,"sizeY":24},{"sizeX":24,"x":72,"y":48,"id":570,"sizeY":24},{"sizeX":24,"x":108,"y":48,"id":571,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":572,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":573,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":574,"sizeY":24},{"sizeX":24,"x":180,"y":96,"id":575,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":678,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":679,"sizeY":24},{"sizeX":24,"x":72,"y":192,"id":680,"sizeY":24},{"sizeX":24,"x":144,"y":192,"id":681,"sizeY":24},{"sizeX":24,"x":180,"y":192,"id":682,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1690,"sizeY":24}],"lineID":42,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Reward Area","icon":{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":44,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Upgrade your loot bags!"}},"order":42}],"questSettings":{"betterquesting":{"livesMax":10,"pack_name":"GT-New-Horizons","home_anchor_y":0,"livesDef":3,"home_anchor_x":0.5,"hardcore":0,"home_image":"dreamcraft:textures/gui/gtnh_title.png","party_enable":1,"pack_version":2075,"editMode":0,"home_offset_x":-128,"home_offset_y":0}}} diff --git a/src/Server/SampleData/DefaultQuests-2.0.7.6e-dev-cleaned-minified.json b/src/Server/SampleData/DefaultQuests-2.0.7.6e-dev-cleaned-minified.json deleted file mode 100644 index 49d3ac6..0000000 --- a/src/Server/SampleData/DefaultQuests-2.0.7.6e-dev-cleaned-minified.json +++ /dev/null @@ -1 +0,0 @@ -{"format":"2.0.0","questDatabase":[{"questID":0,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§d§3§2§1§lYour first night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first task will be to find food, and a shelter for the night. The nights will be cruel, as this pack has hardcore darkness. It probably would be a good idea to collect some food now...\n\n§lNote: You don't need to keep this book, you can use tilde to open quests without the book.\n§5§5§o§o§n§m§m§n§n§l§n§e§d§c§b§a§9§8§8§7§6§5§4§r\nWe also maintain a wiki at §e§a§6§4https://gtnh.miraheze.org/wiki/Main_Page §rbe sure to check it out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1,"preRequisites":[2],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lWhere is the flint?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you might have noticed, while collecting gravel, no flint dropped for you. Well, there is a... recipe for that. Look up flint in NEI and craft some!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSticks 'n Stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This book has a built-in reading light, lucky you! Most probably you will read this text while you are waiting for the night to be over. Once it is, go out and collect some gravel and wood. Keep in mind that you need food, so look for Pam's Harvestcraft gardens. (And save some of the vegetables for seeds!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gravel","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":2,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:torch","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":3,"preRequisites":[4],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lStorage for days","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've unlocked 3x3 crafting, it's about time to make some storage for your goods. Take some of your wood, and craft a chest. You will need 4 wood, 4 planks and 1 flint."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:muttoncookedItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":4,"preRequisites":[1204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"questbook:ItemQuestBook","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMain Quests and Secondary Quests","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have made it this far notice the two new quests. See how these two quests look different? The quest with a crown is a main quest and is linked to other main quests by a thick line. You must complete the main quests to unlock the next tier. The other quest is an optional quest, and is not needed to unlock new tiers. However, optional quests often introduce you to useful items or processes.\n\nNot all main quests have a connecting line to guide you through your adventure because of book size. If there is not an obvious linked main quest at any point, try completing some of the other main quests available to you to progress."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":5,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":56,"Head":3,"HeadEXP":0,"BaseAttack":3,"Built":1,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":3,"Broken":0,"Shoddy":0,"RenderHandle":3,"Accessory":3,"MiningSpeed":400,"RenderAccessory":3,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":56},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lTools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've got a shelter, crafting table, and a place to store your items, you should make some tools. (Unless you'd like to continue punching trees with your bare hand...)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood"}},"Damage":4,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":2,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":6,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":8,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":6,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wheat_seeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lYou reap...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You won't always get food rewards from this book, so it might be a good idea to take care of that problem. As you've created a hoe already, go and find some water nearby and make a field. With this modpack you can only make farmland within range of water. Let's trade some sticks for a carrot, so you can start your own farm.\n\nTo get other wheat, use a hoe on grass away from water. You'll get Witchery seeds too, save those for later. Start planting a cotton field, it's a key early game resource."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:stick","Count":8,"Damage":0,"OreDict":"woodStick"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:carrot","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":7,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:carrot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§l...what you sow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you, by chance, did read the previous quest and planted the carrot I gave you, then you're fine. Meanwhile, you should turn some more fruits and vegetables into seeds, and increase the size of your farm to get a steady supply of food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:carrot","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potato","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":8,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:cobblestone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lGet that stone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Look at you, with your shiny flint pickaxe! Time to mine some cobblestone. Yay! (And maybe you can improve this dirt-hut too...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":9,"preRequisites":[8],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFire, fire, Grandpa!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to burn some stuff, isn't it? You can't make charcoal in it, but you sure will find some usage for it soon(tm)."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":10,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lRest in pieces","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's GLOPPing time! Go kill some pigs to gather meat. (And yes, they will drop cooked porkchops. Now isn't that useful...)"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":10,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"Saddle":0,"FallDistance":0,"InLove":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":10,"id":"Pig","Age":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-3998212785627166700,"Health":10,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14197274275598,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":5,"taskID":"bq_standard:hunt","target":"Pig","subtypes":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":11,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSharpness: Over... 5...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's about time to craft something more useful: A sword!\n\nNow that you have a sword, you will get credit for monster kills in the Kill all the things tab. Watch out, monsters in this world will chew you up and spit you out!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":12,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFluffy and red","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epic quest: Kill some sheep! (And try to get some wool, for a bed, obviously...)"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":8,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.23000000417232513,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"InLove":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":8,"id":"Sheep","Age":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":8005527541666259000,"Health":8,"Color":0,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14240014886935,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"Sheared":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":6,"taskID":"bq_standard:hunt","target":"Sheep","subtypes":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":13,"preRequisites":[12,7,444,10],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSO...TIRED...MUST...SLEEP...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sleepy time, and the end of Tier 0. Congratulations, you've built your first hideout, and you should have a steady supply of food by now. See you again in tier 1!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":14,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§5§lWhat is that...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've seen a lot of trees, but there are a few that look really special. You are sure that these trees are much more than just wood to build your home with or used to get charcoal.\nThe best place to find them is in a Magical Forest, but if you can't find them there you can try a Garden or Cherry Wood Grove.\nIf you have trouble finding them, you can build a special compass in LV to help you locate the biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":15,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"SpiceOfLife:lunchbag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lReady, set, go!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably should have a home by now. A steady supply of food is a fundamental requirement at all times. Take this journal to keep track of the things you've eaten. You will have to travel far in this tier, better be prepared!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"SpiceOfLife:lunchbag","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":16,"preRequisites":[84],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"irontank:ironTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lBetter Tank... Iron Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Storing more than 16 buckets of fluid in one tank? Sure! Just make an iron tank or upgrade the Buildcraft tank.\nDiamond tanks carry up to 64 buckets and obsidian ones are blast proof."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"irontank:ironTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":17,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSand: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In a strange vision you saw a big structure which would allow you to make charcoal. Finally some torches! According to your calculations, you will need a lot of sand for that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":128,"Damage":0,"OreDict":"sand"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:sand","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:leekbaconsoupItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":18,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBasic processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most things are unavailable at the moment, so let's begin with something simple. Take some of your cobblestone and smelt it into regular stone. Since this modpack is evil, you'll need to use wood for that. How much fun is that?!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:stone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:chisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":19,"preRequisites":[18],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lMaceration v0.1 Alpha","isGlobal":0,"lockedProgress":0,"ignoreNBT":1,"autoClaim":0,"isSilent":0,"desc":"This fancy little device works (almost...) like a macerator. Some people say it's even better, since it does not require power, yay! You only need to craft one for this quest, but you probably should make some more if you can..."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":"craftingToolMortar"}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":20,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGravel: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tools will eventually lose durability. You think it would be a good idea to collect more gravel in order to provide yourself with flint for more tools. Try searching near water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gravel","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:gravel","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:baconcheeseburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":21,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:clay_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lClay: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While bored, you thought that it might be a good idea to take up pottery. You should go and find some clay, the riverbanks should have some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:clay_ball","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:clay_ball","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32233,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":22,"preRequisites":[23],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:cactus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFinite water!?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finite water is a problem, that's for sure. Last night, you had an idea. If you can drink cacti, you should also be able make water out of 8 cacti and use that for most recipes that require water. How cool is that? So what about another trade? 10 wood for... 3 cacti so you can setup a farm. Deal?\n\nTo automate the farm, place a string next to the cactus and a sand on top of the string. Now when the cactus grows, it will automatically break! You can stack this horizontally and vertically to make a very efficient cactus farm. Use water to redirect the cactus to a convenient pickup location or to above a hopper.\n\nFirst player to make a base running off of only cactus water gets a cape!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":10,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cactus","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":23,"preRequisites":[21,19],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IguanaTweaksTConstruct:clayBucketUnfired","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSomething to carry liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You tried to move water with your bare hands, which didn't work at all. Luckily, you remember how to make a bucket out of clay dust.\n\nPut it in a mortar to get small clay dust which can be crafted to clay dust."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IguanaTweaksTConstruct:clayBucketUnfired","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:peanutbuttercookiesItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:raisincookiesItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":24,"preRequisites":[25,17],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lGetting (char)coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to get yourself some charcoal. For that, we're going to build a coke oven. Good that you just collected a lot of resources! (What a coincidence...)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":26,"Damage":7,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":25,"preRequisites":[26],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:brick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnother brick in the wall","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your vision becomes more clear, you'll need bricks for your first multiblock structure. You think that 104 bricks should be enough. However, the bricks you'll need are somewhat special. Make sure to craft the correct ones!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredCokeOvenBrick","Count":104,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CokeOvenBrick","Count":104,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:baconmushroomburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":26,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lForming press v0.1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you may have noticed, you cannot turn clay into bricks directly. Well, to be fair, it wasn't a good recipe anyway. You'll probably end up with something bread-shaped. So in order to make bricks, you need a form. Get yourself a knife and a blank pattern, and cut a brick sized piece out. It's as easy as that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood","Damage":100}},"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":27,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finally, some power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a coke oven, you can start producing charcoal. The more, the better. Don't worry about the creosote oil; I have another deal for you..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:coal","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:maplecandiedbaconItem","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":28,"preRequisites":[27],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"ExtraUtilities:curtains","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper sky, Iron curtain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your newly acquired fuel source, you are now ready to process more advanced materials than stone or clay; Iron or copper, for example. Just in case you don't know, they spawn in rather large veins. Use the following quests to locate the most important veins."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":29,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8538,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnother fuel source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lignite and regular coal are the fuel sources you'll definitely need. The latter can be turned into coal coke, which is a superior fuel source to smelt your first large batch of ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":8538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":30,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11035,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Copper ingots can be created by smelting copper, chalcopyrite, or malachite ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":11035,"OreDict":"ingotAnyCopper"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:zucchinibreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:footlongItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":31,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11057,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tin ingots can be created by smelting Tin, Cassiterite, or Cassiterite Sand ore. Tin and Cassiterite ores are only found at high altitudes, but Cassiterite Sand ore is plentiful near the surface.\n\n§5§4Tip: If you get lucky and find a high altitude Tin/Cassiterite vein, save one of the Cassiterite ore to find your Mica vein later on using the ore finder wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11057,"OreDict":"ingotTin"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Natura:berryMedley","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":32,"preRequisites":[23],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:paper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBook parts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you found a way to move water around, you had another brilliant idea: Paper! Paper is no longer made with sugarcane, you will now need wood pulp. You will need a lot of wood to craft wood pulp, so better grab your axe and go chop some trees."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2809,"OreDict":"dustWood"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:paper","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:blankPattern","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":33,"preRequisites":[32],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTinker-time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While using your flint tools is fun in terms of killing pigs and cows, they are not very good, and can't be repaired. You discovered how to craft tools that could be repaired and upgraded, but for that you definitely need a more advanced crafting technique."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":34,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:GravelOre","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAluminini...um...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"However it is spelled, you will need it. You can find it in chunks of gravel on the surface.\n\nUse as little as possible and save the rest for when you get a macerator in Steam age."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:GravelOre","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32233,"OreDict":""},{"id":"TConstruct:GravelOre","Count":16,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":35,"preRequisites":[31,30],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2300,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking bronze","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've found copper and tin, you should make yourself some bronze. Use your macer... mortar to grind up some copper and tin ingots, and mix them together!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2300,"OreDict":"dustBronze"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11300,"OreDict":"ingotBronze"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:curryItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":36,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lImportant tools","isGlobal":0,"lockedProgress":0,"ignoreNBT":1,"autoClaim":0,"isSilent":0,"desc":"In order to craft even basic machines, you'll need new tools. Most of them can be replaced by machines later. For now, you should become familiar with each of their recipes, as you will need a lot of these tools, starting today.\n\nYour new tools can also be used to make Railcraft water tanks, a very useful multiblock considering the finite water feature.\n\nYou want to make the non-electric versions of the screwdriver and wrench."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":12,"OreDict":"craftingToolHardHammer"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":16,"OreDict":"craftingToolWrench"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":18,"OreDict":"craftingToolFile"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":22,"OreDict":"craftingToolScrewdriver"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":10,"OreDict":"craftingToolSaw"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":20,"OreDict":"craftingToolCrowbar"}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""},{"id":"harvestcraft:zucchinibakeItem","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":37,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGetting iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron can be found in multiple veins. \nMagnetite veins (y 30-180), \nchalcopyrite veins (y 5-60), \nand limonite veins (y 10-40) all contain iron ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":72,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:pumpkin_pie","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":38,"preRequisites":[30,1866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":356,"Head":14,"HeadEXP":0,"BaseAttack":4,"Built":1,"ToolEXP":0,"HarvestLevel":3,"Attack":4,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":356},"display":{"Name":"Bronze Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking better tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With aluminium and copper, you can create a pretty durable material \"Aluminum Brass\", which can be used to cast better tools. These can be used to mine some more advanced ores.\n\nBut first you need a smeltery. See the Multiblock Goals chapter in this book, or find smeltery blocks in a village nearby."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:shovelHead","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":39,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBetter storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While standard chests are good for your basic items and goods, they are not ideal for storing a large amount of ore. You should build yourself some barrels in order to keep things organized."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:fullDrawers1","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":40,"preRequisites":[35,36,1738],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou shall proceed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you've gathered and crafted all materials and tools you need for your basic steam machinery, you may now proceed to the next tier. Keep in mind that you'll need mountains of resources in order to craft even the simplest things, so you probably should stock up on all ores in this tier. But that's up to you."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17300,"OreDict":"plateBronze"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredClayBrick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:brick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:brick_block","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":17032,"OreDict":"plateIron"},{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5121,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":41,"preRequisites":[43],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.OvenGlove","Count":1,"tag":{"Durability":1000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lDon't burn your fingers!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have decided it's time to make some tasty pizza, but your fingers got burned badly. Reading an ancient cookbook you discovered a pair of magical items that would allow you to carry anything hot, even lava in a bucket.\n\n§6§5The gloves have to be placed in the Baubles ring slots of Thaumcraft.\n\n§rFor the protection effect, the hot item has to be in your active slot. I wonder if there is some way to carry more than a few buckets at a time?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":6,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.OvenGlove","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.OvenGlove","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":42,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§r§2§lCow Tipper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you had to kill some pigs and sheep to complete quests. Now it's time to kill some cows and hopefully get some leather. If you are lucky and get a cow trophy you may never need to kill another cow in the future."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":6,"taskID":"bq_standard:hunt","target":"Cow","subtypes":1}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":43,"preRequisites":[42],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Natura:barleyFood","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cotton, cotton and more cotton","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You find out that cotton is very useful, it can be used to make string, wool, and some other useful items too. Make a small cotton plantation to get tons of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:barleyFood","Count":5,"Damage":3,"OreDict":""},{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:barley.seed","Count":10,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":44,"preRequisites":[40],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWelcome to Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome, and well done so far! This tier is all about your first machines, getting more stuff from your ores and making bronze ingots in a more efficient manner.\n\nFor water, check out the Water Siding Tank multiblock in the Multiblock goals tab.\n\nTo connect up your boilers, be sure to provide water from the bottom. Wooden pipes are fine for this. Make sure you never run out of water - adding water to a hot boiler will cause it to explode!\n\nSteam will come out from the sides. Remember, steam is hot! It will destroy wooden pipes. And it can burn you if you walk on bronze pipes full of steam. Cover them with wooden planks or paper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":2,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":8538,"OreDict":""}]}]},{"questID":45,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMultiblock tanks... Railcraft tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"576 buckets of fluid, that should be enough to store all the creosote you have accumulated thus far. If that isn't enough you can make this tank bigger. The smallest tanks are 3x4x3 while the biggest are 9x8x9.\n\nHint: Fluid will auto-output (without any pumps) if you place a valve on the bottom side of the tank. You can color the tank with Buildcraft paintbrushes and the GT spray can.\n\nUse only Buckets to move fluids because cells get destroyed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":30,"Damage":0,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":2,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:machine.beta","Count":1,"Damage":1,"OreDict":""},{"id":"Railcraft:machine.beta","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:oreBerries","Count":5,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":46,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":118,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMore advanced alloys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your smeltery does a great job mixing metals into alloys, but it's not very efficient, and limited in its complexity. You need something new, so why not put your steam to some use? \n\nIt might also come in handy when processing raw rubber. You should keep an eye on recipes to see when machines offer better options to make items...\n\n§4NOTE: Like all steam machines, the output port doubles as a steam outlet when recipes complete. It must not be blocked. Also, steam is hot, remember? Change the output sideby whacking with a wrench. The 3x3 grid will show you which side the output will move to when you whack it."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":118,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":47,"preRequisites":[46],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":119,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: High speed alloys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like most machines, there is a more advanced version of the alloy smelter. Keep in mind that this machine uses a lot of steam, so you better get some more boilers first. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":119,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":48,"preRequisites":[46],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11308,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA very important alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The most important alloy (until you reach a higher tier) is undoubtedly red alloy. Fortunately, you have an alloy smelter, so grab some redstone and combine it with copper to get yourself a handful of that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":11308,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11308,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":49,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe hell is that?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get more machines, you'll need pistons. But not those amateurish ones, you need special ones, and I shall guide you in the making of them."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17308,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:fence","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":7,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":6,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:sticky_piston","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":50,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMacerator v1.0!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally you are able to make a device that will replace your mortar. However, the \"no-durability\" feature of this device comes with a cost: You need 2 diamonds for the grinding heads.\n\nThe macerator will double your ore output. Put ores through it instead of smelting directly.\n\nNOTE: Remember, don't block the output port and don't stand behind it."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":106,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:jellybeansItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":51,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":109,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lExtracting stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you'll need rubber later to make cables from wires, you should get yourself a steam extractor. You can also use this machine to get more dyes from flowers, or process different fruits into juice."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":109,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":52,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§4§3§lA clear view","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you still living in your dirt hut/cobble hovel? How about letting in some sunlight? Grind up some sand and flint and craft some glass dust. Put it in your smeltery and pour it into a casting basin to make clear glass.\n\n§4Hint: In order to use it for recipes, you have to chisel it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2939,"OreDict":"dustQuartzSand"},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":802,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2890,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:GlassBlock","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"chisel:chisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:glass","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":53,"preRequisites":[694],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":112,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHammer time v2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using 6 ingots to craft a hammer seems pretty wasteful, as this tool has durability. How nice would it be to have a machine that does the same but without having durability and using three ingots to make two plates? Guess what, there is one! And you should totally get one."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":112,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_ingot","Count":6,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":54,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lCompressing stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This rather simple device does a very important job: compression. It's main function is to press 9 ingots into a block, but it's also useful for a variety of recipes, for example making firm tofu."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":115,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":55,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":116,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lUpgrade: A better compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam compressor. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":116,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spicymustardporkItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":56,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":113,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Forge hammer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam forge hammer. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":113,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:gummybearsItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":57,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Extractor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam extractor. Uses more steam, but is almost twice as fast. You probably want to craft this, as the extractor does also extract your nerves... (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":110,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:stuffedpepperItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":58,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":107,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Better macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam macerator. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":107,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:softpretzelandmustardItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":59,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.GregTech_FluidDisplay","Count":1,"tag":{"mFluidDisplayAmount":0,"mFluidDisplayHeat":375,"mFluidState":1},"Damage":48,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSteam alternatives","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There is more than one way to get steam for your machines. This completely optional quest shows you some alternative methods for producing steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11300,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":60,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Coal boiler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This is basically just an upgrade to your current coal boiler, however it produces more than twice as much steam. Something you should consider building if you're planning to get some of the upgraded machines."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":101,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:zeppoleItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":61,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAnother use for Java, I mean Lava","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a more durable steel casing, you can use lava to make steam."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":102,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberryjellysandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":62,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe power of the sun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sun has quite a bit of power, so why not use it to produce steam? \n\nFill it with water on the bottom side to produce steam. Unlike the other boilers, this only outputs steam on the output port side.\n\n§4Hint: The solar boiler calcifies and becomes less efficient over time."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":105,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:papayajellysandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":63,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUsing steam to cook things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A rather slow process, but it's more efficient than using a regular furnace."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":103,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:lamingtonItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":64,"preRequisites":[63],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":104,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Better furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam furnace. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":104,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fairybreadItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":65,"preRequisites":[53,44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBlastoff!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's about time to make some steel. Look in the Multiblock Goals quest tab and build a Bricked Blast Furnace. Return here when you made at least 8 steel ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:breadedporkchopItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:iron_ore","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":66,"preRequisites":[67,871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32700,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lTime for some logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good news! You are now able to advance to the next tier! Bad news: You still have to craft a lot of things before you can begin. Fear not mortal, I shall guide you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":1360,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":26308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32012,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:turkeycookedItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":67,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lWired, weird?!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the very basic materials which you should memorize how to craft are wires and cables. Basically you just cut a plate into a wire with your wire cutter. Not very efficient, but there will be a better way later."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":2000,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":7,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":7,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fruitcrumbleItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":68,"preRequisites":[66,67,834,835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lYour first electronic circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steam machines are quite stupid, they just do one thing over and over again. As you advance into the electrical age, you've decided that you want the machines to have more features, like automatic output in order to create some automation. For that, you need electronic circuits."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:icecreamItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":69,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWire-Wrap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing wires without insulation seems to be a bad idea. Now that you have an extractor to extract raw rubber out of sticky resin and an alloy smelter to further process it using sulphur, you should work on getting some insulating rubber sheets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":120,"Damage":2896,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":2022,"OreDict":"dustSulfur"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":11880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:onionsoupItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":70,"preRequisites":[71,72,68],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSteam-a-licious!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You almost made it. One last crafting step is required in order to advance to Tier 2. Keep going!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberrybarItem","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":71,"preRequisites":[67,69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Motors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Motors are little devices that can turn electrical power into rotational energy. Very useful for all kind of machines, and not that difficult to craft. The pattern is always the same, only the materials change with tiers. For now you can use redstone to magnetize your iron rod. Later on you will build an Electromagnetic Polarizer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23354,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32600,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:melonsmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":72,"preRequisites":[73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Rotors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rotors are also crafted using an identical pattern with different materials. A bit annoying to craft at the moment, but you don't need a lot of them anyway."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28057,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21057,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:strawberrysmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":73,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Casings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All machines need a hull to keep their private parts together. Good news is: They are crafted in the same way for every tier, only the materials change."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:poachedpearItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":74,"preRequisites":[18],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Smeltery","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§6§a§9§8§7§6§5§4§3§2§1§0§3§f§k§f§l§6§lYou are not prepared!!!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time for something really big: A smeltery! There's a lot to craft, so better gather some resources...\n\nThe aluminium oreberries can be planted on cropsticks, and macerated to get small quantites of aluminium for molds if you cannot find aluminium gravel.\n\nNote: The book says a 3x3 base, but you can make a smeltery with a smaller base. Taller/wider smelteries can do more items at one time, conserving fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":123,"Damage":0,"OreDict":"sand"},{"id":"minecraft:gravel","Count":123,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":82,"Damage":2805,"OreDict":"dustClay"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:CraftedSoil","Count":162,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredSearedBrick","Count":162,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":162,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":28,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":7,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:LavaTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":8,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:SearedBlock","Count":2,"Damage":1,"OreDict":""},{"id":"TConstruct:CastingChannel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":9,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":2,"Damage":1,"OreDict":""},{"id":"TConstruct:SearedBlock","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":10,"consume":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":11,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:SearedBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":75,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThe water dilemma","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finite water is a problem. But fear not, there are solutions! I shall guide you to a steady supply of water. The Railcraft water siding tanks provides enough water to last the early game.\n\nThe humidity of a biome is very important and will increase the base fill rate.\n\nIf it is raining, the tank will fill much quicker.\n\nAt least one block of the water siding tank must see sky for the maximum output.\n\nThe best part is that you don't need a pump to extract water. Tanks and pipes placed next to it will be autofilled by the water siding tank.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockRubSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemTreetap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemHarz","Count":26,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":52,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:planks","Count":130,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":26,"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":10,"Damage":5101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":76,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to get some steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need steel? Uhh... fine. Let's get busy...\n\nHint: The bricked blast furnace can share walls with other ones, just like most GT multi blocks. How will this affect the air quality though...\n\nIf you are short on Stone Dust, you can get more by macerating cobblestone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:clay_ball","Count":720,"Damage":0,"OreDict":""},{"id":"minecraft:cobblestone","Count":24,"Damage":0,"OreDict":""},{"id":"minecraft:flint","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":28,"Damage":17032,"OreDict":"plateIron"},{"id":"minecraft:furnace","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMachine","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":144,"Damage":2805,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2299,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2939,"OreDict":"dustQuartzSand"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredClayBrick","Count":432,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:brick","Count":432,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":108,"Damage":2625,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":108,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":32110,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":8,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":32111,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":9,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2934,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":10,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":36,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":11,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":2,"choices":[{"id":"TConstruct:oreBerries","Count":10,"Damage":5,"OreDict":""},{"id":"TConstruct:oreBerries","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:oreBerries","Count":10,"Damage":1,"OreDict":""}]}]},{"questID":77,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§r§6§l§5§l§o§l§r§6§lEBF-Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get alumin(i)um ingots, you need an electric blast furnace. It's another very important step towards victory, so let's get started.\n\nGetting the heating coils might be a little tricky...\n\n§4(You need 2 LV hatches with 4A of 32V total, or 3 LV hatches with MOOOORE power if the multiblock is not fully repaired)\n\n§rA few recipes produce CO2/SO2 as fluid. You can put an output fluid hatch to the top layer of the EBF to collect it otherwise it gets auto voided. It depends on the muffler hatch how much fluid you can recover. Max muffler recovers = 78 percent.\n\nMoron always says - Make Muffler Moint Mup. Or point up, anyways.\n\nIf you want a really fancy EBF, you can add more input fluid hatches and store different fluids in each one.\n\n§4If the pollution gets really bad, check in GT++ Multiblocks for a pollution scrubber."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":11,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":71,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":81,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":91,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":41,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":128,"Damage":1341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":75,"Damage":0,"OreDict":""}]}]},{"questID":78,"preRequisites":[77,81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #1: More heat - Kanthal Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better materials need higher temperatures. You can just exchange the old coils with the new ones. Kanthal coils let you reach 2700 K. You can even reuse the old coils in other machines, how fancy is that!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":79,"preRequisites":[78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #2: Higher tier - Nichrome Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach the 3600k heat capacity of your EBF, so you can process high-tier materials like tungsten, you need nichrome heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":80,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCompress all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Martin's (DreamMasterXXL) favourite machine. Compress ALL the things! With explosives, of course. Boom today!\n\nNote: You might want to put this far from your living quarters, the pollution can get high really fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:cobblestone_compressed","Count":1,"Damage":3,"OreDict":""},{"id":"ExtraUtilities:cobblestone_compressed","Count":1,"Damage":11,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":81,"preRequisites":[940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1002,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAt the end of...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...the universe everything freezes eventually. But waiting for the heat death of the universe might take too long. Therefore we present you the vacuum freezer. It should be good enough to cool your hot stuff. You will need a minimum of 16 frost proof machine casings, the rest depends on your setup.\n\nYou will need to make EV circuits in a cleanroom to build this machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1002,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":21,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:neapolitanicecreamItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":82,"preRequisites":[684,698],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:tile.Charcoal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§7§6§lAn unexpected Bonus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Because we're nice developers, we decided to add a little bonus if you happen to compress charcoal. Not only does it allow you to process more than 16 steel at a time (not in the bricked blast furnace), it also yields 10 times the burn time of a piece of charcoal. So one charcoal for free. This bonus only occurs on the first compression step. (But for fanciness, you should definitely get a quintuple one!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:tile.QuintupleCompressedCharcoal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":10,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":10,"Damage":2,"OreDict":""}]}]},{"questID":83,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHigh speed charcoal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, those coke ovens are nice, but they aren't even remotely fast enough to keep up with a large steam boiler. Luckily, there is an upgrade available! The creosote oil will not be produced, but the process will speed up dramatically. Who needs that nasty yellowish flammable stuff anyway..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:netherbrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HotNetherrackBrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CokeOvenBrick","Count":68,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.InfernalBrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.AdvancedCokeOvenBrick","Count":136,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":34,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockgem3","Count":10,"Damage":4,"OreDict":""},{"id":"minecraft:coal_block","Count":10,"Damage":0,"OreDict":""},{"id":"Railcraft:cube","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":84,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWhere I can put all the liquids?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your brand new alloy smelter you are able to combine two materials. What happens if you mix some obsidian dust and thickened glass? Obsidian glass, great. Your first tank that you can make would be a Buildcraft tank. This tank can carry up 16 buckets of a single fluid. It's possible to upgrade those tanks so they can hold up to 64 buckets.\nYou can also stack the tanks to increase capacity."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28032,"OreDict":"ringIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":"screwIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:GlassBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2804,"OreDict":"dustObsidian"},{"id":"ExtraUtilities:decorativeBlock2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"ExtraUtilities:decorativeBlock2","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":85,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1003,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Smelt all the things stack wise...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...with this great invention! Uses power to smelt up to 2 stacks of items at once! Can't go any faster! \n\nHint: Parallel smelting depends on coils, consult your local doctor before use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1003,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":12,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":86,"preRequisites":[79],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #3: Upgrade tier 4 - Tungstensteel Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like enderium, enriched naquadah or niobium-titanium you need more than 3600K. Time to upgrade your EBF... again."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":87,"preRequisites":[45,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":64,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSteel multiblock tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to have tanks that can hold double the amount of the iron ones? Go ahead and make a steel tank. All sizes allowed from 3x4x3 to 9x8x9 blocks (X and Z must be the same, and odd). Just like the iron tanks, the Buildcraft paintbrush and GT spray can colorize tanks for identification. Get started on that tank farm full of lube!\n\nHint: Fluid will auto-output (without any pumps) if you place a valve on the bottom side of the tank - valves cannot be on an edge!\n\nOnly use buckets or large fluid cells because 1000L GT cells get destroyed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":30,"Damage":13,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":15,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:machine.beta","Count":1,"Damage":14,"OreDict":""},{"id":"Railcraft:machine.beta","Count":1,"Damage":15,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":88,"preRequisites":[70],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§r§5§lWelcome to Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why, hello there! Seems you've made it into the electrical age. Don't be so quick to throw away your steam machines, you'll probably want to use them until you reach tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:bananasplitItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":89,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1121,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Steam Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to use steam in MV tier then it's time to build a steam turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1121,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":90,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":351,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDamn you, wire cutter!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enough is enough. No more wasting gazillions of ingots just for a couple of wires. Now that you have power, you should go for a wiremill!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":351,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":91,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32630,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first item you'll need a lot of. If you want to pull items out of chests or barrels you'll need one. \n\nHint: Goes pretty well with item pipes or GT machines, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32630,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":92,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fourth item you'll need a lot of, and is also a pain to craft. Arguably the most painful item ever. \n\n§4Hint: Works like a conveyor but can work with selected item slots, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":93,"preRequisites":[88,95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second item you'll need a lot. When you want to get fluid out of tanks you'll need one. \n\nHint: Attach to fluid pipes or GT machines. Adjust the direction and redstone behavior with a screwdriver. Place it on the side facing the tank or machine. When looking at a pipe or machine, you can use the grid to place it on a side already touching another thing. You can use the grid with a screwdriver to adjust a cover on that side as well.\n\nWhen a GT pipe or machine has any cover, including a pump cover, wrenching the machine back into an item keeps the cover on that machine. The cover stays with the machine in the same N S E W direction when it is placed down again. This way you can arrange pump and conveyor covers on a machine outside a tight spot and place it there. To remove covers, use the crowbar.\n\nIt can also be further upgraded into a fluid regulator that allows precise control of fluid transfer speed."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":94,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":301,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectric macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is highly recommended to get one of these, as the efficiency in terms of coal/steam used to macerate something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":301,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":95,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32640,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A piston, but more .. \"electrical\". The third item you are going to craft a lot of in the future."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32640,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":96,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":551,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSaving redstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of using 4 redstone for one magnetic iron rod? Well, good news for you! The polarizer doesn't need redstone, just a little bit of power. You don't need to attach this machine to a permanent power source, it runs fine on battery power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":551,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":97,"preRequisites":[92],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAvengers, assemble!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An absolute must have for fans of the movie. Oh, and to make all the things, of course.\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":98,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":291,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNo more filing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why waste a full ingot to make a rod by using a tool which loses durability and takes even MORE ingots? With this little device, all your rod-needs shall be fulfilled (for now)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":291,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":99,"preRequisites":[97,529],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bzzz... Whoom... (Defunct do not complete)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making some flawless crystals requires a precision laser engraver.\nAt MV level the precision laser engraver becomes more important."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":591,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":100,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":601,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPress all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the basic forming press you can make different food items, glass arrows and some Project Red components. \n\nAt MV/HV stage you can make rotors, various AE components and make copies of your molds and extruder shapes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":101,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMjolnir!!! (electric forge hammer)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not really required, but it is a lot faster than the steam one and it can be automated. If you feel like ore washing is too slow, use this hammer. There are no recipes that require anything more than steam level to hammer something."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":102,"preRequisites":[540],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":251,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCutting things apart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An absolutely mandatory machine to have. It will cut rods into bolts, plates into casings, logs into planks, and all of that will be done with the highest possible efficiency. Totally worth it! \n\n§4Hint: Just add water. Later on lubricant will help it run faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":251,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":103,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGet ready for Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to proceed forward, you need to get aluminium. A lot of it. But for now, eight is enough to unlock this quest. Probably the best source for aluminium is clay or hardened clay from canyons, however you need an MV machine for that. So you need to find an alternative until you have enough dusts for your initial setup. Check back in your Tier 0.5 quests for hints.\nOnce you have the dusts, you will need to do the EBF quest in Multiblock Goals to turn the dusts into ingots.\nAlso check the Armor and Jetpacks tab for new unlocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11019,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":104,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYour magic progression","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are able to produce aluminium, you may dig into magic. If you haven't unlocked basic thaumaturgy, try to find a silverwood and a greatwood sapling."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":105,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":221,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThe missing one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It was once said... But ffs, add a plate bender to the LV tier book ...and then it popped into existence."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":221,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":106,"preRequisites":[91,92,579,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockCartAssembler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, probably not the first, but definitely something big! You will need a cart assembler first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockCartAssembler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":107,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Power Coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar, or lava. But for now you have to use a simple coal engine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":108,"preRequisites":[106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockCargoManager","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated (un-)loading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can fill and empty your cart manually, but it's a lot more convenient to automate item transfer, isn't it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockCargoManager","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":109,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Farming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unfortunately, the basic farmer can't farm anything besides wheat, carrots and potatoes. It's not expensive at all, and probably the cheapest solution to give your automated food production a nice boost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":110,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A basic cart can't hold any items, so you need to attach special chests to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":111,"preRequisites":[106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A simple cart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to create or customize your cart you need a hull to attach your desired upgrades to. The wooden one can be used for really simple applications, but to farm wheat or wood, you need at least an iron one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":38,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":112,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Wood cutter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic wood cutter will break after a while, but you never have to replace it. It can easily be repaired with diamonds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":113,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:pipes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport pipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These pipes are rather simple and won't do anything on their own. But in combination with transfer nodes, you'll soon find out how great they are. Also, given the correct upgrades, they even surpass most other transfer systems."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:pipes","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:pipes","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":114,"preRequisites":[113],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport: Items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to transfer items, you need so called \"nodes\". There are some for pushing items into a pipe system, and later you'll have access to nodes that are able to pull items from attached inventories."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":115,"preRequisites":[113],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport: Fluids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like item nodes, liquid nodes transfer... liquids. But probably the best thing: They can all utilize the same transfer pipe!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":116,"preRequisites":[70,88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":201,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAlloy smelter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your steam alloy smelter to an LV one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":1,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":201,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:food","Count":2,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":117,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGotta catch 'em all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, you can use wheat/potatoes/carrots to make animals follow you back to your base, but that can be tedious. A golden lasso is a proper solution for animal transportation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":118,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:chandelier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic monster protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spawning monsters in or near your base can be annoying. Especially if you happen to get infernal creepers. Luckily, there is a good way to prevent them from spawning at all."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:chandelier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":119,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA quite different storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular chests can fill up rather quickly if you happen to collect mob drops like swords and/or armor. By using a cabinet, you can store up to 270 items of the same type. Also, it doesn't need a dolly - you can break it normally and it will retain contents. \nPerfect for storing ic2 crops, Forestry saplings, or bees!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":120,"preRequisites":[121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lProtect your base; Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One needs proper protection for ones home. So why not get some turrets for safety? At the moment, 2 Turrets are available: \"Potato\" and \"disposable item\". I assume you can guess what they do and how they work..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:sensorTierOneItem","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierOne","Count":3,"Damage":0,"OreDict":""},{"id":"openmodularturrets:chamberTierOne","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":121,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPassive defence","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A more \"passive\" approach to base defence are walls and fences. But seriously, where is the fun in that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:hardWallTierOne","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:fenceTierOne","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":122,"preRequisites":[120],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierWood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lTurret base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Turrets must be placed on top of a turret base. Only the player who initially placed the base can access and configure the turret. So don't worry about people taking your ammunition."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierWood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":123,"preRequisites":[122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:disposeItemTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lWho needs that dirt anyway","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably have a ton of items floating around in your base. So why not use them to kill your enemies?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:disposeItemTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Forestry:canWater","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":124,"preRequisites":[122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:potatoCannonTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDon't play with your food!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use it to kill zombies instead. Does only a little damage, but hey, who cares?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:potatoCannonTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":125,"preRequisites":[124,123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:expanderInvTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lUpgrading intensifies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your turrets probably need more space to hold more ammunition, so why not get an upgrade for that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:expanderInvTierOne","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BuildCraft|Core:engineBlock","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":126,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lElectrolysing all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collected a lot of dusts since you started with macerating, washing and centrifuging ores? Until now you couldn't separate them. It's time to get all the pure and valuable materials out of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":127,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Project red beginning","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to Project Red!\n\nThis quest will teach you the basics of Projectred and show you how to set up a Ghetto AE system.\n\nThe Ghetto AE system will be really useful for sorting all of your first items\n\nFirst of all there are different types of pipes: \n\nItem Transport pipes are the most basic pipes, classified as Null-logic. They don't do anything besides connect other pipes together.\nItem Transport pipes only have the ability to take items that enter it and pass them along to another connected pipe. They will NOT connect to inventories at all. In a junction where there is more than 1 possible direction, item payloads will travel in a randomly selected direction.\n \nRouted pipes are the most advanced. These pipes 'communicate' with one-another to form pipe networks, in order to allow for incredibly complicated demand driven systems, with absolutely no redstone circuitry required.\n \nPressurized pipes are pipes that use a pressure based routing system where the payload travels to the closest inventory that can accept it. Finding the closest inventory is influenced by both distance and Pressure Resistance Pipes (which, to the path finder, are 1000 blocks long), but the actual path that items take is only influenced by distance.\n\nHowever, in order to control the logic of the routed pipes you will need special circuit chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":128,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockEnderIo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIO, IO, it's off to EnderIO we go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've probably used EnderIO before. It's quite useful for a lot of things. But a lot of stuff has changed here, so let's start from scratch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11365,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11369,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11378,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11369,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11378,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11365,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":129,"preRequisites":[1835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMachine chassis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All EnderIO machines still require the basic chassis, and it's almost the same recipe as before; Except that you need plates instead of ingots. But that shouldn't be a problem at all..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMachinePart","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""},{"id":"EnderIO:itemMachinePart","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":130,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPortable tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Until now, you had to use buildcraft tanks to carry liquids around. Which can be a pain to do. These little tanks from EnderIO are able to push and pull liquids by themselves, as they have a built-in pump which is powered by some magic energy source. How convenient.\n\n§4Just be careful, because it will eat water cells instead of returning them.\n\nPressurized tanks are twice as large."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":131,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockStirlingGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple RF power: Solid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By simply burning coal as fuel, this machine produces RF power. Enough for a basic machine setup. This machine will also accept compressed and multiple-compressed blocks. Want to burn for 250+ days? Also, with double or octadic capacitors the output will increase and efficiency will improve. GT wiring can convert EU to RF, but EnderIO machines can be left safely out in the rain. \n\nMight be useful for Genetics machines since they consume excessive power when attached to GT wiring - Forestry and EnderIO machines work fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockStirlingGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":132,"preRequisites":[130],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCombustionGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple RF power: Liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This generator requires both water as coolant, and a burnable liquid as fuel. The amount of power it produces depends on the type of liquid used."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockCombustionGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":133,"preRequisites":[129,1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThe power of enderman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elevators are nice, but they are limited to vertical teleportation, and their range is also somewhat limited. Travel anchors do not have that limitation. You can teleport from one anchor to any other within range. You can name them and even set them as private. They have a 2s cooldown."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockTravelAnchor","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":134,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemPowerConduit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lConduits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Probably the most awesome way to transport just anything in multiple different ways. Get some conduits of each type. Higher tiers of each exist."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemItemConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemLiquidConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemRedstoneConduit","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemItemConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemLiquidConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemRedstoneConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":135,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemYetaWrench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYet another wrench","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Yeta Wrench is more than just a regular wrench. While holding it, you are able to switch between conduit types, eventually allowing you to remove one specific conduit type from a bundle of many. Ctrl-Mousewheel will switch modes, also Shift-Leftclick allows you to open the configuration interface even if you don't have access to that side of the conduit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemYetaWrench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":136,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemBasicFilterUpgrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lImproving conduits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Conduits on their own are pretty awesome, but you can do better. By using filters and speed upgrades, you gain even more control over what they do and how fast they work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemExtractSpeedUpgrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicFilterUpgrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:itemItemConduit","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":137,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockPainter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMaking things pretty","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While conduits on their own are already awesome, you can also hide them if you want. There are 2 types of facades, basic and hardened. While basic ones are simple and easy, the reinforced ones are able to withstand explosions and mining with tools. You have to use your Yeta Wrench to remove it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":128,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemConduitFacade","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:itemConduitFacade","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:blockPainter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemConduitFacade","Count":64,"Damage":1,"OreDict":""},{"id":"EnderIO:itemConduitFacade","Count":64,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":138,"preRequisites":[128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemAlloy","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lCome to the dark side...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...we have cookies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemAlloy","Count":32,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":139,"preRequisites":[138,692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Luke, I'm your father","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With that dark steel you got, you may now craft yourself a new set of armor. While pretty basic at first, it can be upgraded later to unlock powerful features."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11364,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":140,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDark steel tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are also tools made of dark steel. Each of them can receive upgrades. Hold shift to get the tooltip which will explain what you need in order to upgrade them.\n\nThese tools can also be enchanted like vanilla tools.\n\nThe Ender will increase wither skull and ender pearl drops. It can be upgraded to teleport the player.\n\nDark shears can be empowered, and then will shear a large area, including leaves. Handy for clearing away that giant redwood! Maybe you will find other uses for it.\n\nThe axe, once empowered, can be recharged wirelessly while in farming station.\n\nThe pick? Well, it can mine cobalt I guess if you haven't gotten a tool capable of that yet. You could keep it around to use for base decorations if your normal pick is too fast, I supose."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_axe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemAlloy","Count":4,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":141,"preRequisites":[989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMaterial","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lVibrant Crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vibrant capacitor banks also need this magical crystal. Armor and tools can be upgraded too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":8,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:exp_bottle_consistent","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":142,"preRequisites":[132],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockVat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBrewing liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine is not only capable of brewing more powerful burnable liquids, it can also be used to brew nutrient distillation, which might have further usage soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockVat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":143,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockAlloySmelter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSmelting all-joy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This combination smelter allows you to produce fused quartz and quite clear glass of all variants."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockAlloySmelter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":144,"preRequisites":[146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCrafter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAutomated crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You know, yet another automated crafting solution...\nThe left grid sets the recipe. The center box on the left will show the output. The right item grid is where you place resources. The output products will show up on the right center box.\nThis machine supports automation.\nYou can upgrade the machine with a Double-Layer or Octadic capacitor to increase power usage and speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockCrafter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":145,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSagMill","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOre processing kind of...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The endless ware between macerators and SAG mills rages on eternal, so why does it matter which one you choose?\n\nHV Macerators are still required for the final byproducts on many ore chains, but a SAG mill still shines through with\nupgraded grinding heads! SAG mills are perfect machine for getting the most from your ores without using bees and crops.\nYou can get bonus outputs with tungsten grinding heads, but that doesn't mean you can dupe materials (like ingots) with it.\n\nPlus for many of them you'll get the final output directly without any need for further processing. Handy for processing Redstone to get Chrome!\n\nIt's great for lead, copper, tin, silver, nickel, redstone, ruby, lapis, certus quartz, and malachite ores. Other ores will give you better outputs as well if you use a good enough head.\n\nEven coal, charcoal,bones, wheat, ender pearls, and charcoal non-ores will give bonus outputs.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSagMill","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":146,"preRequisites":[166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSliceAndSplice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTorture device","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When the subjects don't want to cooperate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSliceAndSplice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":147,"preRequisites":[856],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:RocketFuelMixA","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRocket fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rocket fuel are used in the future for galacticraft rockets. It does generate a lot of Power in the rocket Engine. Use your centrifuge to make some. Will generate 30720000 eu per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30654,"OreDict":""},{"id":"miscutils:NitrogenTetroxide","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:RocketFuelMixA","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":148,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketNutrient_distillation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTasty...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yeah, that is... Well.. You are sure it will have an usage for something... some day... eventually... maybe..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketNutrient_distillation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":149,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketFire_water","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFirewater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not exactly what you think it is. Better to not consume that liquid. When used in the Combustion Generator, it will produce 80 RF/t."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketFire_water","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":150,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketHootch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHootch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The lowest tier of renewable, burnable fluid. Generates 60 RF/t, but can be automated for \"green\" infinite power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketHootch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":151,"preRequisites":[148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockKillerJoe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAutomated mob-farming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course... zombies love that... disgusting liquid. While using a small amount per hit, he will attack everything that is within his range. That also includes players, so be careful. Rumors are there might be a weapon that will never break when used in this \"machine\"..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockKillerJoe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":152,"preRequisites":[151],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:ethericsword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAnd it will never break","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using an etheric sword, your killer joe will run.. forever. Proper enchantments are a requirement for it to be efficient, but that shouldn't be a problem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:ethericsword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":153,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Translocator:translocator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple item transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Translocators can only transfer items over a distance of 1 block. But they're quite cheap, and a good solution to build compact machine setups. They include a free simple item filter which can be enabled on the input or output side. And they support multiple inputs and outputs! Glowstone will make it transfer faster - try investigating other upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Translocator:translocator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Translocator:diamondNugget","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":154,"preRequisites":[153],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Translocator:translocator","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple fluid transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like the item translocators, the fluid ones transfer... fluids. Same restrictions apply, 1 block distance. These can also be upgraded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Translocator:translocator","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Translocator:diamondNugget","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":155,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierTwo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHarder, stronger, faster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No, actually not faster. But more durable than tier 1."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierTwo","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierTwo","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":156,"preRequisites":[155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierTwo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lProtect your base: Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slightly better protection. Now with a real gun. No more wasting food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierTwo","Count":1,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierTwo","Count":1,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierTwoItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":157,"preRequisites":[156],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierOneBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTier 2 turret base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nothing to see here. Proceed..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierOneBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":158,"preRequisites":[157],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:machineGunTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSometimes, a bullet will do","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They hit hard. You have been warned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:machineGunTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"openmodularturrets:bulletCraftable","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":159,"preRequisites":[157],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:incendiaryTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBurn them. Burn them all!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hmmm, crispy bacon. What would happen if you enable neutral mobs as targeting...?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:incendiaryTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"openmodularturrets:blazingClayCraftable","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":160,"preRequisites":[753,750,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTier 4§7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first hull as usual..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":161,"preRequisites":[241,240,239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paying the highest price","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When regular magic just isn't enough, you need something... stronger. Which is paid with blood. Your blood, and maybe others.\n\nIn tier 1 you only need to place the blood altar. Plan for the configuration to grow in size"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":162,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimensional goal: Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HV is the age where you should focus on reaching the Moon, as soon as possible. You will need titanium in large quantities. \n\n§4Hint: more info will be found in the Space Race quest tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":22,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":163,"preRequisites":[169],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockInventoryPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lI see everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The inventory panel is an alternative to your (hopefully?) existing project red storage system. Just like project red, you have to connect every chest/barrel with an item conduit. In addition to that, you also have to install a \"remote awareness\" upgrade into every conduit side you want the panel to see."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockInventoryPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemFunctionUpgrade","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:itemFunctionUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"EnderIO:itemItemConduit","Count":16,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":4,"Damage":4,"OreDict":""},{"id":"EnderIO:itemFunctionUpgrade","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":164,"preRequisites":[177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:weakBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Portable battery...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not exactly a \"battery\", more a portable access point for your life points, aka blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":165,"preRequisites":[146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSoulBinder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSoul eater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wouldn't it be great to actually make use of the intelligence or abilities a certain creature has? For example: enderman teleportation or brain capacity of a zombie for simple logic? (He doesn't use it anyway...) With this machine, you are able to bind a captured soul to an item, which can then be used in machines to improve their functionality."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSoulBinder","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":166,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11379,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lA new alloy Soularium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are some... \"Darker\" uses for machines. Stuff that might be considered \"magic\". Anyway, for that you need a new alloy: Soularium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11379,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":167,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockExperienceObelisk","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lExperience storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dying is painful, isn't it? As your precious experience is lost. But fear not, there is a solution! By using an experience obelisk, you are now able to store all your collected experience in a safe location."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockExperienceObelisk","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":168,"preRequisites":[165],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lA soul vessel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new machine, you need something to actually capture souls from monsters. The soul vials are reusable vessels. Just right-click any living entity to steal its soul."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemSoulVessel","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.6000000238418579,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.7999999523162842,"HungerOverhaulCheck":5},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27127316897707,"UUIDLeast":182634832621765120,"Amount":0.012908903102869372,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":1.8,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":26,"id":"Thaumcraft.TaintedCreeper","Fuse":30,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-1910302092572580900,"Health":26,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[10,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27127316341783,"CustomName":"\"\"","Pos":[222,4,1471],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"ExplosionRadius":3,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.5,"ezModsApp":1,"smi":1,"WITCInitialHeight":0.800000011920929,"HungerOverhaulCheck":4},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":6,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.4,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27178571439803,"UUIDLeast":-4879626912252909000,"Amount":-0.03553818567513433,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":2.7,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":6,"id":"Thaumcraft.TaintedChicken","Motion":[0,0,0],"Leashed":0,"UUIDLeast":2120839428921693200,"Health":6,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[167,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27178571304768,"CustomName":"\"\"","Pos":[223,4,1473],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.8999999761581421,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.2999999523162842,"HungerOverhaulCheck":8},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":36,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.27,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27170415539521,"UUIDLeast":55055077136148616,"Amount":0.05541744393087603,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":5.4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":36,"id":"Thaumcraft.TaintedCow","Motion":[0,0,0],"Leashed":0,"UUIDLeast":7340828040503510000,"Health":36,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[-124,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27170415457974,"CustomName":"\"\"","Pos":[220,4,1475],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.6000000238418579,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.7999999523162842},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.3,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27159316027577,"UUIDLeast":3351821129110176000,"Amount":-0.02643265509317006,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":3.6,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":26,"id":"Thaumcraft.TaintedVillager","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5486064703714104000,"Health":26,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[153,-23],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27159315945153,"CustomName":"\"\"","Pos":[221,4,1475],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":169,"preRequisites":[165,141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockPoweredSpawner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThe creation of life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By utilizing large amounts of energy, you're able to re-activate those broken spawners you may have found in the past. If you haven't, you should get one of them now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBrokenSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockPoweredSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":170,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSpecific enchantments","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanting books is, just as it is for items, random. And that is annoying if you need a specific enchantment on your tool or armor. Now there is a way to actually select enchantments, for a price, obviously."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":171,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierThree","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAlmost like steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next-gen protection against nasty zombies, creepers and other \"stuff\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierThree","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierThree","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":172,"preRequisites":[171],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierThree","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lProtect your base: Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we're talking: Grenades! The next in big badda boom hardware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierThree","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierThree","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierThreeItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":173,"preRequisites":[172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierTwoBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTier 3 base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More storage, more power, and a lot more slots for possible upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierTwoBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":174,"preRequisites":[173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:relativisticTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThis is relatively useful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For... some things... maybe... At least it is fun to watch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:relativisticTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":175,"preRequisites":[173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:grenadeTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFire in the hole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah, there is nothing like an explosion and the certainty that your enemies have been blasted into tiny pieces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:grenadeTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"openmodularturrets:grenadeCraftable","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":176,"preRequisites":[160,860,1014,1612,1231,1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main goal here is to get a tier 2 rocket, and reach Mars. You also might want to rethink your power setup, as more and more machines will be upgraded. This quest set will teach you about a couple of options you have regarding power production.\n\nMultiblock goals includes quests for the large gas turbine, large combustion engine, and multiblock ore drill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":177,"preRequisites":[161],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:sacrificialKnife","Count":1,"tag":{"sacrifice":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"*Poke*","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get some blood. You will have to start with your own..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sacrificialKnife","Count":1,"tag":{"sacrifice":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":178,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It's storage time!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've reached the High Voltage age, you might consider starting to work on your applied energistics system. It might be small, and it might be tricky to power it at first, but it's really worth the effort. You should start by getting all 4 different inscriber patterns."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":13,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":14,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":19,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":179,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find them all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a lot of asteroids on the surface, but there are more underground. In order to find those, you need a compass. The compass will only tell you the chunk has an asteroid in it, with your ancient ore finder wand, you can get a better idea where in the chunk the meteor is hiding.\n\nFor more details on AE2, check out https://tinyurl.com/GTNH-AE2"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":180,"preRequisites":[1316,1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.16k","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Middle tier storage cell, which can contain 16,384 bytes of storage. 16,384 bytes of storage can hold 2,032 stacks of a single item, or 1,040 stacks, while holding 63 different items. The 16k storage cell uses 128 bytes of data to store a single type. When placed inside a drive or chest will consume 1.5 ae/t. Must be in an ME Drive or ME chest to be usable. You can remove the 16k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.16k","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":181,"preRequisites":[1290],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluix crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not \"flux\"! Even if the color is the same. You need to add redstone and netherquartz to a charged certus crystal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":64,"Damage":0,"OreDict":"dustRedstone"},{"id":"minecraft:quartz","Count":64,"Damage":0,"OreDict":"crystalNetherQuartz"},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":128,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":182,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockMolecularAssembler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Applied crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting can be a pain. So why not automate it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockMolecularAssembler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""},{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":52,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":183,"preRequisites":[178],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting your first circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making the circuits is quite different from what you're used to, so it's advised to check NEI for the new recipes. Get 8 of each circuit for now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":23,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":24,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":184,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To have access to your applied energistics network from your entire base, you'll need cables. A lot of them. For now, the basic ones will do, but eventually, you'll end up using dense cables and p2p channels. Glass and Covered cables are functionally identical, just different in looks. Each can carry 8 channels. Quartz fibers don't carry channels but can carry energy. This is useful for providing power from your main network to independant subnetworks.\n\nYou can also color your cables - cables with different colors will not connect, so those can be used to expand network capacity by running parallel cables. Only fluix colored cables connect to all other colors. Later it will probably be more efficient to use P2P channels to jam a bunch of channels into 1.\n\nAnchors are like covers, keeping things from connecting when you don't want them to."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":64,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":24,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":185,"preRequisites":[1290],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":380,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Terminals everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME Terminal is a HID which gives you access to an ME network's networked storage.\n\nIt has the ability to sort and search, as well as filter by using a view cell. It requires a channel to function.\n\nCan be upgraded into an ME crafting terminal.\n\nThe ME crafting terminal is the upgraded version of the ME terminal which has an integrated crafting grid with access to an ME network's networked storage.\n\nLike the ME terminal it also requires a channel to function.\n\nGives remote access to all interface pattern slots on your network separated by which type of machine they are on. It will show the type of machine in the terminal, however you can name the ME interface in the inscriber or an anvil to alter the name displayed in the ME interface terminal.\n\nCombined with the fact that you can toggle if the interface shows up at all this gets you control over your interface terminal's display."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":380,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":360,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":480,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":360,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":480,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":186,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDimensional goal: Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mars has many new ores you need to find like tungsten, uranium and plutonium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.mars","Count":8,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":187,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§k§l§r§a§lDimensional goal: Phobos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A smaller goal, as the main goal is Mars. But you'll find different ores on this moon also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":1,"OreDict":""},{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":188,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDimensional goal: Deimos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A smaller goal, as the main goal is Mars. But you'll find different ores on this moon also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:deimosblocks","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:deimosblocks","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":189,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lHEV Mark III protective system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some things are dirty, and some things are even dangerous. You'll play with nasty stuff here, so better prepare yourself for the worst.\n\nSome items will give you a Radiation debuff without protection. How fast you get it depends on the item. Some items will give you enormous amounts of time with it, which will kill you because there is no way to get rid of it. \n\nOther items will give you a general sickness with many debuffs, but not Radiation. That can be removed the normal ways, Milk, Terrawart, Aqua bees, etc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemArmorRubBoots","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":190,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lAppropriate power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Whether you used magic, steam, oil or biogas for power until now, you will run into problems as you advance to higher tiers. So you need to upgrade your power grid, at least for your blast furnaces. So let's start with something more powerful: A nuclear reactor!\n\n§4Hint:\nThe multiplier is set to 10x in this pack. That means your nuclear reactor is 10 times more efficient.\n\nFor some ideas on nuke setups, check out https://tinyurl.com/GTNH-Nukes"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},{"id":"IC2:itemFuelRod","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":191,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumSimple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 2 fuel: Uranium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just \"regular\" uranium fuel, nothing special about it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumSimple","Count":2,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":192,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXSimple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 3 fuel: MOX","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highly radioactive, the most powerful fuel rod you can get. Burns twice as fast as uranium, but produces massive amounts of power. Rumors are, that peaks up to 11k EU/t are possible..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXSimple","Count":2,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":193,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 1 fuel: Thorium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The weakest of all rods, but very easy to produce, very easy to keep cool and runs twice as long as uranium. A perfect \"fission and forget\" power source.\n\nHint:\nAfter they are used up you can recycle them to get Lutetium which is used for make americium in the fusion reactor.\nAmericium is needed for top tier materials later, so start stockpiling now. Plus, you get power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Thoriumcell","Count":4,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":194,"preRequisites":[195],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMonitoring your reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's important to monitor your reactor (Or just fancy to have a big screen somewhere...). So now that you've gained knowledge about the available fuel rods, you can start to build yourself a power plant. Here is something to help you out.\n\nUse the sensor kit on the block you want to monitor, then put the sensor card in the display panel. Next select which lines of information you want to display."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},{"id":"IC2NuclearControl:blockNuclearControlMain","Count":5,"Damage":5,"OreDict":""},{"id":"IC2NuclearControl:ItemRemoteSensorKit","Count":1,"Damage":0,"OreDict":""},{"id":"IC2NuclearControl:ItemUpgrade","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":195,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockReactorChamber","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lIncreasing the capacity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To unleash the full potential of your reactor, you have to attach six reactor chambers to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockReactorChamber","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":196,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMove the heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reactors heat up, well the rods do, so you need to \"move the heat away\" to somewhere else. You should get one of each, and try to figure out what each individual heat exchanger does, in order to figure out a good setup."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:reactorHeatSwitch","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchCore","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchSpread","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"tag":{},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:reactorHeatSwitch","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchCore","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchSpread","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchDiamond","Count":2,"tag":{},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":197,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorVentDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lVenting heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can't just move the heat around, eventually you need to get rid of it. Just like the exchangers, there are different types of vents, each of them has a certain usage you'll need to find out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:reactorVent","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentCore","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentGold","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentDiamond","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentSpread","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:reactorVent","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentCore","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentGold","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentSpread","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":198,"preRequisites":[192],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXDual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":199,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuit exhaling dusts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The QED is used for stuff like the ender quarry (yay!) and advanced mob-protection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:endConstructor","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":200,"preRequisites":[199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:magnumTorch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lAdvanced mob-protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like the chandelier, the magnum torch prevents monsters from spawning. However, its range is quite big, so a single one might be enough for your entire base.\n\n§4Don't forget, monsters can still follow you home!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:magnumTorch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":201,"preRequisites":[199,1412,1680,1213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAutomated mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The QED enables you to assemble the most convenient device for mining: The ender quarry.\n\nAs 0lafe says, \"This small black box is life-changing\" and \"Sympathy for the amount of dense obsidian plates you need.\"\n\nGuess you better get compressing!\n\n§4NOTE: It's best to place your quarry and markers on orevein boundaries. This way you start getting ores right away, especially from planets and the deep dark dimension."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":202,"preRequisites":[201],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If an ender quarry won't satisfy your needs for MOOORE. A speed upgrade is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":203,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":460,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bundled AE channels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"P2P tunnels. You will need a lot of them! These are fancy fluid/item pipes that will transport fluids or items from one \"point\" to \"another\". Items transportered will not show up on crafting terminals etc, they just use the network as transport.\n\nThey can also pack up to 32 channels into 1 bundle and transport those to the destination p2p bus. Each P2P tunnel requires 1 free channel. The network carrying the P2P must be separate from the network with the channels. These P2P connections cannot be nested, but one transport cable can carry multiple P2P connections.\n\nA nice online guide can be found at https://tinyurl.com/GTNH-AE2 under P2P tunnels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":2,"Damage":460,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":204,"preRequisites":[186,205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Load and unload the rocket","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What use has an automated rocket, if you can't load and unload it with automation?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":205,"preRequisites":[186,1449],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cargo rocket: For the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No need to fly to distant planets on your own, just to grab ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":3,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":206,"preRequisites":[199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockMolecularTransformer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTurning A into B with C","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Molecular transforming at its finest! The most important recipe here is sunnarium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockMolecularTransformer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":207,"preRequisites":[208],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierThreeBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTurret base tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Even more range, power and upgrade slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierThreeBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":208,"preRequisites":[211],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierFour","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lProtect your base: Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The small parts for the powerful turrets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierFour","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierFour","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierFourItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":209,"preRequisites":[207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:teleporterTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMake love, not war","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For those who don't want to kill things. Just teleport them away, however this takes a large amount of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:teleporterTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":210,"preRequisites":[207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:rocketTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWhy grenades...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when you can use rockets? Yes, rockets! They search and destroy, and go off with a huge boom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:rocketTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"openmodularturrets:rocketCraftable","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":211,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierFour","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 4 fence and walls","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another upgrade for your walls. One more to go!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierFour","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierFour","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":212,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MoonStoneDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPulverize the Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Literally. You can grind the rock of most planets, to get a chance for higher tier metal dusts. Does consume quite a bit of power, but can really help you out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MoonStoneDust","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2081,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":213,"preRequisites":[176,861,1251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§b§l§1§2§3§4§5§4§6§7§8§9§a§b§c§d§e§c§b§lTier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"IV-Level. You will need tungstensteel for machines. Suggested planets and moons to visit: Mars, Phobos, Deimos. \n\nMake sure to get a set of Tungstensteel coils for your EBF.\n\nYou should've learned \"how to gregtech\" by now, if not go clean up the machine craters in your base...\n\nGT++ multiblock processing machines unlock at this tier. Make sure you have an Alloy Blast Smelter from EV tier ready to go."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":214,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:end_portal_frame","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lThis is the end.... ?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Basically the \"end\" of the conventional tiered game play. However! This is just the start of your journey, as you'll have access to even more powerful and awesome stuff. You have proven yourself worthy, and mastered the challenges up to this Tier. Congratulations!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":2,"OreDict":""},{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":215,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOn your way to Asteriods and other Tier 3 DIMs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier is defined as \"Asteroids-Dimension\" and \"8192 EU/t machines\". The machines now reached their full potential, and some asteroids may contain precious ores to improve your power generation."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Reach asteroid belt","range":-1,"index":0,"dimension":30,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.asteroidsBlock","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":216,"preRequisites":[1665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1191,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l\"Clean\" energy..?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a reliable and powerful source of energy for your base. And why waste your time with a 2k generator? Go for a 8k one! \n\n§4Hint: It's probably a good idea to wear your hazmat suit before claiming your reward..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1191,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":23326,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":217,"preRequisites":[214,218],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"utilityworlds:uw_portal_void","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"§b§lFinal choice: Personal Dimension","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of mobs in your base? Want to build somewhere... different? Probably in a personal dimension? Then this is your chance. But choose wisely; You can only pick one option."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"utilityworlds:uw_portal_void","Count":1,"Damage":0,"OreDict":""},{"id":"utilityworlds:uw_portal_garden","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":218,"preRequisites":[214,217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"§b§lFinal choice: Loot","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Don't need a personal dimension, eh? Well, then you'll probably be happy with some extra loot. Choose wisely; You can only pick one."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":10,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":10,"Damage":8,"OreDict":""},{"id":"Thaumcraft:blockLootCrate","Count":10,"Damage":2,"OreDict":""},{"id":"DraconicEvolution:dezilsMarshmallow","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":219,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierFive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lAlmost unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Probably not required any more, but you made so many walls. So why not to get the best ones?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierFive","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierFive","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":220,"preRequisites":[219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierFive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lProtect your base: Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tough materials, for tough weapons. Railguns, and lasers, and... stuff. I assume you want a lot of those soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierFive","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierFive","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierFiveItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":221,"preRequisites":[220],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierFourBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lTurret base Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last one, I promise. Used for the most powerful turrets available. You wonder if they might help you take out some more... \"Dangerous\" enemies?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierFourBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":222,"preRequisites":[221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:laserTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPewPew!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Requires no ammo, but still does a ton of damage. All you need to do is feed it power, a lot of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:laserTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":223,"preRequisites":[221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:railGunTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lRailguns, what else","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Massive power, and a wonderful sound when they fire. I recommend to use upgrades to increase range and damage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:railGunTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"openmodularturrets:ferroSlug","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":224,"preRequisites":[14],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Strange things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You came across those weird trees, they seem to be more than just plants. You felt something... different. There is something going on, but you are not sure what exactly yet. But you're sure you'll find out very soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":225,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Searching for answers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Last night you had a dream. A dimension, so strange and different, exactly like the sapling you found. You decided to go there and look for answers.\n\nFirst you need a portal crystal to open it up. And no, a diamond is not enough."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Twilight arrival","range":-1,"index":1,"dimension":7,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":226,"preRequisites":[1096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemThaumometer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See the unseen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Everything is made of 6 primal aspects. Those aspects can be combined to form compound aspects, but in the end, there are only 6. Like the infused shards you found. You noticed that those shards start to vibrate when you bring them next to something that is made of the respective aspect. Maybe you can create a device to actually \"scan\" items, and reveal their compounds? This could be very useful later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemThaumometer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":227,"preRequisites":[1778],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockTable","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tables to work on","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Indeed, the idea with the bookshelf did work. Now you need a nice table to do some research on, and probably something to infuse items with vis while crafting. Maybe you should try to smite a table with your wand."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:blockTable","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":228,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:waterSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloody water","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By sacrificing some blood to the water spirits, they'll grant you some of their precious element."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:waterSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":229,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":541,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This whole place here is filled with magic. No matter where you look at, it's just everywhere. You wonder what happens to regular stone if it's exposed to large amounts of magic for such a long time. Maybe it's time to go mining?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":543,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":542,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":545,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":541,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":544,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":540,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":230,"preRequisites":[225,224],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are sure that this place will give you all the answers you are looking for! To continue, you need something to handle the magic energy called \"vis\". Guess it's time to craft your first wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:oakStick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TwilightForest:item.nagaScale","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"ordo":0,"perditio":0,"aer":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":98,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":231,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemThaumonomicon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tome of knowledge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All the things you've discovered so far, you need to write them down. But you are lazy, and you have a wand, so why not try a magical way to \"write down\" your research? You wonder if you could enchant a book with your wand, so that it will keep track of your progress... You should try that on a bookshelf!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemThaumonomicon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":232,"preRequisites":[226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Improving your wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wand does a great job in storing and releasing vis as you please. However, those iron caps are... Weak. If you don't pay enough attention to it, it might hurt the node. Maybe you should try to improve it with caps made out of a more valuable material. Like.. gold, perhaps?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":233,"preRequisites":[229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you found all six primal types of infused stone, you need to break those up in order to get the shards. The easiest way to do that, is to throw these stones in your Forge Hammer. Later when you have a Sifter, you can sift purified ores for more shards. An autoclave can turn shard dust into a shard. Maybe there is a magical way to do the same thing?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":16,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":234,"preRequisites":[232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A \"greater\" wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While doing all your research and mining of these infused stones, you had an idea how to actually use the wood of a Greatwood tree to make a new wand. Actually, it turned out to be pretty simple, but you lacked one important thing back then: vis!. The vis makes sure the wood doesn't lose it's magical conductivity while forming the rod."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":235,"preRequisites":[232,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unfortunately, your aluminium screws don't work with the greatwood rod. Somehow, the wood seems to repel the material. Luckily, you already have a blast furnace, so you can get a better material than aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":236,"preRequisites":[232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LichBone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A more powerful \"scale\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The naga scales are weak, they can only hold a very limited amount of vis. You need a better, more powerful component to store vis in your wand. You've heard rumors about an evil wizard in the Twilight Forest. Maybe he has... something... that can be used?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LichBone","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":237,"preRequisites":[798],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Stores 50 vis\" wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now combine your new wand, and be more powerful than before! You have a feeling, that this new wand will come in handy very soon(tm).\nMake sure you use the NEI 'U' command on the gold caps to find the correct GT:NH recipe for the wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"cap":"gold","rod":"greatwood","ordo":0,"perditio":0,"aer":0},"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":4,"Damage":95,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":238,"preRequisites":[239,237,240],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fuuuuuu...(sion)!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your arcane table does a great job with infusing primal vis into items while crafting. However, you feel that there must be more. What if you could infuse items with all kinds of magic aspects? The possibilities are endless..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockStoneDevice","Count":6,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":239,"preRequisites":[251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Yet another brick in the wall...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A magical one this time. You are on your way to infusion, and you need 8 of those in total."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":240,"preRequisites":[255,256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia cooking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get essentia, you need to dissolve items. Obviously, you only want to dissolve those items you don't really need, and only those with essentia you need to craft things.\n\nMake sure you keep your furnace as empty as possible. If it fills up with essentia, it can cause a large TPS drop."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockJar","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":241,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not for soup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At least not for edible soup, but for essentia slurry. Get yourself a Cauldron and give it a solid whack with your wand. Place the netherrack under the crucible and set it on fire with the flint and steel. Now you need to fill it with water (works with pipes too = auto refill)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":242,"preRequisites":[233,1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Balanced shards sdrahs decnalaB","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining all six primal aspects in a crucible, you are able to make balanced shards. They can be ground up into \"Salis Mundus\", an absolutely crucial thing to have, trust me!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":10,"Damage":6,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":10,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":243,"preRequisites":[242],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crystal clusters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You, as a Thaumaturge, like shiny things. And what could be more shiny than a cluster made of those shards? You totally should get one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":244,"preRequisites":[245,246,247,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"ignis"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"ignis"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":245,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockAiry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The choice...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By now, you should've collected a few (or a lot) of locations for aura nodes to get vis from. You might also have noticed, that you probably are low on a certain aspect, like ordo or ignis. Well, good news. In exchange for some crystal clusters, I will give you one of my old nodes. They are all pale, but they will help you out. You may only choose one, so think twice before you make your decision."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":6,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":246,"preRequisites":[245,244,247,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"terra"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Terra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"terra"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":247,"preRequisites":[245,244,246,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"perditio"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Perditio","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"perditio"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":248,"preRequisites":[245,244,246,247,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"ordo"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Ordo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"ordo"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":249,"preRequisites":[245,244,246,247,248,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"aqua"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Aqua","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"aqua"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":250,"preRequisites":[245,244,246,247,248,249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"aer"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"aer"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":251,"preRequisites":[243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not just for decoration","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, they look pretty, but they serve a much more important purpose: Channeling vast amounts of vis and essentia. This might be useful soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":92,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":252,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:cake","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"This is the end...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...of your apprenticeship. You have mastered all 6 primal aspects, you mastered the weak and strong infusion of essentia and vis, and you've already made your adept wand. But be warned, young one. The further you progress, the more darkness, and evil will tempt you to follow the forbidden ways of magic. I have seen things... weather changing, random teleportation, or even a Wither tearing its way into our universe right next to someone. Be careful, my friend..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":253,"preRequisites":[254,240],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockBoiler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Turning liquids into essentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What a simple idea. So many people wasted tons of buckets just to get aqua from water, or sano from milk. Why didn't they just dissolve the liquid itself? Stupid ones..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockBoiler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":254,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia filtering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This nifty little device will filter out essentia. Once it has received a single unit of any type, it will only accept this type until it is completely empty. How convenient. You can place more than one on top of an alchemical furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":255,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An alternative to torches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And lava! It's an excellent magical heat source."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":256,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Way better. To be fair, it's a waste to use coal itself, but it also works with charcoal and lignite dust. And it speeds up the dissolving of items in an alchemical furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":257,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Save the squids, we must","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A very convenient way to make PETA activists happy and get ink at the same time. \n\nHint: The essentia in those roses might be useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32414,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":258,"preRequisites":[259],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite... lava?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, it does need some ignis centi-vis, but hey, it's free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:everburnUrn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":259,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:everburnUrn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite water!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The struggle is over. You finally discovered a way to get infinite amounts of water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":260,"preRequisites":[252],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Adept thaumaturgy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have mastered the basics. Master warned me about forbidden magic, but it sounds so promising. I think a bit of forbidden stuff can't hurt..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":261,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.fieryTears","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An awesome magic conductor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These tears, WOW! I've never felt something so strong. Could it be? Could I use those to actually finalize my Silverwood wand?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.fieryTears","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":262,"preRequisites":[263,266],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":10000,"terra":10000,"ignis":10000,"cap":"thaumium","rod":"silverwood","ordo":10000,"perditio":10000,"aer":10000},"Damage":54,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An even better conductor?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More... I want MOOORE! There must be something even stronger than the hydra. Something older, more ancient."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":263,"preRequisites":[266],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.fieryBlood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It doesn't work","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I tried to combine the lich bones I had with this new wand rod. The result: A pile of ashes. It crumbled to dust within seconds. I need a better conductor. The hydra in the Twilight Forest has the ability to regrow an entire head! Her blood must contain a large amount of magic. I guess I need a bit of that for my next wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:misc","Count":1,"tag":{"display":{"Lore":["It crumbled to dust within seconds..."],"Name":"Lich Bone"}},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":264,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Obsidian rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using obsidian and some earth clusters, I'm able to create a magical infused rod, that will slowly recharge its own terra vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":265,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Creating a better wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This greatwood wand is nice, but it can only store 50 vis. Not enough to move nodes. My tries to use silverwood failed, but I've come across other mundane materials that I could use to make a new wand core."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":266,"preRequisites":[264,860,271,269,270,268,267],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27028,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"More durable screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Those stainless steel screws don't work on these rods. Due to the huge amounts of vis those wands can carry, the screws somehow \"melt\" away. I need a more durable material. I guess I will try titanium next."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"tag":{"display":{"Lore":["It.. melted..?!"],"Name":"Stainless Steel screw"}},"Damage":9306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":267,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quartz rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using nether quartz and some order clusters, I'm able to create a magical infused rod, that will slowly recharge its own ordo vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":268,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reed rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using sugar cane and some air clusters, I'm able to create a magical infused rod, that will slowly recharge its own aer vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":269,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blazing rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using a blaze rod and some fire clusters, I'm able to create a magical infused rod, that will slowly recharge its own ignis vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":270,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Icy rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using hardened ice and some water clusters, I'm able to create a magical infused rod, that will slowly recharge its own aqua vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":271,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bone rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forbidden? Pah. I don't care about headaches. By using bone and entropy clusters, I'm able to create an infused rod, that will slowly recharge its own perditio vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":272,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Best wand caps ever","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course! Thaumium! What could conduct vis better than... a magical metal?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":273,"preRequisites":[274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SnowQueenBlood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"She let go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This blood seems pretty common, but she had advanced magic abilities. I'm sure I can use this as a medium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SnowQueenBlood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27083,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":274,"preRequisites":[261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.carminite","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reactor material","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This stuff is interesting... Maybe I can use it as a wand conductor?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.carminite","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27030,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":275,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Centi-vis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many advanced machines require vis in order to do what they're supposed to. But using a wand as some sort of battery to transfer vis from a node to your machine didn't work as expected. What if you could rip open a node?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":276,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bring it home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably have a nice collection of bookmarked nodes. But running around to recharge your wand(s) isn't really the way an adept thaumaturge should get his required vis. Moving nodes is not that hard, but without doubt, you need something to protect them from each other."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":277,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated wand-recharge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So you found a way to gather nodes now. What about automated wand recharge? Wouldn't that be extremely convenient?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":278,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Centi-vis stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You totally should get yourself some centi-vis things to transport and use the vis from stabilized nodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockMetalDevice","Count":8,"Damage":14,"OreDict":""},{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":279,"preRequisites":[280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockLootCrate","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The dark realm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We found the way... my precious. We found it! Only need 4 tasty eyes, and some magic to open the door. The secret door, they didn't see it. Hehehe! All the time. It was there... Aaaall the time!"}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Visit \"Outer Lands\"","range":-1,"index":0,"dimension":50,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":280,"preRequisites":[281],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"They see me, they watch me","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eyes. Yes. Eyes! I need eyes, my precious. Not spidery ones, no. Nasty hairy things. Don't taste good. Eldritch eyes! I will rip those from their bodies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":281,"preRequisites":[282],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Really (Really!) dark magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fools. FOOLS I say! They know nothing! This book will guide me, yes. Yes it will, my precious. It will lead us to even more POWER!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":282,"preRequisites":[289],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetCultistRobe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secrets","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I can feel it. Yess. Yeeeess. We will gain more power nigh. Nigh! Yes. My precious. The voices gave me a hint, there is a dimension filled with unbelievable sources of magic energy. I must go there. I must! The crimson people know the secret. I will rip them aparrrt.. They will tell me!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":4,"taskID":"bq_standard:hunt","target":"Thaumcraft.CultistKnight","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":283,"preRequisites":[279],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find the key","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No, nooo! They have hidden it! Must find the keeey. Must find it! We need the tablet to open the door my precious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":284,"preRequisites":[283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of creation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What... What am I doing here? Where am I?! What is this place?! Oh those headaches... (It seems that the pulsating pearl you just found cured your brain from... something. Something old, probably some kind of trap to keep away unworthy ones.)\n\n/iskamiunlocked will tell you if you have successfully unlocked Kami. If not, try researching the Thaumium Crowbar and the Cursed Spirits Blade."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:blockLootCrate","Count":5,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":285,"preRequisites":[252],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":17,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Concentrated darkness","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For some reason, you decided to infuse darkness into a seed. It appeared to be promising. For what? You don't know..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":286,"preRequisites":[287],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetVoidFortress","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Armor\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This new metal, it's so... appealing. You feel comfortable while holding it, so why not get yourself some armor? What could go wrong? It sure will protect you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemHelmetVoidFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemChestplateVoidFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsVoidFortress","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":4,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":287,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockEssentiaReservoir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What could possibly go wrong?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"256 essentia in one block! Now that is what I call storage. Does make weird sounds, but I guess it's nothing special..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockEssentiaReservoir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":288,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.something","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Let's try this","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mortals. Pah. What do they know about REAL power. The voices tell me I need to focus on alienis and tenebrae if I want to advance. So what about food?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.something","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":289,"preRequisites":[286],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusHellbat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An appropriate weapon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"My new armor needs an appropriate weapon to go along with. I should make something to fire creatures of the nether at enemies!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusHellbat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemSpawnerEgg","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":290,"preRequisites":[272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetFortress","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Improved armor: Ninja style","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get some decent armor. With this, those infernal monsters won't be as much of a pain as they are now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemHelmetFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemChestplateFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":4,"id":34},{"lvl":2,"id":154}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":291,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Little helpers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A state of the art thaumaturge doesn't work any more. He has little helpers. Golems can and will do all the things for you, just as you command them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"tag":{"gadomancy":{}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":292,"preRequisites":[291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Slightly better","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wood is somewhat better than straw. They are still to be considered weak, but an ideal little cutie for farms."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":293,"preRequisites":[292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sticks and stones...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...will break your bones! These guys are hard as rock (Insert audience laugh here) and will protect your claim as good as possible."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":294,"preRequisites":[293],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The best of all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highly durable, can carry a lot of items and is considered the \"top tier\" golem. But you are sure there is more...\n\nYou'll need to chisel a thaumium block to get the right kind you need for the golem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"tag":{"gadomancy":{}},"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":295,"preRequisites":[291,272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, you could just go with gazillions of jars, but it's way more convenient to store essentia in a chest or barrel. Isn't it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""},{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemPlacer","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":296,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ordo"}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The basic elements","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course you know where and how to get the basic essentia types. Do you..?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ordo"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"aqua"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"terra"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ignis"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"aer"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"perditio"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"radio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"superbia"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"alienis"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"nebrisum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"strontio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"tempus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"luxuria"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ira"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"spiritus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"mortuus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"venenum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"infernus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"tenebrae"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"corpus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"exanimis"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"nebrisum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"superbia"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"strontio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"luxuria"}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":297,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia transmission","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What if... you could send essentia from a different location to your infusion matrix? You could finally get rid of all those jars around your altar. Also, there might be an additional use for those mirrors.\n\nYou have an intuition that a more energetic metal would allow for very interesting uses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":298,"preRequisites":[297,299],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockEssentiaLocusAggregator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"(Almost) automated essentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining the essentia locus, the essentia mirror and an essentia aggregator, you are now able to transmit essentia from almost anywhere. Fancy essentia-storage facility incomming!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockEssentiaLocusAggregator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalEye","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockJar","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":299,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:crystalEye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia monitoring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Manually checking your jars can be tedious, especially if you want to infuse a bunch of stuff at once. Luckily, the essentia locus can help you with that, as it monitors all jars that have been targeted with a crystalline eye."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockEssentiaLocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalEye","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":300,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:TaintShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cleaning the goo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you do more and more infusions, you're getting tired of removing all the flux that's generated. The shovel of the purifier will help you cleaning up flux, and is a must-have."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:TaintShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":301,"preRequisites":[272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:fireFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"One does not simply...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...play with magic. Be warned, these fires are very dangerous! But who doesn't want a patch of snow in the nether?\n\n�4Fire spread is disabled in the configs of servers to prevent massive lag and world destruction."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:fireChaos","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireAir","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireFire","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireEarth","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireWater","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicTinkerer:fireOrder","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":302,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Useful plant life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While regular plants are mostly used to make food, you are wondering if you could get some... \"more useful\" plant life going..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:redlonSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"thaumicbases:lucriteSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"thaumicbases:lazulliaSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"thaumicbases:knoseSeed","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"thaumicbases:redlonSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:lucriteSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:lazulliaSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:knoseSeed","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":303,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:overchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pushing the limits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular enchantments have a limit, like III for Fortune. Utilizing magic, you should be able to bypass that limitation, at least a tiny bit; Eventually creating enchantments like Fortune IV. It comes with limitations, but your book shall tell you more about those."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:overchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":304,"preRequisites":[303],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:enchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanting like a pro","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a device where you can actually choose which enchantments you want to have. Powered by vis, it can create the most powerful combinations one could imagine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:enchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":305,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:cryingObsidian","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crying obsidian...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...it mourns the dead. This might come in handy for some cases. By placing 2 on top of each other, you're able to set your respawn point to that location, without the need for a bed. It's up to you to imagine the possibilities..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:cryingObsidian","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":306,"preRequisites":[302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Useful trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like plants, there are trees that will attract various friendly and \"not so friendly\" creatures. (No warranty when placed in desolated biome!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":307,"preRequisites":[284],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of gods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The pearl you've found has some interesting effects on you. Not only are the voices almost gone, somehow it has also expanded your perception. You can \"feel\" the magic around you. This is definitely worth some further investigation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":308,"preRequisites":[350],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":2000000000000},"Damage":32598,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The final goal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thanks to your help I have managed to create the ultimate energy source: An encased wormhole that drains energy from a synthesized pocket universe, to the point when it reaches heat death. I have no use for it, so you may have it. Thank you for making my dream come true!"}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":2000000000000},"Damage":32598,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":309,"preRequisites":[307],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Shards of opposite worlds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This morning, you just wanted to facepalm yourself to death. During your past journeys, you have already seen strangely colored shards. But unlike the primal shards you use every day, these seem to contain the raw essence of their dimension. Heaven and Hell... so to speak. Two opposite worlds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":310,"preRequisites":[311,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothHelmGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to the fullest extent, you'll have to unleash its hidden power. This is not an easy task; But it's worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothHelmGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":311,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable cowl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothHelm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":312,"preRequisites":[313,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothLegsGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothLegsGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":313,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothLegs","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable leggings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothLegs","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":314,"preRequisites":[315,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothChestGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothChestGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":315,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable robe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":316,"preRequisites":[309],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining ichor with enchanted fabric, you've created something that could be compared to mithril. Light as wool, but durable like steel. Also, it conducts magic energy like nothing else you've seen before. This seems to be an excellent material for a new type of armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":1,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":2,"OreDict":"ingotIchorium"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":317,"preRequisites":[318,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothBootsGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothBootsGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":318,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable boots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":319,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable axe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An axe made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":320,"preRequisites":[309],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused Thaumium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining ichor with some thaumium, the metal turned into something new; Something extremely durable but also soft. Its magic conductivity is incredible"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":5,"Damage":2,"OreDict":"ingotIchorium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":1,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":2,"OreDict":"ingotIchorium"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":321,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorSword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable Sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A sword made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorSword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":322,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A pickaxe made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":323,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable shovel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A shovel made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":324,"preRequisites":[321],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorSwordGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorSwordGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":325,"preRequisites":[323],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorShovelGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorShovelGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":326,"preRequisites":[319],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorAxeGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorAxeGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":327,"preRequisites":[322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPickGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPickGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":328,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPouch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hold all the foci","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hermione's first years bag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPouch","Count":1,"tag":{"Inventory":""},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":329,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Where do the items go?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's probably better not to ask..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:blockTalisman","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":330,"preRequisites":[331],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusRecall","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magical waystones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These are used to mark locations in order to teleport around"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusRecall","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":331,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:warpGate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why walk...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when you can teleport? This little device allows you to teleport around almost for free. Is it cheaty? Is it OP? Nope, it's a celestial gateway!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:warpGate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":332,"preRequisites":[241,1560],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fire burn and...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get started with your basic witchery needs, you need a witches oven. It requires anointing paste, which you will need an MV mixer to make.\n\nThe witches oven is used to get the most basic ingredients for your recipes - Fumes.\n\nThe oven is able to capture the by-products produced in the cooking process. Activating the oven to show the interface screen, you will see an additional slot to the right of the fuel slot. Clay jars must be placed in this slot. If there are clay jars present when something is cooked, there is a chance a by-product will be captured in one of the jars. These by-products are important ingredients in other recipes. If there are no clay jars in the oven when something is cooked, no by-products will be produced.\n\nUpgrading an Oven\n\nAn oven can be upgraded by placing either a Fume Funnel or a Filtered Fume Funnel to the left and right of it. Each Fume Funnel will increase the cooking speed by and additional 10 per cent (over a furnace) and increase the chance of a by-product being produced by and additional 25 per cent for a Fume Funnel or 30 per cent for a Filtered Fume Funnel.\nAn Oven can use at most two upgrades and they must have the same facing as the oven.\n\nA fully upgraded oven will therefore cook at 130 per cent speed (compared to a furnace) and have a chance of a by-product of 90 per cent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":153,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":20,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:sapling","Count":30,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":333,"preRequisites":[334,1575],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Offerings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For all your offering needs. And of course, it looks fancy!\n\nAn altar is created by placing six altar blocks in a 2x3 pattern; you will know it is correct when a red cloth appears over the top of the altar.\n\nActivating the altar by right-clicking on it will bring up a screen showing how much power the altar has collected, how much it can collect and its current recharge rate. It is important to check that there is sufficient available power to perform a given rite or use a distillery or kettle recipe.\n\nThe maximum amount of power available is determined by how many natural items are in the vicinity of the altar: dirt, grass, trees, plants, etc. all contribute; stone and sand do not. The important thing is to have a diverse mix of different plants, trees and crops (plants from other mods are supported to an extent as well).\n\nCertain objects (or foci), placed onto an altar, will boost the focusing capabilities of an altar, either improving the amount of magic it can focus, the rate at which it replenishes or the range it can distribute power. Only one of each type of item (skull, chalice, etc.) will have an effect. There may also be other less savory foci that dark magic practitioners could make use of."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"witchery:arthana","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":334,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"...Cauldron bubble","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second thing you'll need is a cauldron. It is used to craft most of the basic items, like mutandis.\n\nIt is made by placing a regular Cauldron in the world, and then using Anointing Paste on it.\n\nTo brew a potion, cast a ritual or create an item, the cauldron must first be filled with water. This can be achieved by using three buckets of water on it, pumping water into it using pipes, or by using a Dispenser containing a Brew of Endless Water.\n\nOnce a cauldron is full of water, it must boil. Lighting a fire beneath the cauldron is the only way for this to happen. Using a netherrack block will guarantee the fire does not go out, although if it does go out, it may be set to boil again without any consequences (unlike brewing in a Kettle!).\n\nWhen the water is boiling, ingredients may be added to the Cauldron (one after another), to create the desired effect. The book, Witches' Brews gives a complete overview of all ingredients and what they can do when added to a brew."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":335,"preRequisites":[1567],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't touch the needle!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While having not many recipes by itself, the few it has are rather important for your further witchery progression."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":20,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":336,"preRequisites":[333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Probably usable for soup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But its main purpose is to brew potions and infusions.\n\nA kettle must be set up in the correct way, before it may be used. \n\nFirstly, a fire must be set under the kettle (netherrack is best for this, but wood will do just as well). \n\nNext the kettle must be filled by using a Water-filled Bucket on it. \n\nThirdly, each of the six ingredients for the brew or infusion must be thrown into the kettle, one at a time (the liquid will change color according to the recipe being used). \n\nFinally, a glass bottle must be used on the kettle to bottle the resulting brew, this must be done multiple times depending on the recipe.\n\nIt is important to keep the fire going constantly while the recipe is being prepared, otherwise it will be ruined. Swirls coming from the kettle is a sign all is well, black smoke (and brown liquid) indicates the brew is ruined. When a brew is ruined, the kettle must be emptied with a glass bottle, or just filled with more water, and the whole process repeated.\n\nWhen a brew is complete, the liquid will be the color of the resulting brew and will splutter (in addition to white swirls).\n\nSome recipes will require magical energy from a nearby Altar before they are bottled. If the brew is bottled when insufficient energy is available, the brew will be ruined. Black swirls coming from the Kettle is a good sign there is not enough power. A kettle must be within 14 (to 16) blocks of an Altar in order to obtain power from it (it can obtain power only from a single altar)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":22,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":337,"preRequisites":[334],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:brew.fuel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't shake it too much","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike nitroglycerin, this stuff doesn't explode. But you still shouldn't shake it too much..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:brew.fuel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":3,"Damage":22,"OreDict":""},{"id":"witchery:seedsmandrake","Count":3,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":338,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Spirit coin transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Potion of Spirit can only made in the spirit world. Wondering how you can get your stuff like the Kettle, Spinning Wheel or Cauldron to the spirit world? Well you can bypass it probably on servers with the enderchets but for single player or a server without any enderchest you can transfer a few coins to the spirit world and buy some stuff. Don't claim the coins until you have already passed to the other side.\n\nYou have already collected a few coins in quests. Let's transfer them now and save it in a chest.\n\nIt's a repeatable quest so you can do it as long you have enough coins."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":339,"preRequisites":[1571],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Circle magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For circle magic, you need... a circle, obviously. There are 4 types of chalk you can use, and you'll need all of them to proceed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkheart","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkinfernal","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkotherwhere","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:circletalisman","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:ingredient","Count":10,"Damage":67,"OreDict":""},{"id":"witchery:ingredient","Count":5,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":340,"preRequisites":[339],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Portable power source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By infusing a stone with fiery magic you can create an \"Attuned Stone\". These stones can be used to link non-magical devices to the magical currents present..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":5,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":10,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":341,"preRequisites":[340],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":41,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying OINKment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You tried, it doesn't fly. And it also doesn't make any OINK sounds, sadly. But there might be some use for it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":41,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":342,"preRequisites":[341],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nimbus 1999","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not as good as its successor, the 2000'ish model, but still \"somehow\" useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":80,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":343,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Refined evil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Refined good was out of stock, sorry."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:taglockkit","Count":32,"Damage":0,"OreDict":""},{"id":"TConstruct:strangeFood","Count":32,"Damage":1,"OreDict":""},{"id":"witchery:glassgoblet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":344,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Witches hand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In case you don't like the infernal witches..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:gold_nugget","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:witchhand","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":345,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:seepingshoes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Seeping shoes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who needs an antidote? Now with free fertilizer!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":5,"taskID":"bq_standard:hunt","target":"witchery.demon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:seepingshoes","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":346,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:taglockkit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Taglock kits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Get a death protection poppet and get a stack of taglock kits. For all your trolling needs."}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:poppet","Count":1,"tag":{"WITCDamage":0},"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:taglockkit","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":347,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":39,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Drop of luck","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hard to get, even with that quest. But less of a grind..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"witchery.hellhound","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":39,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":348,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:canesword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: \"Cain\" sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Serves 2 purposes: Style. And... ah, yeah... Something useful for vampires."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblinmog","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblingulg","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:canesword","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":349,"preRequisites":[342],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:vampirehat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Be a vampire; Dress like a fancy person","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes it can be troublesome to get fancy clothing. However, if you prove yourself worthy, you get a set for free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:quiverofmog","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:gurdleofgulg","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:babashat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:vampirehat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampirecoat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampirelegs","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampireboots","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":350,"preRequisites":[354,356,357,359,361],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":17,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A few more things...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ok, I think I have everything I need to assemble the device. Can you assist me with some additional materials? I need to update most of my machines, as these exotic components you got me damaged most of them already. Don't worry, I have a list here.\n\nMost of my circuits burned to a crisp while I was trying to measure the conductivity of these soul and life shards. I need better ones.\n\nGood lord, these mysterious crystals have eaten away my diamond grinding head! How could that happen? Can you get me a better one?\n\nDo you see that pile of chrome over there? No? Neither do I. Because the machine was VAPORIZED! Good that you gave me 2 singularities, the first one... Well... Just get me a better casing, would you?\n\nIt seems, that the stabilizers need... stabilizing... But I'm out of field generators. Can you help me with this?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":10,"Damage":32088,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32723,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32672,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":351,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:writable_book","Count":1,"tag":{"pages":["Conceptual Device:\nThe Zero-Point-Module.\n\nHello my friend.\nI need you to help me with a pr"]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hello there","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've observed your pathway, and I have to say, I'm impressed. I might need your help soon, on a big project of mine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":10,"Damage":14,"OreDict":""},{"id":"GalacticraftMars:tile.mars","Count":10,"Damage":7,"OreDict":""},{"id":"GalaxySpace:ceresblocks","Count":10,"Damage":5,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":10,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":352,"preRequisites":[351],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":1000000000},"Damage":32599,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Power. So much power!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If only I could harness it... Well, hi there my friend. I need your help with a project of mine. I want to create an immense power source, but I have a few problems that I need to solve first. Will you help me? You will be rewarded."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":353,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.mars","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A problem that matters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need to open a wormhole. But for that, I need an immense gravitational field. One like those created upon the death of a massive star. But I can't really \"kill\" a sun for this. I need to compress matter somehow... \nBut... How?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":354,"preRequisites":[452],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Now that matters!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course! The matter condenser! How come I didn't think of that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":355,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I need a stabilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Opening the wormhole is one thing, but I need to stabilize it, so it doesn't harm anything. I guess I need something made of crystal. Why? Because I like it fancy. Find me a crystal-based, transparent material with immense power, would you?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":356,"preRequisites":[453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Shiny!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What in the world is this? This is amazing! I need more of these! They will be an amazing containment material for the wormhole!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":357,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I'm hungry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What... I work a lot! So get me some food please."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:creamofavocadosoupItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"harvestcraft:mintchocolatechipicemcreamItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":358,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It needs a power plug...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Given the fact that I will be able to craft this device, it needs some kind of \"plug\" to get the power out. I need something to conduct immense amounts of power. I thought about superconductors, but they don't fit with the crystal casing material I have in mind. I need 2 different crystals, one for positive and one for negative charge."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":359,"preRequisites":[454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Red and blue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Really? A red and blue crystal? How awesome is that! I think I will need 8 of each color, just to be sure."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":360,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"BiomesOPlenty:misc","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A casing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need something for the outer shell. Again, a crystal-based material would be best, because I like it shiny. I tested all crystals we know and none of them meet the requirements. I heard you have access to outer space? Can you try to find a suitable material while you're out there?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":361,"preRequisites":[455],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yes. Yes! That's it! Bring me more of this stuff! I probably need a lot of it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":362,"preRequisites":[464],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Beyond imagination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What is this? Draconium dust? I wonder if I could use this for something..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":363,"preRequisites":[362],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of dragons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey my friend. I got your sample, and I have to say, I'm amazed. This material has a lot of potential, but it's useless at the moment. I have an idea how to turn this into something useful, but I need you to help me with a few problems first.\n\nI need a good handful of that stuff for my research. Please get me some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":364,"preRequisites":[363],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First things first, we need a hull. I played around with your sample, and it seems that it reacts with every known material. It even attacks Iridium! It's completely harmless if it's in a box that is open, but as soon as I try to enclose it in something, poof. It breaks free. We need something stronger than iridium my friend."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":365,"preRequisites":[465],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense, denser, Neutronium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now look at this. This stuff is incredibly dense. Maybe this material will be sufficiently strong?\n\nThis looks promising. Send me some samples, and I will try my luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":366,"preRequisites":[457],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not a planet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This place is interesting. Maybe I should try to find new materials here..."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Pluto","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":367,"preRequisites":[365],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:tile.TFTowerTranslucent","Count":1,"tag":{"display":{"Lore":["Formerly known as Neutronium"],"Name":"Hull debris"}},"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Successful.. Or not?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Heh, neutronium. I didn't even know such a thing really exists. Unfortunately, the draconium dust was enclosed for... 5 seconds? But, it was a small success. \n\nOk let's travel to some planets and moons and look for the new material. I think we have to fly very far away for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:tile.TFTowerTranslucent","Count":16,"tag":{"display":{"Lore":["Formerly known as Neutronium"],"Name":"Hull debris"}},"Damage":5,"OreDict":""}]}]},{"questID":368,"preRequisites":[466],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Black Plutonium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This doesn't seem to be dense, but it's a material you haven't seen before. Maybe this could be the solution?\n\nBlack what? Huh, interesting. Send me some samples, I want to analyse it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":369,"preRequisites":[368],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We have a hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Surprisingly, this material is able to contain the draconium dust. It could be the radiation. Good job my friend!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":370,"preRequisites":[369],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:enderporter","Count":1,"tag":{"display":{"Lore":["The first sample. Wait.. Is that... a button?"],"Name":"Draconium Dust core"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconium Dust core","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've created a first sample of what I shall call \"Draconium Dust core\". Not quite the result I expected to be honest, but see for yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:enderporter","Count":1,"tag":{"display":{"Lore":["The first sample. Wait.. Is that... a button?"],"Name":"Draconium Dust core"}},"Damage":0,"OreDict":""}]}]},{"questID":371,"preRequisites":[370],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We need to control it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The problem is that the immense power of this dust is released all at once. We need something to control the vast amount of energies. I noticed that the dust starts to glow when it gets near an aura node. Maybe Thaumaturgy has the solution?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":372,"preRequisites":[458],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of primals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What else could control energies better than a focus of crystallized primal energy? With this little item, it should be possible to control the energies released from the dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":373,"preRequisites":[372],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mudball","Count":1,"tag":{"display":{"Lore":["A mix of draconium dust, a primordial pearl","and.. Is that a bone?"],"Name":"Primordial dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unforeseen consequences","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You haven't heard anything in a while from the technician. You have a feeling that something might have gone terrible wrong, so you went to his place to investigate. What you found was... nothing. A void. It seems that he tried to combine the pearl with the dust. What did he say? The dust reacts to aura nodes? Of course it does. It amplifies the energies by a thousand times. And giving it raw primal energy, good lord, what has he done. May he rest in peace..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:mudball","Count":1,"tag":{"display":{"Lore":["A mix of draconium dust, a primordial pearl","and.. Is that a bone?"],"Name":"Primordial dust"}},"Damage":0,"OreDict":""}]}]},{"questID":374,"preRequisites":[373],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I'm on my own now","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need to continue my research. I still think that this primordial pearl is the key to control the dust, but I'm not sure how. Maybe the pearl is just too strong? I should try to use something that's similar, but less powerful. It reacts to vis, so maybe.. I should try to make a wand focus with that pearl. That way, I could channel vis into the dust without actually combining both."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":375,"preRequisites":[376],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An interesting material","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This metal has quite interesting properties. It seems that it has absorbed some of the energy that exists in the End. While ender pearls are quite fragile, this metal is a lot more durable. However, the absorbed energy is not enough to teleport things around. But you might find a solution for this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":376,"preRequisites":[385],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gross, what is that...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's purple, and it smells like rotten eggs. But while staring at this unpleasant fluid, you had an idea. You can't reach the dust directly, but can you actually teleport something in and out the field? Might be worth a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":377,"preRequisites":[459],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An appropriate focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've tried a lot, and nothing was quite enough to activate the dust. Until now. You finally found a focus that is able to transmit enough power to cause a heavy reaction with the dust, but not enough to cause problems."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":378,"preRequisites":[377],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated draconium dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At least for a short period of time. The wand focus is powerful enough to activate the dust, but it will convert back to regular dust as soon as I stop feeding it with vis. If I only could contain it, surround it with a forcefield..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""}]}]},{"questID":379,"preRequisites":[378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32684,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The strongest forcefield","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to create a forcefield, I need to build myself a containment device. I will use only the best emitters I can afford. I will take no risks here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32676,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32686,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":380,"preRequisites":[379],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"display":{"Lore":["A pile of something that","used to be a machine hull"],"Name":"MAX Machine Casing (Molten)"}},"Damage":7129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not what I expected...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The outcome was... interesting. It did not explode, instead, the activated draconium dust generated a counter-field to mine! Unfortunately, the emitters could not stand the reverse energies, and melted. I was able to shut it off quick enough to save the machine casing (At least what's left from it...) And a couple of field generators."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32676,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"tag":{"display":{"Lore":["A pile of something that","used to be a machine hull"],"Name":"MAX Machine Casing (Molten)"}},"Damage":7129,"OreDict":""},{"id":"minecraft:nether_star","Count":2,"tag":{"display":{"Lore":["A few scratches here and there,","but still usable"],"Name":"Nether Star (Used)"}},"Damage":0,"OreDict":""}]}]},{"questID":381,"preRequisites":[380],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":900100,"terra":900100,"ignis":900100,"cap":"orichalcum","rod":"neutronium","ordo":900100,"perditio":900100,"aer":900100},"Damage":2000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forcefield, second try","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I came to the following conclusion: Draconium dust seems to react nicely with all kinds of magic energy, and seems to repel technology. So I need to find a way to create a forcefield with magic alone. There must be a way..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":382,"preRequisites":[460],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magic force field","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While node stabilizers are too weak, you found a way to generate a strong containment field, generated by magic itself. You tried to use warded glass, but even the \"frozen in spacetime\" material could not resist the power of activated draconium dust. You decided to build another device, this time with your newest invention.\n\nThe vortex attenuator is powerful enough to negate even hungry nodes, and it also will be able to contain activated draconium dust.\n\nJust to be sure, I will add some amplifiers to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicHorizons:transductionAmplifier","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":383,"preRequisites":[382],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:transductionAmplifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What the...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The device works! It is able to fully contain and separate the draconium dust from everything around it! Unfortunately... It also prevents the vis from passing the barrier, which results in regular draconium dust... In a forcefield..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":384,"preRequisites":[383],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Looking for alternatives","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is frustrating. Either you are able to contain the dust but can't activate it, or, you activate it and it causes serious damage. Maybe you need to find answers somewhere else.\n\nDraconic... Like... Dragon?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":385,"preRequisites":[461],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconic... Like... Dragon?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you where looking for the right things in the wrong place. As this dust obviously comes from dragons, the best thing to do now is to find answers in the dimension of dragons: The End."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Dragon Dimension","range":-1,"index":0,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":386,"preRequisites":[387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:endoplasm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weird creatures","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These ghosts are weird beings. But, I found this ectoplasm, which, by itself, seems to be pretty useless."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:endoplasm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":387,"preRequisites":[388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:spatial_dash_gem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated teleport power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By a random guess of yours, you combined molten ender pearls and a few more of these shards with an empty gem, and it turned blue. It is pulsating with power. You tried to use it on your containment device, and it seems to be able to bypass the force field, while keeping it intact that the same time. Sadly, it doesn't have enough power to let vis pass through. Maybe you can even further increase the gems power?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:spatial_dash_gem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":388,"preRequisites":[375],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:arcane_shard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arcane shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the normal world is based on vis and primal energy, the End seems to be quite different. This arcane shard is the crystallized form of this energy, just like the primal shards that you used so many times in the past. By pure randomness, you discovered that it reacts with the metal you've found."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:arcane_shard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:blank_gem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":389,"preRequisites":[390],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconicCore","Count":1,"tag":{"display":{"Lore":["Emits a strong, vibrating aura of pure energy you never experienced before.","In good memory of your old friend, the technician. May he rest in peace"]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconic evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I found a way to combine technology and magic into something fantastic. A shiny blue emblem that emits immense amount of energy. I've decided to call it the draconic core. Make one for yourself!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconicCore","Count":1,"tag":{"display":{"Lore":["Emits a strong, vibrating aura of pure energy you never experienced before.","In good memory of your old friend, the technician. May he rest in peace"]}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":390,"preRequisites":[468],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:resource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Balanced thaumium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This new metal is quite cheap, and has an awesome conductivity towards all 6 primal aspects. Regarding the capsule, I'd say it is a superconductor for vis. I think I can finally assemble the final frame."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:resource","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"thaumicbases:resource","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":391,"preRequisites":[389],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The machine is working pretty well, but it's tedious to fill in the reagents manually. But you have an idea, you could use a few basic components to fully automate the process.\n\nYou can use robot arms and conveyor belts to automate the input and output.\n\nObviously, you need to power the machines. A solar panel will do just fine.\n\nIn order to automate the catalyst, you need a few things. One golem will gather basic materials, while the second one will hunt creepers and ghasts for the more valuable ingredients.\n\nYou found a way to re-use the singularity, so you only need to get some sand. Luckily, the golem that works on the catalyst will be able to get glass too. He just needs a little additional motivation.\n\nYour golems need light, obviously. Also, it would be nice if there are some signal lamps that indicate the status of the process. Would it not?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32656,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32636,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32757,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemPlacer","Count":2,"Damage":7,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemGolemDecoration","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"MagicBees:miscResources","Count":1,"Damage":17,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemGolemDecoration","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":1,"requiredItems":[{"id":"BiblioCraft:BiblioLamp","Count":2,"Damage":0,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":13,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":14,"OreDict":""}]}]},{"questID":392,"preRequisites":[386],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:transference_gem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated teleport gem","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are sure that you've just discovered the solution for your containment problem. This gem happily transmits vis on request, while keeping the containment field intact. What a great day!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:transference_gem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":393,"preRequisites":[392],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"You did it! But...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are able to contain the activated draconium dust for an infinite amount of time, you where able to assure the energy it releases. The readings are incredible. You have never seen such a power before. The only problem is, the machinery required to keep the dust in this state is too large to use it for crafting.\n\nYou noticed something that might help: The dust reacts to vis, but it needs a lot of it, therefore you require the animation focus. If you could find a catalyst, that you can mix the dust with, you could make the dust react with the vis from its surroundings instead of a direct beam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":394,"preRequisites":[462],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A catalyst","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That's it. This catalyst contains all primal energies in a quite different form, a lot weaker than any node. However, in combination with the draconium dust, it amplifies the vis that's around it, which leads to a permanent activation. It still needs to be contained, but you don't need the direct vis beam any more.\n\nThe result is a compound, which still emits massive amounts of power, but is less destructive. It still attacks the neutronium, but I think if I can find a capsule-like container that has special properties, I could create a portable version of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":395,"preRequisites":[467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bulma would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining a dimensional singularity with some glass cylinders and molten gold, I was able to create a miniature containment field within a very small area. Interesting enough, the new draconium blend amplifies the containment field from the inside. Once I fill the blend in the capsule, it immediately \"seals\" itself. I won't be able to remove or replace the dust any more, but I don't think I have to...\n\n\nThe perfect vessel for massive power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":396,"preRequisites":[395],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The final steps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that I've found a way to stabilize the draconium dust and keep it safe in a small capsule, I just need to make a small container for it, so I can drain the energy on demand. Neutronium will serve very well, but I need a magic conductor. Thaumium works, but gets way too hot and void metal has a bad conductivity. I need to find a magic alloy that is more \"balanced\" in terms of primal aspects"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":397,"preRequisites":[391],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconicCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Endless evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using your machine, you can now craft infinite amounts of these cores. And since it would be gruesome to let your golem work just for one single core, you decided to only request cores in a large batch of 64. How nice of you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11129,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11978,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32049,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconicCore","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":398,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:babashat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Baba Yaga","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Baba Yaga is a witch (or one of a trio of sisters of the same name), who appears as a deformed and/or ferocious-looking elderly woman. She flies around in a mortar and wields a pestle. She dwells deep in the forest, in a hut usually described as standing on chicken legs, with a fence decorated with human skulls. Baba Yaga may help or hinder those that encounter or seek her out."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.babayaga","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":399,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:hornofthehunt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Horned Huntsman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Horned Huntsman is a member of the Wild Hunt, a powerful entity created by the Horned God. If one is encountered, prepare for a hard fight, or better flee."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.hornedHuntsman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":400,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Ender Dragon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The dragon must die. Long enough he destroyed those precious endstone blocks!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":401,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:leonardsurn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Shade of Leonard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Leonard is the demonic being who is rumored to have taught a cadre of German witches their trade, and often presided over their sabbats. A skilled coven with the witches cauldron can summon a Shade of the Demon according to the method described in the Witches' Brews book."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:leonardsurn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":402,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":141,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Lord of Tormentum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Lord of Torment is a mighty demonic being that is able to create prisons to torment its victims. Those foolish enough to summon one of these creatures must prepare for an arduous fight."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.lordoftorment","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":403,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:quiverofmog","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Mog and Gulg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mog and Gulg are the god-like beings that hobgoblins worship. They may send their avatars to pay witches a visit who exploit their worship (with a statue of hobgoblin patron). Rumor has it that using a nether star may make them take immediate notice."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblinmog","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblingulg","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":404,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Demon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Demons are powerful, evil beings who dwell in the infernal dimensions. To date, none have been seen roaming the Nether, where their minions: ghasts, blazes and their ilk seem to dominate. To meet a demon without a way to protect oneself is almost certain death. They are known to hit like a proverbial truck, and require a significant amount of damage to kill. Some demons have even been seen shooting fireballs! They are, of course, also immune to fire."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.demon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":405,"preRequisites":[398,399,400,401,402,403,404],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:infinityegg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of infinity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've mastered everything possible. And now it's time to give your equipment the final boost. The infinity egg is just the right addition to your altar. It's quite expensive, but well worth the cost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"witchery:chalkheart","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkinfernal","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkotherwhere","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":64,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":45,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":80,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:infinityegg","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":406,"preRequisites":[407,708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:lavaSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lava for blood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, both are red, so that connection was quite obvious... Was it...?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:lavaSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":407,"preRequisites":[177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blankSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic slates. Basically just stone with blood infused in it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blankSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:blankSlate","Count":12,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":408,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:divinationSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's quite difficult to see how much blood there is in your altar, or your personal blood network. This little device will solve that problem for you. Just a little prick in the finger, and everything will be revealed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:divinationSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":409,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic rune","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic rune that you can craft at this moment.\n\nYou need 8 runes for your tier 2 altar, which can hold more blood, and you can make new recipes now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":410,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Alchemy with blood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not like \"blood alchemy\". You probably will need more than one later, but for now one is sufficient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":411,"preRequisites":[412],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:averageLengtheningCatalyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion catalysts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to manipulate potions you need catalysts. You then combine the ingredient you used to get the potion effect in with either a lengthening or power catalyst to increase the duration or the strength of the potion effect."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:mundaneLengtheningCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:mundanePowerCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBindingAgent","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:simpleCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":412,"preRequisites":[410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:crystallos","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple alchemical things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alchemy can be weird, and tedious. There are a lot of reagents and even more possible combinations. For now, and in order to get started, you need a couple of basic things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:simpleCatalyst","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:crystallos","Count":16,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanctus","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:sanctus","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:crystallos","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":413,"preRequisites":[415],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:weakFillingAgent","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refilling your potions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If empty, you don't have to throw the potion away. Just refill it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakFillingAgent","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:standardFillingAgent","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":414,"preRequisites":[410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Special potion flasks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular glass phials are unable to hold these special potions you want. You need to imbue them with some blood from your altar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:alchemyFlask","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":415,"preRequisites":[411,414],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion: Flight mode","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just to give you an idea what is possible. Let's do a sample potion. Shall we? Get yourself a potion flask, a feather and one of your weak binding agents you made. Combine those in the chemistry set, and you'll get something that you'll probably want to keep for a while."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBindingAgent","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:averageLengtheningCatalyst","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":416,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:blockHomHeart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple, but powerful spells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The simple spell system is rather easy to setup, and can be done early on in your bloodmagic career."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockHomHeart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":417,"preRequisites":[416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paradigm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Paradigms shape your spell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":418,"preRequisites":[416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spell foci","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are nine basic elements and each has a focus, an item that represents them. You place this focus in your altar next to the spell table in order for your magic to flow through it and the paradigm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ice","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:water_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:obsidian","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":419,"preRequisites":[418,417],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Some examples","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a LOT of spell combinations to discover, so just use trial and error!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:ice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":420,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:sigilOfMagnetism","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Convenient slate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collecting items while mining or chopping wood is always tedious. But no more! With this fancy little thing items will just fly towards you! And it only costs a little bit of blood to pay the spirits of wind to work for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sigilOfMagnetism","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":421,"preRequisites":[926],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:imbuedSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...and even more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":422,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:reinforcedSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need MOOORE. Imbue some slates with even more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:reinforcedSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:reinforcedSlate","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":423,"preRequisites":[422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Apprentice orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 2 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":424,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magican's orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 3 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":425,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:waterScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Elemental chalk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creation of better ritual stones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:waterScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:fireScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:earthScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:airScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":426,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:runeOfSelfSacrifice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sacrificial runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Poking your finger might work for simple slates and runes, but getting enough blood for advanced stuff is tedious. With sacrificial runes you are able to increase the LP gain from mobs or yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:runeOfSelfSacrifice","Count":4,"Damage":0,"OreDict":""},{"id":"AWWayofTime:runeOfSacrifice","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:runeOfSelfSacrifice","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:runeOfSacrifice","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":427,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first rune to increase your capacity, and a rune to speed up transfer from/to external tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":2,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":2,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":428,"preRequisites":[425],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have access to elemental chalk, you can get yourself the basic ritual diviner. A convenient way to place simple but yet complex magical rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:imbuedSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":429,"preRequisites":[430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodSocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powerful armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A long way to go, and rather expensive, but a really powerful armor and well worth the effort."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:emptySocket","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodSocket","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:armourForge","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:weakBloodShard","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":430,"preRequisites":[432],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:weakBloodShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting soul shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enable your sword by Shift right-clicking and slay some enemies! Collect as many shards as possible. You will need a ton of them..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakBloodShard","Count":17,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:blankSlate","Count":16,"Damage":0,"OreDict":""},{"id":"AWWayofTime:reinforcedSlate","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":431,"preRequisites":[429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to assemble your armor. You need to build the pattern with blocks as you would craft the armor in a crafting table. The soul forge must connect to the structure on at least 2 sides. Then, right click the forge block with an empty hand to craft the armor piece."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundPlate","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:armourInhibitor","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":432,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:energySword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A bloodmage's sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamonds and emeralds are limited in their ability to store LP. With this sword, you are able to get the crystallized souls from your enemies. Time to go hunting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:energySword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":433,"preRequisites":[422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:masterStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time for some rituals. The most basic one you'll probably get first is the ritual of binding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":24,"Damage":0,"OreDict":""},{"id":"AWWayofTime:masterStone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":434,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundPickaxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Pickaxe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mining never was easier. Just right-click with this tool and all the stone is gone! Like all bound tools, this uses a massive amount of LP."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundPickaxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":435,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Shovel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever wanted to clear out a large terrain with dirt, gravel and sand? Why not let demons do it? This shovel, imbued with the soul of a demon will unleash the power by your will. But be warned: The demon you're about to summon with this is thirsty, and it costs a lot of LP to make use of it, so make sure your LP pool is full!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":436,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Axe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upon right click while activated, this axe will clear out any wood within a large area. Be warned: This uses a huge amount of LP. You might suffer from sudden death..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":437,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:sanguineHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A true blood-mage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bloodmagic is fine, so is Thaumcraft. Why not combine both worlds?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sanguineHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguineRobe","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguinePants","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguineBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":438,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellParadigm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Complex spell system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike the simple spells with foci and paradigm, the complex spell system is incredibly...complex. There are way too much combinations to cover them here, so it's advised to look for the knowledge in other places. However, with the items from this quest, you are able to craft a simple mining spell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellParadigm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEffect","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellModifier","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemComplexSpellCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:incendium","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:aquasalus","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":439,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Steam > Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three steam lootbags give a better one = Tier 2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":440,"preRequisites":[4],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:pamappleSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lOak trees are not apple trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oak trees which give apples? Who the hell added this to minecraft? You found a way of combining an oak sapling and an apple to get an apple tree sapling. Try to plant one to get a permanent source of food.\n\nOnce you complete this quest, check out the rest of the Quest Tabs. A new one, Coins Coins Coins, has unlocked. Every few quests you want to look through all the quest tabs to make sure something new hasn't unlocked somewhere else! There are lots of tabs, so be sure to scroll down!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:apple","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:pamappleSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:pampearSapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamcherrySapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamorangeSapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamwalnutSapling","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":441,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Basic > Steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic lootbags give a better one = Steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":442,"preRequisites":[9],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32201,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§l\"Backed\" potatoes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eating raw potatoes isn't that healthy, as you might have noticed. Some potatoes are green and poisonous already. After you get a furnace you can make delicious baked potatoes as another food alternative. Put a baked potato on a stick to make it even more delicious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:potato","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:baked_potato","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32201,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:melon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":9,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":443,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 2 > Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 2 lootbags give a better one = Tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":444,"preRequisites":[9],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Wood","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSoft mallet adventure","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You now have some melon slices or pumpkins but what can you do with them? Well just eat them or... use a mallet to get some seeds... OK, let's craft one. Perhaps you can use this mallet for some other things too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"},{"id":"minecraft:planks","Count":6,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Wood","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:melon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":445,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 3 > Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 3 lootbags give a better one = Tier 4"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]}]},{"questID":446,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.wood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lShields UP","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a sword in one hand, what can you do with the other? Right, you need a shield. Let's make one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":4,"Damage":0,"OreDict":"logWood"},{"id":"minecraft:flint","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:cobblestone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":447,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 4 > Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 4 lootbags give a better one = Tier 5."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":448,"preRequisites":[446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.hide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lShield update","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wooden shield is very weak. So you look for a better one. Looks like you need some leather, so go and find some cows."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.hide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fence","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":449,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 5 > Tier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 5 lootbags give a better one = Tier 6."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":450,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lYour first long range weapon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since you can't make any vanilla bow before LV and Tinkers weapons are not in this Tier, you find a way to make a spear out of sticks, leather and a string. Get one because some infernal monsters are easier to kill with a long range weapon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"woodStick"},{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":451,"preRequisites":[906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger LoC","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by having a \"Lamp of Cinders\" in your inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":452,"preRequisites":[353],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Singularity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a singularity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":453,"preRequisites":[355],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Shard of Creation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a \"Shard of Creation\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":454,"preRequisites":[358],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Life and Soul Shard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a \"Life Shard\" and a \"Soul Shard\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":455,"preRequisites":[360],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Unknown Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by finding a \"Mysterious Crystal\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":456,"preRequisites":[916],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers the Life Canister Quest after a Wither death."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":300,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.6000000238418579,"Name":"generic.movementSpeed"},{"Base":40,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"Invul":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":300,"id":"WitherBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5130901120732393000,"Health":300,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14321298824739,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"WitherBoss","subtypes":1}],"rewards":{}},{"questID":457,"preRequisites":[367],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Pluto","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you have been on Pluto."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":{}},{"questID":458,"preRequisites":[371],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Primordial Pearl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by the Primordial Pearl."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":459,"preRequisites":[374],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Wand Focus Animation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you craft the Primordial Focus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":460,"preRequisites":[381],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Vortex Attenuator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers after you craft a Vortex."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":461,"preRequisites":[384],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger The End Dim","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you arrived at The End."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":0,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":{}},{"questID":462,"preRequisites":[393],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Amorphic Catalyst","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you craft the Catalyst."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":463,"preRequisites":[423],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:speedRune","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Runes tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Speed rune is the only tier 2 rune. The speed rune does what its name implies, provides an additive 20% increase to the processing speed of the blood altar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:speedRune","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:imbuedSlate","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:speedRune","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":464,"preRequisites":[308],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:barnardaCdirt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The technician part 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I will ask the technician about this stuff, but I need to reach a good reputation first. He is a busy man, and I don't want to be denied."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"GalaxySpace:enceladusblocks","Count":10,"Damage":2,"OreDict":""},{"id":"GalaxySpace:proteusblocks","Count":10,"Damage":3,"OreDict":""},{"id":"GalaxySpace:plutoblocks","Count":10,"Damage":6,"OreDict":""},{"id":"GalaxySpace:barnardaCdirt","Count":10,"Damage":0,"OreDict":""},{"id":"GalaxySpace:vegabgrunt","Count":10,"Damage":0,"OreDict":""},{"id":"GalaxySpace:tcetieblocks","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":465,"preRequisites":[364],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Neutronium Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you get Neutronium Ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":1,"Damage":129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":466,"preRequisites":[366],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Black Plutonium Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you find Black Plutonium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":1,"Damage":388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":467,"preRequisites":[394],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Empty Void Capsule","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you have a Void Capsule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":468,"preRequisites":[396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Thauminite Nugget","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you get Thauminite Nuggets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:resource","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":469,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:BerryBush","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCollecting some berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you now waiting for the carrots to grow? Go and find some berry bushes and berries. The berries are a good source of food and you can put these bushes around your house to make a wall. It should provide a good protection against all those monsters that want to come into your house and kill you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":5,"Damage":1,"OreDict":""},{"id":"Natura:berry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Natura:BerryBush","Count":5,"Damage":0,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:BerryBush","Count":2,"Damage":15,"OreDict":""},{"id":"Natura:BerryBush","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":470,"preRequisites":[469],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:berryMedley","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBerry medley","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hmmm... what can you do with all those berries? Just eating? You will see that they have a very low saturation Level. Let's plant the new berry bushes and mix the berries to make some better food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":1,"Damage":1,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":3,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":2,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood","Damage":100}},"Damage":34,"OreDict":"craftingToolKnife"},{"id":"minecraft:bowl","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Natura:berryMedley","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:BerryBush","Count":5,"Damage":15,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":14,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":13,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Natura:berryMedley","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":471,"preRequisites":[442],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:teaItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§1§lFood variants","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you noticed already that eating the same food too often is very boring and not healthy any more. Some food like tea leaf can be taken to the furnace and processed further. So take a break and drink a cup of tea. Maybe munch some tasty raisins as they are very nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:tealeafItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:grapeItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:teaItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raisinsItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2817,"OreDict":""},{"id":"harvestcraft:butterItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":472,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":56,"Head":3,"HeadEXP":0,"BaseAttack":3,"Built":1,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":3,"Broken":0,"Shoddy":0,"RenderHandle":3,"Accessory":3,"MiningSpeed":400,"RenderAccessory":3,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":56},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When your tinkers tables are ready you can craft your first tool. If you did not find a village yet you can only craft flint tools. Let's start with a pickaxe, an axe and a shovel. At this point swords are unobtainable since they need metals like iron or bronze which you will get at a later stage. In the meantime use your gregtech swords. Your new tools are weak at first but the more you use them the better they will get. They will level up to level 99 if you play long enough. Tool parts can be replaced for a bit of level XP, however the tool must be fully repaired first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":4,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":9,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:flint","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":1,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:shovelHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"HeadEXP":0,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":400,"RenderAccessory":0,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},{"id":"TConstruct:hatchet","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":5,"ToolEXP":0,"HarvestLevel":1,"Attack":5,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Hatchet"}},"Damage":0,"OreDict":""},{"id":"TConstruct:shovel","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":4,"ToolEXP":0,"HarvestLevel":1,"Attack":4,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Shovel"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:blankPattern","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":473,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:broadsword","Count":1,"tag":{"InfiTool":{"BaseDurability":427,"Head":14,"BaseAttack":7,"Built":1,"ToolEXP":0,"HarvestLevel":4,"Attack":7,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":427},"display":{"Name":"Bronze Broadsword"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking a better sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it's time to make your first tinkers sword. First you have to make blade, hand guard, and tool rod cast forms. Melt some bronze in the smeltery and cast your tool parts. Tadaa... there is your first tinkers sword."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":6,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:swordBlade","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:wideGuard","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":4,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":474,"preRequisites":[28,472],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":225,"Head":2,"HeadEXP":0,"BaseAttack":4,"Built":1,"ToolEXP":0,"HarvestLevel":2,"Attack":4,"RenderHead":2,"ModDurability":0,"Handle":2,"Broken":0,"Shoddy":0,"RenderHandle":2,"Accessory":2,"MiningSpeed":600,"RenderAccessory":2,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":225},"display":{"Name":"Iron Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§k§l§l§r§2§lUpgrade 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find iron, copper and tin ore. Very funny... How can you mine these with just a flint pickaxe? \nI have an idea; bring me all the stone you mined with your flint pickaxe and I will give you a better tool head in exchange."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:cobblestone","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:shovelHead","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":475,"preRequisites":[86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #4: Upgrade tier 5 - HSS-G Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like HSS-E, HSS-S, naquadah or draconium you need more than 4500K. Time to upgrade your EBF to 5400k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":476,"preRequisites":[475],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #5: Upgrade tier 6 - Naquadah Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like naquadah-alloy you need more than 5400K. Upgrade your EBF to 7200k to increase the heat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":477,"preRequisites":[476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #6: Upgrade tier 7 - Naquadah Alloy Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the more advanced materials like neutronium or fluxed-electrum you need more than 7200K. Upgrade your EBF to 9001k. (OVER 9000!!!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":478,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lFlint and steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make steel you are able to craft flint and steel. I guess you want to travel to the Nether as soon as possible but be aware; the Nether is a very dangerous place.\nNote: The ball of moss gives a tinker's tool self-repair. But if the tool is completely broke, it will have to repair to full health before fixing the tool."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":20305,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:arrow","Count":32,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:obsidian","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":479,"preRequisites":[478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§m§l§m§4§3§lTHE NETHER","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now more dangerous with extra hardcore infernal mobs. Have fun and take care. Be sure to bring a tough companion along to keep you alive. If you have no friends, why not make an Iron Golem and push it through first, or bring the materials for more along with you?\n\nAlso, *when* you die here, not if, your graves will spawn skeletons because of the darkness. Make sure you light up areas where you might die, and when recovering graves light up the area *first* so that you don't end up dying over and over and making a mess."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:obsidian","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"THE NETHER","range":-1,"index":1,"dimension":-1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:natura.armor.imphelmet","Count":1,"tag":{"ench":[{"lvl":1,"id":0},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impjerkin","Count":1,"tag":{"ench":[{"lvl":1,"id":3},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impleggings","Count":1,"tag":{"ench":[{"lvl":1,"id":4},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impboots","Count":1,"tag":{"ench":[{"lvl":1,"id":2},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":99,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":97,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":480,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":871,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMalachite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another copper source is \"malachite\" which can be found between Y level 10 and 40. This vein contains more iron ore variants like \"brown limonite\", \"yellow limonite\" and \"banded iron ore\".\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in nei and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":871,"OreDict":"oreMalachite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":917,"OreDict":"oreBandedIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":931,"OreDict":"oreYellowLimonite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":930,"OreDict":"oreBrownLimonite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11035,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32240,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":481,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:fluid.creosote.bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§l§2§lCreosote oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I guess you already processed a bit of wood into charcoal and wonder what you can do with all this creosote oil?\nWell you can burn it in the normal furnace to cook your food or you can make more torches with it. Later in the LV age you probably should run combustion generators with it."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":482,"preRequisites":[483,1476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Cow"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnimal farms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Trying to get some leather or wool? You probably need to spend a lot of time hunting animals and traveling around, or you could simply make a farm to get a decent amount of leather, wool and meat. Make sure you don't put too many animals in the pen or they will overcrowd and kill each other."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:beef","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wool","Count":100,"Damage":0,"OreDict":"blockWool"},{"id":"harvestcraft:muttonrawItem","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:porkchop","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:chicken","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:shears","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:mattock","Count":1,"tag":{"InfiTool":{"MiningSpeed2":700,"BaseDurability":67,"Head":314,"BaseAttack":6,"Built":1,"ToolEXP":0,"HarvestLevel":6,"Attack":6,"RenderHead":314,"ModDurability":0,"Handle":314,"Broken":0,"Shoddy":0,"RenderHandle":314,"Accessory":314,"MiningSpeed":700,"RenderAccessory":314,"ToolLevel":1,"Unbreaking":10,"HarvestLevel2":6,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":67},"display":{"Name":"Unstable Induced Mattock"}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":483,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat_seeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGardener","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are wondering: Why do I never get seeds when destroying grass? You are right. Try to work with your new mattock on the grass blocks that do not have water anywhere nearby to find some seeds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":4,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:shovelHead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:mattock","Count":1,"tag":{"InfiTool":{"MiningSpeed2":650,"BaseDurability":534,"Head":14,"BaseAttack":6,"Built":1,"ToolEXP":0,"HarvestLevel":4,"Attack":6,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"HarvestLevel2":4,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":534},"display":{"Name":"Bronze Mattock"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11300,"OreDict":""},{"id":"TConstruct:GravelOre","Count":2,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":484,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCan you hear the carrots grow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of waiting since your carrots grow sooooo slow?\nWell I got an idea, bone meal will help you grow food in seconds. Ok, chop down some trees and I will trade you some bone meal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":64,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":10,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:dye","Count":10,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood"}},"Damage":6,"OreDict":""},{"id":"minecraft:torch","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":3,"Damage":15,"OreDict":""}]}]},{"questID":485,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou need MOOOOOOORE wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to feed your new coke oven with some wood to get more charcoal. You are looking for the most efficient way to plant trees. Try to find some spruce saplings and some jungle saplings. Both can be planted in a 2x2 grid to get bigger trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":4,"Damage":1,"OreDict":""},{"id":"minecraft:sapling","Count":4,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":0,"OreDict":""},{"id":"Natura:florasapling","Count":49,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":486,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTanned leather","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have found a way to make leather more durable and more resistant by further processing it. Make some bound leather from four pieces of leather, some strings and a woven cotton. Now you only have to hang it on a drying rack and wait about 10 minutes to get some tanned leather. Stockpile some for later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:Armor.DryingRack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Backpack:boundLeather","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":487,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNeed more space?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you might know: tanned leather is more resistant and good enough for a backpack. Let's get a digger's backpack and a miner's backpack. Each pack holds different items. So use both for your first true back-packed mining experience."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:minerBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:cooked_beef","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":488,"preRequisites":[487],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:foresterBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou need them all!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are many more backpacks: Hunter, builder, forester..."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:foresterBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:hunterBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:builderBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":1,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":489,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"SpiceOfLife:lunchbox","Count":1,"tag":{"UUID":"60ced69d-32df-413d-ac1d-28b72b4c8621","Inventory":{"Items":{}},"Open":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBetter lunch bag","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your lunch bag is now so abused and rather old so it's time to get something better. Let's craft a lunch box which can hold way more food."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"SpiceOfLife:lunchbox","Count":1,"tag":{"UUID":"60ced69d-32df-413d-ac1d-28b72b4c8621","Inventory":{"Items":{}},"Open":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:delightedmealItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:bltItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":490,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Horseback riding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you ready for a small trip? With your new lunch box, saddle, lead and of course a horse we can start a small journey. Be sure to make paths over water, horses don't like going over deep water."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:fence","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fence","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":491,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"sleepingbag:sleepingBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSleeping outside","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Carrying the bed with you all the time the looks very funny. Why don't you craft a sleeping bag to stay outside without placing a bed and changing your spawn point. This way if you die, you'll be right at home! Be warned: If you play on a server then you'd better sleep below Y level 128, as nights are very cold in the mountains..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wool","Count":3,"Damage":0,"OreDict":"blockWool"},{"id":"minecraft:carpet","Count":3,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"sleepingbag:sleepingBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:leather","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":492,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Sheep"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSheep hairdresser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Killing sheep to get the wool is so ineffective. Making some shears would make sense if you need more wool."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":"ringIron"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":"screwIron"},{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"stickWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":5,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":18,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":22,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":10,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":493,"preRequisites":[48],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":26,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWire Cutter v.0.2alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Small gears require a wire cutter to be made, so let's craft one."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":494,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:redstone_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRedstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you didnt't find any Redstone veins yet, it is quite important to look for one now. Try your luck at Y level 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":502,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":32221,"OreDict":""},{"id":"TConstruct:oreBerries","Count":5,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":495,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOh, shiny! (Not platinum!)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your first macerator you need two diamonds, and to enter the Twilight Forest you need one. Finding a diamond vein would help you a lot. Go and look for one at Y level 5-20."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":500,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":865,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":535,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32234,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32232,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"IC2:itemPlates","Count":5,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17032,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":496,"preRequisites":[51,479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemDust","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHow to make rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making rubber is now more complicated - you need raw rubber and sulfur. Finding a sulfur vein in the Nether seems like a good idea, doesn't it? Found on Y level 5-20. Later on you can get sulfur from chemicals like hydrogren sulfide or pyrite.\n\n§4Sphalerite will be important later for gallium and zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1022,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1834,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1839,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:peaandhamsoupItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"Natura:barleyFood","Count":8,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":497,"preRequisites":[478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1155,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lLit way to get charred","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have found an alternative way of making charcoal with a \"charcoal pile igniter\". \nGo and start getting massive amounts of charcoal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21305,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1155,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":498,"preRequisites":[36,74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:filledbucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lXP usage?!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Exploring some dungeons or fighting mobs probably gave you a lot of XP. Better use it to get iron, copper, tin or other useful dusts before you die during the next fight.\n\nPlace your tank on the ground and a drain on top. Now you can fill it with XP.\n\nBy the way, you discovered that while the seared tank doesn't hold much, it doesn't lose contents when broken, and full tanks can stack. I wonder if that information is useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:LavaTank","Count":1,"Damage":0,"OreDict":""},{"id":"OpenBlocks:xpdrain","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:experience_bottle","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":499,"preRequisites":[72],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diesel, creosote: Watch them BURN!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have almost made it. One last crafting step is required in order to advance to tier 2. Keep going!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1110,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberrybarItem","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":500,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialScoop","Count":1,"tag":{"charge":4990},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First things first","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As usual. In order to get started with bees, you need a few basic things. Most importantly... a scoop. For this quest you want to make a GregTech scoop. Later you can make scoops using magic or even rechargeable scoops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":501,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"NA":0,"Health":20,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Go find some bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next thing to do: Find a few bee hives around the world. There are 11 mundane bees that can be found, of which 8 are located in the Overworld. Any kind of bee will work for this quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":502,"preRequisites":[1112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A new home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've destroyed the poor bees homes, you should build them a new one. The humble Bee House will not let your bees mutate into new species. But you'll need the combs anyways for better housing. The production rate isn't too bad, but they cannot be automated.\n\nOne tip - Put some vanilla saplings near the Bee Houses. Bee Houses give a natural boost of 3x to pollination vs better housing. The bees will pollinate them and you might get lucky and start getting some Forestry tree crossbreeding. Stick with Oak and Birch trees, they'll give you a nice mix of starter Forestry trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":503,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BinnieCore:fieldKit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyze them all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every bee has multiple properties that define what the bee does, how it behaves in rain or at night, and a couple of other aspects. It is mandatory to keep track of those properties. This kit isn't very good since it doesn't give you information on their Inactive attributes, but waste not, want not.\n\nYou'll need to use paper to analyze each bee."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BinnieCore:fieldKit","Count":1,"Damage":63,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"minecraft:paper","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":504,"preRequisites":[503],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beealyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scan or not to scan","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get into bee breeding, you need a way to see all the traits, active and inactive. You only want to breed so called \"pure\" bees; For those, both \"Active\" and \"Inactive\" traits are identical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beealyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":505,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Top-Tier analyser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best you can get, for all your scanning and analysing needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":10,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":506,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:MutagenBucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"To play god","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to continue with bees, to mutate and breed them as you like, you need mutagen. This greenish, smelly liquid needs to be refined from bacterial sludge that seems to be available only on Mars. You will be able to continue, once you've arrived there.\n\nIn the meantime you can start working with the Genetics mod, since we all know Gendustry is too easy... Check out the recipes and you will understand why you should look into the Genetics mod."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Visit Mars","range":-1,"index":0,"dimension":29,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesOblivion","UID0":"magicbees.speciesOblivion","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesOblivion","UID0":"magicbees.speciesOblivion","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":507,"preRequisites":[578,1113,502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgraded home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Bee House can be used to stabilize mutations, for example if you have successfully bred two different bees, but the passive traits are different from the active ones. \n\nTo actually breed those together to get a new species, you'll need something different - the Apiary. Building them will require a Carpenter and Impregnated frames, along with Seedoil and Creosote - quite a bit of industrialization! Or, if you're lucky, you can find a beekeeper villager to trade with for useful items. Maybe you can help the villagers *get lucky* to make more beekeeper villagers? If only Cupid and his bow were around...\n\nProduction rates in an empty Apiary are low - lower than a Bee House by quite a bit, in fact. But the Apiary has two big advantages - Frames, and Automation. You can now use your Untreated or Impregnated frames in here to boost output - and the boost is multiplied. So 3 x2 frames gives you 2 * 2 * 2 = 8x extra output!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:frameUntreated","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":508,"preRequisites":[506],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Mutatron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutatron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mutations can be boring, they can be annoying, and most times, they are frustrating. With this machine, you will get a 100 percent pure bred mutation. If the combination of princess and drone can result in multiple mutations, the outcome is random. But who cares?\n\nYou can now upgrade your leftover Bees Advanced bags to Bees Expert in the last quest tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Mutatron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":509,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Sampler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic sampler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With this machine, you can extract a random trait from any bee, sapling, butterfly or flower. The bee/sapling/butterfly/flower will be destroyed in this process. Each process requires an empty gene sample and some labware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Sampler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":510,"preRequisites":[515],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Labware","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diamondware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Also known as labware. Be prepared. In order to do serious bee-work, you need stacks of diamonds. I'm not joking, stacks! Better start working on that diamond bee!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Labware","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":511,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Imprinter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic imprinter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With this powerful machine, you can inject gene samples, which allows you to alter any aspect of your bee/tree or butterfly. The gene sample (or pattern) will not be destroyed. The success rate is 100%, and one labware is consumed per injection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Imprinter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":512,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Transposer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic transposer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"DNA samples of species and/or traits are pretty valuable. You always should keep at least one of each effect/trait/species you get your hand on in a chest somewhere safe. By using this machine, you are able to copy any DNA sample, for the cost of an empty serum vial and some labware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Transposer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":513,"preRequisites":[508],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:MutatronAdv","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced mutatron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A more advanced version of the mutatron. It uses more energy to mutate a drone with a princess, but the mutation is a 100 percent success, and you can select which mutation you want to have. This machine is a must-have for high-tier bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:MutatronAdv","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":514,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSampleBlank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blank gene sample","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get the various traits from a bee, you need a lot of power, labware and an empty gene sample. You don't need a lot of those, as you can just throw them in a furnace to remove remaining DNA of traits you don't need or want. \n\nIn the meantime you can start working with the Genetics mod, since we all know Gendustry is too easy... Genetics is used for bees, trees, and Botany flowers so it gets its own quest tab. Gendustry is really good for bees, but will require top tier equipment."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSampleBlank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":515,"preRequisites":[514],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneTemplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic template","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Templates are used to combine multiple gene samples into one large batch. It can be used to apply multiple traits at once, but you can also replicate a bee from liquid DNA and protein, if you manage to fill all 13 traits in one template. These templates can also be copied, just like the small samples."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneTemplate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":516,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Extractor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A rather cruel disposal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably will end up with a lot of excess drones while doing bees. (Or saplings if you do trees). Instead of throwing them away, you could also turn them into... Something useful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Extractor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":517,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Liquifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arnie's blender","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They say, breakfast is the most important meal of the day. This machine turns raw meat into liquid protein, which is used to create bees from scratch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Liquifier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":518,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Replicator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"And there shall be light","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Out of princesses to inject traits to? Too lazy to find hives and get more bees? Not a problem. With this nifty little device, you can use a ton of power, liquid DNA and protein to create any bee you wish to have. The only drawback is: All bees will be ignoble, which means they will die after a random amount of cycles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Replicator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":519,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDoctoral","chromosome":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Temperature 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":520,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Humidity 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":7},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":521,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Fertility 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bees bees everywhere!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.fertilityMaximum","chromosome":3},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":522,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Draconic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDraconic","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":523,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Doctoral","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDoctoral","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":524,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Speed Fastest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Buzz buzz buzz, working hard and really buzzing!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.speedFastest","chromosome":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":525,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesSilicon","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":526,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Rain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Beekeeping in the rain! Make sure to keep your GT machines covered!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":527,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Day and Night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bee working day and night, all night and all day long!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":528,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Cave","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bees with Cave can work in housing that is covered - by more housing!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":529,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32680,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fifth item you'll need a lot of. For the microwave, the scanner, the precision laser engraver, etc."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32680,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":530,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32690,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sixth item you'll need a lot of. For the scanner and the seismic prospector."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32690,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":531,"preRequisites":[717,97,529,530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lScanning bees, crops and moooooore!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Automate your bee, sapling, or crop scanning. Later on, this machine gets very useful for scanning high tier machine parts for the assembly line research data or to fill data orbs with data for the UU matter production. Data sticks with raw prospecting data need a scanner too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":532,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiesel, oil or maybe creosote?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably collected a ton of creosote and maybe even have built your first ELECTRIC blast furnace. Creosote will be a good fuel for the moment. So try to build a few of the combustion generators and use them besides steam as a secondary power source. Small generators will only use fuel if there is EU demand.\n\nTo extract the creosote from your coke ovens, you can use buckets or cells to do it by hand, or the TiCon faucet into GT fluid pipes, or an electric pump cover from You're Going to Hate This #2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30709,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":533,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lHydrogen, methane or some farts... (Natural gas) ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some centrifugal processes leave gases behind like hydrogen or methane. Centrifuge some brown and yellow limonite to get hydrogen or dump your unused food in a centrifuge to get methane gas. Wood will even give 60 mb per log. Maybe it's time to build a forestry tree farm. Or you can start refining oil into refinery gas or naphtha to burn.\n\nGas turbines produce half the pollution of combusion generators, but their fuels are generally not as efficient. Choice is up to you which power source you use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1115,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30742,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":534,"preRequisites":[65,69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:dreamcraft_Pollution","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lPollution what....?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are running your bricked blast furnace for a long time you will sometimes get headaches, nausea and other weird effects. Yes this is pollution... from making so much steel. If you can collect some rubber sheets, I will trade you a complete hazmat suit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":535,"preRequisites":[494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":5810,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lRedstone, early game processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you wondering how to process redstone without a macerator? Well you can mine it with a gregtech hammer and get the crushed ore. Then use with the hammer in the crafting table to get some impure redstone dust. After this, fill a cauldron with water and drop the dust in it - CTRL-Q drops a whole stack but you will need a new iron bucket as the fired clay bucket just isnt fit for the task. You will get pure redstone dust for your red alloy ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":12,"OreDict":"craftingToolHardHammer"},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:water_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":5810,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":3810,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockores","Count":10,"Damage":810,"OreDict":""}]}]},{"questID":536,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLow tier wires","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Low tier wires like red alloy and tin can be made in a crafting table. Copper wire requires an alloy smelter. So let's make a mold for the rubber plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.MoldFormPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:creamedbroccolisoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":537,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Witch)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Witches bring stitches because they are always infernal and very dangerous. Be careful since they throw potions at you."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":26,"id":"Witch","Anger":0,"ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":6323763076874975000,"Health":26,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":50486316337289,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Witch","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":538,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":391,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic ore washer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Macerating ores usually doubles the output. If you want MOOOOOOORE, craft an ore washer and wash out some rare materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":391,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":539,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":361,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lRound and round and round...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After purification of your ore dust, you can centrifuge it to get even more byproducts out of the dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":361,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":540,"preRequisites":[541],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32721,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA truly sharp saw blade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining cobalt brass and diamond dust makes a really sharp saw blade for your cutting machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31343,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":1500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32721,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chocolatemilkshakeItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":541,"preRequisites":[91],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11343,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA new alloy - Cobalt Brass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to cut diamond blocks into plates, it's time to get a new alloy 'cobalt brass'.\nFirst you need to make brass out of zinc (only found in small ores in the Overworld, in Nether Sphalerite, or as a centrifuge byproduct from tin or tetrahedrite) and copper. Mix it with aluminium and cobalt dust (can be centrifuged from various materials) to get the cobalt brass dust.\n\nNow that you have come this far, we think that you are able to look up the ores that you need by yourself with the help of NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2036,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":2301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2033,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":2343,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32222,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":542,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lWater and electricity, sounds fun and safe right?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using the power of water and electricity you can get even more out of your dusts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":543,"preRequisites":[550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lC9H8O4...NaCl...H2O...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some cetane-boosted diesel, plastic or some chemical dyes? Then it's time to craft a chemical reactor.\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":544,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":241,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCompact? Or is it?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is a compressor but that doesn't mean it is compact... \n\n§4Hint:\nIt is highly recommended to get one of these electric compressors, as the efficiency in terms of coal/steam used to compress something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":241,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":545,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":271,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§5§lSuction device... nice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I hope you are not thinking about what I am thinking you are thinking about... \n\nHint:\nIt is highly recommended to get one of these, as the efficiency in terms of coal/steam used to extracting something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":271,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":546,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:blockOil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHello Baron, how is your black gold today?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"During your travels you may have seen some of these huge oil spouts. Now it's time to go make a pump and put this black gold into tanks. Oil can be burned directly in a combustion generator or be refined for better fuels and crafting materials. \nMining pipes are needed for pumping the oil.\n\nBring a combustion generator with you to power the pump. Thanks to the advancement of technology the pumping machine can auto output on top.\n\nStacking multiple pumps makes them work faster. In that case, oil has to be removed from the bottom of the stack using a pump cover.\n\nTaller spouts have more oil! But for the LV pump, it is better to use the short spouts since it doesn't have much range. Save the taller spouts for MV pumps. \n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BuildCraft|Factory:tankBlock","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":547,"preRequisites":[546,102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lYour oil is too Crude? Refine it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Burning oil in the combustion generator is a very inefficient way of producing power. Every bucket/cell of oil only gives you 20,000 EU. Time to try and refine it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":548,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30737,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLight Sulfuric Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step is to distill your oil into light sulfuric fuel, that has a burn value of 40,000 EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30737,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":549,"preRequisites":[543,548,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLight fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By adding hydrogen to sulfuric light fuel in a chemical reactor you can produce some light fuel with the very high burn value of 320,000 EU.\n\nThe remaining hydrogen sulfide cells can be used later to produce some sulfuric acid for your TNT/iTNT or acid batteries.\n\nIn MV age you can make diesel out of light and heavy fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30740,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"irontank:obsidianTank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":550,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lH like Hydrogen... rest of the alphabet is too complicated...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuge some brown or yellow limonite dust to get some hydrogen, or use an Electrolyser with some water to produce it in a fluid form."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:mushroom_stew","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":551,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_sulfuricheavy_fuel","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHeavy Sulfuric fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second step is to distill your oil into heavy sulfuric fuel, that has a burn value of 40,000 EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30738,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":552,"preRequisites":[551,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_heavy_fuel","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHeavy fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By adding hydrogen to sulfuric heavy fuel in a chemical reactor you can produce some heavy fuel with the burn value of 200,000 EU.\n\nThe remaining hydrogen sulfide cells can be used later to produce some sulfuric acid for your TNT/iTNT or acid batteries.\n\nIn MV age you can make diesel out of heavy and light fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30741,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":553,"preRequisites":[751,549,552],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:blockFuel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiesel fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing your light and heavy fuel together gives you some diesel. You need the MV mixer for it. It burns very well in the combustion generator with a burn value of 480,000 EU per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30708,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":554,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":581,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHey DJ, Mix it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The mixer is a very useful device. You can mix all kinds of fluids and items. Useful to prevent dust from falling to the ground when crafting - most mixer recipes give a slight boost over hand crafting!\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":581,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":555,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"hydrogen","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lN like nitrogen... Hide, alphabet strikes again!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can get some nitrogen by centrifuging... air. This process takes a long time, especially at the LV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30012,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":556,"preRequisites":[555,543,80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30714,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGlyceryl trini...... what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Kids, today we will make some glyceryl trinitrate (aka Nitroglycerin) with some glycerol.\n - Chemistry 101"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30629,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30714,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":557,"preRequisites":[549,841],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:pattern.fluid","Count":1,"tag":{"fluidID":"nitrofuel"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNITRO! (Cetane-boosted diesel)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"720,000 EU per cell. Yes, yes, this is very good! Make some cetane-boosted diesel fuel and power your Combustion Engine with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30709,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":558,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Backpack:backpack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWhat can I put all these items in?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make your first steel you're able to craft the small backpack. In this bag you can put a lot of the stuff you want to carry around. With 36 slots it's a bit bigger than a small chest. Later you can make it even larger. You can put one on your back and set it to automatically pick up stuff. \n\n§4Check out the \"Backpacks\" control configuration \"Open Backpacks\" and remap it to a new key. \n\n§4The maximum you can have in your inventory at once is 4."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28305,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":3,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Backpack:backpack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:paintbrush","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32414,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32415,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32416,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32417,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32419,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32418,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32420,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32421,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32422,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32423,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32424,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32425,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32426,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32427,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32428,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32429,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":559,"preRequisites":[560],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLow pressure boiler tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The low pressure boiler tank is the easiest way to store steam. The firebox needs this tank on top to produce steam. The bigger the boiler the slower it heats up, but it will produce more steam when heated up.\n\nExtract steam by attaching a pipe to the boiler tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":18032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.SteelBars","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"Railcraft:fuel.coke","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":560,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lRailcraft steam power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As an alternative way to make steam you can use the railcraft boilers. They require at least one firebox.\nMore than one size is possible: (1x1 mentioned above) 2x2 and 3x3. \n\nProvide water and coal to the firebox. Make sure you don't run out of water or...BOOM.\n\nEach boiler needs 1, 2 or 3 layers of tanks on top, equal to the size (1x1x1, 2x2x2, or 3x3x3)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":1,"Damage":13,"OreDict":""},{"id":"minecraft:brick_block","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"harvestcraft:figjellysandwichItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":561,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLiquid fuelled firebox","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cresosote oil into steam! After you make your first steel you are able to craft a liquid fueled firebox.\nDiesel, ethanol, creosote and biodiesel all work well here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SteelBars","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":1,"Damage":13,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30712,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":562,"preRequisites":[561],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHigh pressure boiler tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make steel you are able to craft a high pressure boiler tank. The upgraded version increases the temperature and produces more steam than the low pressure version. It will take longer to warm up, so make sure to keep it well fed!\n\nExtract steam by attaching a pipe to the boiler tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":18305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:meatfeastpizzaItem","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32240,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":563,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§3§lBookshelves...? Ah forestry... Multiblock farms!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The bookshelf can only be made with wood planks, which are made in a compressor. Perhaps someone thinks this is a bit crazy...\n\n§4This will unlock the Forestry Worktable, a great tool for keeping your crafting from driving you insane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":564,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Forestry Basic > Advanced","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic foresters lootbags give a better one = Advanced Foresters Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":20,"OreDict":""}]}]},{"questID":565,"preRequisites":[595,594,593],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Forestry Advanced > Expert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three advanced foresters lootbags give a better one = Expert Foresters Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":21,"OreDict":""}]}]},{"questID":566,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Space Invaders Moon > Space Invaders Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three space invaders Moon lootbags give a better one = Space Invaders Mars Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""}]}]},{"questID":567,"preRequisites":[566],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Space Invaders Mars > Space Invaders Asteroids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three space invaders Mars lootbags give a better one = Space Invaders Asteroids Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""}]}]},{"questID":568,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Novice > Adept","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three novice lootbags give a better one = Adept Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":569,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Adept > Master","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three adept lootbags give a better one = Master Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":570,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Master > Grandmaster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three master lootbags give a better one = Grandmaster Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]}]},{"questID":571,"preRequisites":[307],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Grandmaster > Grandmaster Unique","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sixteen grandmaster lootbags give a better one = Grandmaster Unique Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":16,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]}]},{"questID":572,"preRequisites":[161],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"BM Novice > BM Adept","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three BM novice lootbags give a better one = BM Adept Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]}]},{"questID":573,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"BM Adept > BM Master","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three BM adept lootbags give a better one = BM Master Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]}]},{"questID":574,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Bee Basic > Advanced","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic bee lootbags give a better one = Advanced Bee Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":25,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":575,"preRequisites":[509,508,2089],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"OR","name":"Bee Advanced > Expert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three advanced bee lootbags give a better one = Expert Bee Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":576,"preRequisites":[586,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Working table 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A manual crafting table which remembers the last nine used recipes. Left click one of the recipes shown in the right-hand side to automatically fill in the crafting grid. Right-click to lock a memorized recipe and prevent a newer recipe from bumping it off.\n\nResources need to go into the internal inventory. The crafting matrix is only a visual representation.\n\nThe Forestry worktable is super-useful, and can reduce the tedium of many common jobs because you can click-drag across a row of items, and it will use tools in its own inventory to continue crafting. Specifically:\nMaking torches with creosote - just drag-click all your buckets into the worktable\nMaking fresh water for Pam's - Same as above\nMaking fresh milk for Pam's - Same as above\nMaking clay bricks - a wooden form is automatically reused\nMaking concrete - not tested, but would probably make this easier too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11304,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"forestry.fruitApple","UID0":"forestry.fruitApple","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":577,"preRequisites":[576,73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sturdyMachine","Count":2,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forestry core block","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This sturdy casing is the basis for almost all machines in Forestry, essentially being the forestry equivalent of a machine casing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":18300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:sturdyMachine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"minecraft:bookshelf","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":578,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The carpenter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The carpenter is similar to an automatic crafting table. It has an item input slot and a storage slot for the recipes. Some recipes need an additional fluid like water, creosote, honey or molten redstone. With the carpenter you can make farmblocks, woven backpacks, bee and tree analysers and many more.\n\nThe carpenter needs power to work. You can use a GT cable or a battery box to connect to the machine or make some forestry, railcraft or buildcraft RF engines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17310,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32650,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20305,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":10,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30712,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":579,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":511,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMolten redstone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You heard that the carpenter needs some molten redstone for a few recipes. \nConverting redstone dust into a fluid requires a fluid extractor. Let's build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":511,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:appleciderItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:frenchtoastItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":580,"preRequisites":[577,585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thermionic fabricator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The thermionic fabricator is used to craft electron tubes and stained glass. It requires redstone flux (RF) energy to run. It is your first machine made in the carpenter. Once warmed up, it needs to maintain a certain heat level to operate. The amount of power supplied will determine how much heat will be generated. If you do not supply enough power to maintain the current temperature it will slowly drop. It will continuously draw power, so disconnect it if you don't need it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:factory2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":8530,"OreDict":""},{"id":"minecraft:dye","Count":16,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":581,"preRequisites":[580,588],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Series of Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you can craft your first farm block you need apatite tubes. Make some apatite rods first with a lathe, then use a forge hammer to join them into long apatite rods. You need golden bolts and a red alloy plate.\nPut some glass or sand into your thermionic fabricator and make your first tubes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22530,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":582,"preRequisites":[578,581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first multiblock farm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The smallest farm you can build requires 36 farm blocks (3x4x3 - the largest is 5x4x5 or 100 farm blocks). For water input you need a valve, items go through the hatches, and to supply the farm with energy you need a gearbox. With the farm control block you can control which fields of your farm work by applying a redstone signal. Remember to put creosote in the carpenter when crafting the different farm blocks. If you need the farm to work faster, just add more gearboxes.\nYou can use Orchard mode to collect Pam foods and Natura products. You can even mix and match modes on the same farm - logging and collecting fruit from trees, for example."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stonebrick","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":36,"Damage":18035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":27305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":9,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":36,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11035,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":583,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced. Farms can work without it. But if you want to configure your farm you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32700,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":584,"preRequisites":[583],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:solderingIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Change your farm circuit configuration","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The (forestry) soldering iron is a tool used for attaching electron tubes to circuit boards in order to manipulate how an electrical engine works or to program multiblock farms. As well as upgrading the squeezer or centrifuge.\nOnce electron tubes have been attached to a circuit board they cannot be removed, only replaced. The circuit board is automatically crafted as soon as the basic recipe requirements are met, so it's best practice to first place your electron tubes and then add the circuit board.\n\nThe soldering iron can also be used to remove the circuit board from electrical engines, multiblock farms, squeezers and centrifuges by opening the machine's GUI and left clicking with the soldering iron on the circuit board slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":26305,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:solderingIron","Count":1,"tag":{"Slots":{"1":""},"UID":109547956},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":585,"preRequisites":[578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemRecipePart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heating coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your thermionic fabricator needs heating coils to function. So combine some magnetized (requires polariser) steel rods with some copper wire and make some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23355,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5112,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":586,"preRequisites":[472],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Welcome to forestry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some automated farms or work with bee and tree breeding? Want the Forestry Worktable for easy recipe access? Then this is the right chapter for you.\n\nForestry farms in Orchard mode will even fertilize, water and harvest IC2 crops on cropsticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:honeyedSlice","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":587,"preRequisites":[96],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23355,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnetize your rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnetic steel rods need a polariser to craft. Make a few for your coils.\nMv Motors need the Polariser so better build them soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23355,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:lever","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":588,"preRequisites":[580],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8530,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finding Apatite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's now time to search for some ores. Apatite is the most important material in Forestry. You can make fertilizer, farm blocks and many other things. The vein is found between Y level 40-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":530,"OreDict":"oreApatite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":534,"OreDict":"orePhosphorite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":607,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"harvestcraft:frenchtoastItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32224,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":589,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm hatch (Item pipe connectivity)\n\nYou can supply and extract items from the farm by using farm hatches that are connected to pipe systems. \n\nSupplying items\nThe farm hatch is clever enough to know which item goes where. If an item isn't appropriate for the farm's configuration, the hatch will simply reject it.\n\nExtracting items\nAny item that is harvested by the Multifarm is automatically ejected by the farm hatches into inventories or pipes. Pipes can be used to extract from other sides."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32630,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":590,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm valve (Hydration)\n\nSome farms require water for hydration purposes. Although you can do it manually by supplying it through liquid containers (such as cans), you can also automate the process by using farm valves.\n\nBy connecting fluid pipes into the farm valve and supplying water, you can automatically fill the farm's water tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28880,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":591,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Control block","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm control\n\nYou can control which fields of your farm work by applying a redstone signal to the control block. You can either shut down the whole farm by applying a redstone signal from top or below or you can disable a specific side by applying a redstone signal on the matching side of the control block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":592,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Gearbox","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm gearbox (Power)\nTo power your farm and have it automatically harvest crops, you will need at least one farm gearbox.\n\nFarm operations can be hastened with additional gearboxes.\n\nEach farm gearbox requires power. You can use either RF or EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":593,"preRequisites":[583,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":1},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enhanced farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the basic one. The farms can work without them. However, if you want to configure your farm you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29300,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":1},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":594,"preRequisites":[593,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":2},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refined farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the enhanced one. The farms can work without them. If you want to configure your farm even more you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":2},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":595,"preRequisites":[594,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":3},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Intricate farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the refined one. The farms will work without them, but if you want to configure your farm even more you will need one of them.\n\nHint: The circuit assembler recipe is cheaper than the carpenter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":3},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32079,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":35,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":35,"Damage":0,"OreDict":""}]}]},{"questID":596,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:pickaxeHead","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§k§l§1§2§3§lUpgrade of the upgrade of the...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's upgrade time. Unlock redstone and obsidian level for your different tools.\n\nRemember, a fresh tool head starts at one level below. So you'll need to use it enough to level it up before you can mine at the proper level. Go strip-mine a mountain or something."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:shovelHead","Count":2,"Damage":16,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":2,"Damage":16,"OreDict":""},{"id":"TConstruct:swordBlade","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:toolRod","Count":1,"Damage":31,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":31,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":8,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":597,"preRequisites":[496,105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":1840,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lTetrahedrite, stibnite and copper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why you need tetrahedrite or stibnite. Well, antimony can be centrifuged out of it which is very useful for batteries in the LV Age.\nThe veins can be found between Y level 80-120."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1840,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1945,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1035,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:carrotsoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2089,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":598,"preRequisites":[597],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2058,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAntimony","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The most efficient way to get antimony for batteries is to centrifuge stibnite dust, the second most efficient way is to use tetrahedrite dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2058,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:food","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":599,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":381,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThermal centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A machine to get different byproducts out of your crushed and purified ore dust. This machine becomes very useful when you have reactors and want to recycle your depleted fuel rods. It's usefull for tiny piles of Gallium out of Zinc or Sphalerite Ore for your Diodes needed in good circuits.\nIf you can't produce the 2A of LV power for this machine right now, wait until you get to MV and use transformers to power an LV version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":381,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":600,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hunger, no more","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The hunger is constantly following you, consuming you, never letting you rest. The world around you is full of nourishing fruits, vegetables and crafted meals. Use them to curb your insatiable hunger."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:leafygarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:mushroomgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:stalkgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:textilegarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:tropicalgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestthenether:netherGarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:groundgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:berrygarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:desertgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:grassgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:gourdgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:herbgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:watergarden","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"harvestcraft:firmtofuItem","Count":128,"Damage":0,"OreDict":""},{"id":"harvestcraft:silkentofuItem","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"harvestcraft:delightedmealItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:rainbowcurryItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":601,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:builderswand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Building made easy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing blocks by hand can be tedious. Wouldn't it be nice to be able to place blocks like \"Another 9 here\"? Well, good news. Get yourself some of the various building blocks, and I shall reward you with something nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"chisel:rebel","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:laboratoryblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:holystone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:grimstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:hexPlating","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:fantasyblock2","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:fantasyblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:factoryblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:concrete","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:technical","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:tyrian","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:waterstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:voidstone2","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:templeblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:valentines","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:voidstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:warningSign","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"chisel:diamond_block","Count":1,"Damage":12,"OreDict":""},{"id":"chisel:emerald_block","Count":1,"Damage":5,"OreDict":""},{"id":"chisel:lapis_block","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:redstone_block","Count":1,"Damage":9,"OreDict":""},{"id":"chisel:gold_block","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:builderswand","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":602,"preRequisites":[915],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spatial distortions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You detected a weird disturbance in the air around an enderman, I suggest you try to steal some of their pearls and research them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_pearl","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":603,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_chest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dimensional chest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've heard rumors, that the endermen had built laboratories in the End. To invent new machines and weapons in order to attack the Overworld. One of their inventions is a chest, which is somehow linked to all instances of itself. Go and try to find one of those."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":604,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"SIMPLE","storedEnergyRF":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lRF Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Basic Capacitors are RF batteries which can store the RF power you generate. You can put many blocks together to enlarge your total battery capacity - they will merge into one battery.\n\nYou can also change the mode of each face using your wire cutters instead of the GUI. One option is a nice display of input and output RF, but it has to be taller than it is wide.\n\nThese are great for interfacing with RF machines. GT wires will convert to RF, but they send a full amp packet no matter what. Enderio machines properly accept it, but others like Genetics do not and waste most of the packet.\n "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":4,"tag":{"type":"SIMPLE","storedEnergyRF":0},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":605,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slay the Eyes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find and kill Ender-Eyes, guarding the Defence Towers"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.EnderEye","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":606,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:enderman_head","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Ender Guardians","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well if you decided to grind then do it... Kill some of the guardians."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.EnderGuardian","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.Endermage","subtypes":1},{"ignoreNBT":1,"index":2,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.AngryEnderman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":607,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slay the Dragon. (Again)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're bored, you can resurrect the dragon. Or, you could find a chaos dragon, if you dare. Anyway, kill one of those, and you'll be well rewarded."}},"tasks":[{"ignoreNBT":0,"index":0,"targetNBT":{"ForgeData":{},"Initialized":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":200,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":200,"id":"DraconicEvolution.EnderDragon","Motion":[0,0,0],"Leashed":0,"AttackDamage":0,"UUIDLeast":-3850102294886759000,"Health":200,"IsUber":0,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":131653853705906,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"DraconicEvolution.EnderDragon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":608,"preRequisites":[598,105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2089,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§3§5§lA lead about lead that leads to lead dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next step of making batteries is to collect some lead. Lead and galena veins can be found in the Twilight Forest at y levels 5 - 45."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2089,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:mixedsaladItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":609,"preRequisites":[608,598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBattery alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing antimony and lead in the alloy smelter will give you some battery alloy.\nCombine it with some tin cable and voila there is your small battery hull."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":5,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32500,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":933,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":907,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":839,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":610,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":830,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lead, galena and silver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can't find lead, galena or silver in the Overworld or the Nether. So it's time to explore the mysterious Twilight Forest a bit and find this vein at Y level 5 - 40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":830,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":89,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":54,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":611,"preRequisites":[616,617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":32000},"Damage":32511,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSingle use battery: Mercury","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury and acid batteries are single-use batteries. They are crafted fully charged but cannot be re-charged. Once their stored energy is depleted, they can be placed in an extractor to be converted back into small battery hulls.\n\nThey can be placed in the battery slot of any standard LV gregtech machine, in that case they will be depleted before the machine's internal EU storage. They can also be used in LV battery buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":32000},"Damage":32511,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30087,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":612,"preRequisites":[618,617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":18000},"Damage":32510,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSingle use battery: Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury and acid Batteries are single-use batteries. They are crafted fully charged but cannot be re-charged. Once their stored energy is depleted, they can be placed in an extractor to be converted back into small battery hulls.\n\nThey can be placed in the battery slot in any standard LV gregtech machine, in that case they will be depleted before the machine's internal EU storage. They can also be used in LV battery buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":18000},"Damage":32510,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":613,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":50000},"Damage":32519,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Sodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32519,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2017,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":614,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":75000},"Damage":32517,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Cadmium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32517,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2055,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":615,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":100000},"Damage":32518,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Lithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32518,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":616,"preRequisites":[609,494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"mercury","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMercury","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury can be centrifuged out of redstone. If you find some cinnabar ore in the redstone vein you can use that too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30087,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":8,"Damage":826,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":617,"preRequisites":[616,618],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":431,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lFluid canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fluid canner is a fundamental machine, since it is necessary to move fluids around, as well as for filling tin cells, glass bottles, buckets, and even batteries. Most cases you can use the small GT++ tanks instead.\n\nAnother interesting thing about the fluid canner is that it can be transformed into a raintank, by attaching a drain cover on its top (Any machine with a tank actually can be...)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":431,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":618,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining sulfur trioxide and water in the chemical reactor will give you sulfuric acid for your single use acid batteries. If you have made some light or heavy fuel already maybe you have some spare hydrogen sulfide. If not, you can always make sulfuric acid with some sulfur and water in the chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2022,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":619,"preRequisites":[611,612,613,614,615],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":161,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBattery buffer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Batteries can be placed directly in machines. To recharge a battery you need a battery buffer. Buffers can also power an energy network. They come in different sizes: 1, 4, 9 and 16 slots. They can draw 2A and output 1A per battery inserted - watch your wire amperage!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":171,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":620,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatRE","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lIC2 Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some recipes require IC2 batteries. Fill your small battery hull with some molten redstone and you will get your RE-Battery. Molten cells will hurt you, so be careful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:bread","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":621,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":933,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§5§lHow to get sodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A second source for sodium is glauconite ore or glauconite sand. This type of ore vein can be found at Y level 20-50."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":933,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":909,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":877,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":902,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:coleslawburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:sesameseedsItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":622,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHow to get sodium/lithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Salt ore mixes can be found in the Overworld between Y level 50-70. Salt isn't only used to get sodium, it's an important ingredient in many pam's harvestcraft food recipes.\n\n§4Hint: Lepidolite and spodumene are good sources of lithium for your batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":817,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":944,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":920,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":907,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:baconmushroomburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:saltedsunflowerseedsItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":623,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA big meteorite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best way to get rare earth is to find an applied energistics 2 meteorite and grind the blocks into dust. Maybe you completed the quest in the steam age and stored your crushed skystone somewhere? That dust can now be centrifuged into various byproducts like cadmium, neodymium, caesium, lanthanum, and yttrium.\n\n§4Hint: Redstone has rare earth as byproduct. Chalcopyrite (at HV level) and sphalherite (at LV level) have cadmium as byproduct."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyStone","Count":1024,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1024,"Damage":45,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":2891,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2055,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:beetburgerItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:calamaricookedItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":624,"preRequisites":[623,1167,1168],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":231,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBasic canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The canning machine is mainly used to fill tin cans with any kind of food (HV Tier), but it is useful for filling and emptying tin cells with other solid items than food, usually in the form of dust. It can also fill batteries with sulfur, mercury, cadmium, lithium or sodium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":231,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":625,"preRequisites":[84],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lPacking your tanks chests and barrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Packing your chests and barrels without spilling all the things (buildcraft(tm))? \nNo problem! Make a dolly and you can carry your full chests, barrels or storage drawers anywhere you want. But be warned, you will get a slowness debuff so hopefully you don't have to travel very far. Not portable buildcraft and iron tanks can moved so too without loosing fluids.\n\n§4PS Later on you can fly or make a traveller's belt to get around the debuff."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"JABBA:upgradeStructural","Count":3,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""},{"id":"StorageDrawersBop:fullDrawers1","Count":5,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":626,"preRequisites":[98,916,102,495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:moverDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPortable mob spawners..? Cool!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to move the spawners around and build some cool mob farms? That will be no problem if you get the diamond dolly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17506,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"JABBA:moverDiamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":627,"preRequisites":[631,634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:grainbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Grain bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some nice grain bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:grainbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":628,"preRequisites":[440,631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fruitbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fruit bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some tasty fruit bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fruitbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:veggiebaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":629,"preRequisites":[631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:veggiebaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Veggie bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some veggie bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:veggiebaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":630,"preRequisites":[633],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fishtrapbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some fish bait for your fish trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fishtrapbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:veggiebaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":631,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:animaltrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Animal trapping","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of hunting for cows, zombies or sheep? You can build a trap and hope some animal or monster drops will be caught by the netting inside."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:animaltrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:trapdoor","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:hamburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":632,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A fisherman's friend","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Have you ever tried to catch a fish with your bare hands? It's time to craft a fishing rod and get some fish the easy way. Cast your fishing rod in some water and wait until the bobber dips below the surface. Then reel back in your line and hopefully you caught yourself something nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":22809,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":""},{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fish","Count":5,"Damage":3,"OreDict":""},{"id":"harvestcraft:jellyfishrawItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:catfishrawItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":633,"preRequisites":[36,632],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish trapping","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fishing can be very boring. Why not to automate it with a fish trap?"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":634,"preRequisites":[7],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wheat time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to plant some wheat to make some bread or to prepare grain bait for your animal traps."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wheat","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:wheat_seeds","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":635,"preRequisites":[7,634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2881,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Floury flurry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step in making bread is to macerate your wheat into flour with a mortar or a macerator.\n\nFlour can be used in many food recipes for different pam's harvestcraft foods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2881,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Stone"}},"Damage":24,"OreDict":""},{"id":"minecraft:potato","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":636,"preRequisites":[7,637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bread","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First handmade bread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Baking your dough in a Furnace makes some tasty bread.\nYour first bread!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bread","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Steel"}},"Damage":34,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Stone"}},"Damage":24,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Aluminium","MaxDamage":12800,"SecondaryMaterial":"Aluminium"}},"Damage":46,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":637,"preRequisites":[7,635],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32559,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Do'h!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Water and flour makes a dough or two...\nDough can be used in many different food recipes from pam's harvestcraft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32559,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":8,"Damage":0,"OreDict":""},{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":638,"preRequisites":[7,636],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tasty toast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smelt your bread again and you get some toast! Give's you more nutrition points, and unlocks more culinary potential!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":639,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_sulfuricnaphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric naphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another distillate you can make out of oil is sulfuric naphtha with a burn value of 40,000 EU per cell in the gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":30736,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30001,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":640,"preRequisites":[840],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_lpg","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLPG","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuging some Butane or Propane gives you LPG with a burn value of 320,000 EU, the same as naphtha. Also it is a way to get methane and eventually epichlorohydrin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":66,"Damage":30742,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":641,"preRequisites":[639],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_naphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNaphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can process sulfuric naphtha to fluid naphtha which has a burn value of 320,000 EU in the gas turbine.\nNaphtha is also a base product for polyethylene and polycaprolactam - a great substitute for string."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":30739,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":642,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"gas_sulfuricgas","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another distillate for your gas turbine you can make out of oil is sulfuric gas with a burn value of 25,000 EU per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30734,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30012,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":643,"preRequisites":[642,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"gas_gas","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lRefinery gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Refine your gas in a chemical reactor with hydrogen gas to give it a better burn value of 160,000 EU, and maybe use it to make methane gas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30735,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30715,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":644,"preRequisites":[643],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30673,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMethane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Distilling some \"refinery gases\" gives you some methane gas. There are many more ways to get methane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":645,"preRequisites":[65,486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:hangglider","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glider wings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If for some reason you want to be able to jump down a cliff without getting the message \"Player X fell from a high place\". A great idea would be to find a way to soften your landing first. The hang glider should do that just fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":10,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenBlocks:generic","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"OpenBlocks:generic","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"OpenBlocks:hangglider","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":646,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectrotine battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The electrotine battery is exclusively used in project red machines and the jetpack.\nElectrotine is a mixture of redstone and electrum dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":6,"Damage":56,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.emptybattery","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":24,"Damage":56,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":647,"preRequisites":[645,646],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Expansion:projectred.expansion.electric_screwdriver","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Electrotine jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your glider gets you to the ground safely but it does not have any method to get up. After you researched electrotine you discovered that it is powerful enough for your first jetpack.\nA diamond chestplate surrounded with 4 electrotine batteries is powerful enough to bring you up in the air.\n\nIt does not have a hover mode so you better take your glider with you. \n\nHint: This jetpack can't fly higher than Y level 128."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.emptybattery","Count":4,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1422,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17811,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":6400,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":32,"Damage":56,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":648,"preRequisites":[647],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.drawplate","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refill your jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GREAT.... you now have an empty jetpack.\nYou need 25 electrotine dust to completely fill it.\nLet's craft an electrotine generator and a charging bench to use the power of electrotine. \nYou will very quickly discover that, while it is fast and cheap, it's empty in the blink of an eye. Despite this, it is useful in combination with the hang glider to get into the air and to get away from hairy situations."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.machine1","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.machine2","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":25,"Damage":56,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":56,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.solar_panel","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":649,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:coalJetpack","Count":1,"tag":{"jetpackData":{}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Coal steam jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your coal jetpack needs coal and water to produce steam. After a short warm-up period you can go and take it for a ride. Keep in mind you will need your glider to make a soft landing.\n\nPut your jetpack on your back and hit Shift and the adventure backpacks action-key to start it.\n\nMax flying height for these jetpacks is the Y level of 185.\n\nVertical velocity decreases linearly with height after overcoming optimal height - 135 for jetpack and 100 for copter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":2,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5130,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:coalJetpack","Count":1,"tag":{"wearableData":{},"jetpackData":{}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:fuel.coke","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5130,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":650,"preRequisites":[532],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:copterPack","Count":1,"tag":{"fuelTank":{"Empty":""},"tickCounter":3,"status":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Copter jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The copter jetpack is the first jetpack with a hover mode. It is using all kind of different fuel types in buckets. \nBuckets of creosote, lava, oil, cetane, diesel,ethanol, and fuel will work.\nEquip your jetpack and hit Shift and the adventure backpacks action-key. You can also switch between hover and normal mode.\n\nMax flying height is limited to Y level 200. \n\nVertical velocity decreases linearly with height after overcoming optimal height - 135 for jetpack and 100 for copter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5133,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32641,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":6,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5130,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:copterPack","Count":1,"tag":{"fuelTank":{"Empty":""},"tickCounter":3,"status":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BuildCraft|Energy:bucketFuel","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":3,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":651,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{"charge":30000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first electrical jetpack. You need to hit the IC2 mode-switch key to toggle between normal mode and hover mode while holding down the jump key. When descending, remember to shut off hover mode or else you'll drain your jetpack.\n\nThe only limitation is that you can't fly higher than Y level 185.\n\nFor charging on the go, you can craft a charging crystal from ic2 charging components. You have to take the backpack out of the armor slot and put it in your hotbar and activate the charger by sneak-clicking. There are better models than this one old one I don't need any more. Look in NEI.\n\nLater on GT++ Charging Packs are belts that can charge everything in your inventory including armor. Check NEI for latest recipes.\n\nFinally, the GT++ wireless charger will charge everything in your inventory, including the jetpack, from your base at long ranges. A quest is unlocked once you finish your nanosuit. Just remember when you are off world or in the Nether that your jetpack isn't charging!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorBatpack","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":6,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemBatChargeRE","Count":1,"tag":{"charge":40000},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":652,"preRequisites":[651],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorJetpack","Count":1,"tag":{"Fluid":{"FluidName":"ic2biogas","Amount":30000}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fueled jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This jetpack uses IC2 biogas and can fly up to Y level 245.\nYou can switch between hover and normal mode using the IC2 mode-switch key.\n\nYour jetpack can be (re-)fueled in the IC2 fluid canner with 30 buckets/cells worth of biogas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18306,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:reactorCoolantSix","Count":1,"Damage":1,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":6,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorJetpack","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":30,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":653,"preRequisites":[176,692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:advJetpack","Count":1,"tag":{"charge":3000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced electric jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced electric jetpack is an upgraded version of the electric jetpack.\nWhile worn in the chest armor slot and charged with EU, it allows the player to fly. It provides no armor protection, but will charge tools being used in the same manner as the advanced lappack from its 3.000.000 EU internal storage.\n\nThe advanced electric jetpack is limited to a maximum flying height of Y level 256."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17028,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1641,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GraviSuite:advJetpack","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32603,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":654,"preRequisites":[653,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:advNanoChestPlate","Count":1,"tag":{"charge":3000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced nano chestplate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining the advanced electric jetpack and nanosuit yields you the advanced nano chestplate. Now you have the protection of the chestplate combined with the freedom of movement of the jetpack."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GraviSuite:advJetpack","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoChestplate","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17316,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1644,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GraviSuite:advNanoChestPlate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32604,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":655,"preRequisites":[653,213,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:graviChestPlate","Count":1,"tag":{"charge":30000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gravi suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gravi chestplate is the ultimate quantum armor combined with a high powered jetpack. It also has hidden features that you need to discover while wearing the whole quantum armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"GraviSuite:ultimateLappack","Count":1,"Damage":27,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":26,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":3,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":2,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":6,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32088,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":22328,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32674,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32607,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27328,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"GraviSuite:graviChestPlate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32088,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32607,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":656,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.iron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lIron shields","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have been using your hide shield long enough. After you make your first tools, grab a bit of iron ore and make a nice iron shield."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":2,"Damage":2,"OreDict":""},{"id":"TConstruct:toughBinding","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:toughRod","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.iron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":52,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":657,"preRequisites":[36,450],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.stone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lStone spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your wooden spear with a stone arrowhead and iron screws to a stone spear.\nThis spear has better durability than the wooden one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27032,"OreDict":"screwIron"},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.stone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":658,"preRequisites":[657,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.iron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lIron spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your wooden spear with an iron arrowhead and two steel screws to an iron spear. \nThe iron spear has better durability than the stone variant."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27305,"OreDict":""},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.iron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":59,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":659,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiamond spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At MV Tier you can upgrade your iron spear to a diamond one. Get a diamond arrowhead, two stainless steel screws and a wooden spear.\nThis spear has superior durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartArrowHead","Count":1,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":660,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiamond shield","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your iron shield got very old. With a shield made from diamond plates you can maintain block for up to 5 seconds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartLargePlate","Count":2,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"TGregworks:tGregToolPartToughBind","Count":1,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":2,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":57,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":62,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":661,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBow, arrows and quiver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wow, your first handmade *ehm* machine made bow. You find out that you can put the bow in the mine and blade battlegears slots. Now it's time to make a quiver and maybe some arrows. \n\nTo place arrows in the quiver, put the quiver and the stack of arrows in a crafting grid. Make sure the Gameplay key Special is deconflicted. By default it is Z. When you have the bow selected, use Z to swap arrow slots in the quiver.\n\nWhile it seems like these might be worthless, these arrows do have special uses. You really want to share a cookies with friends, don't you?\n\nLet's go hunt a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"battlegear2:quiver","Count":1,"tag":{"current":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:arrow","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"battlegear2:mb.arrow","Count":10,"Damage":0,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":6,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":2,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":5,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":3,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":1,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":662,"preRequisites":[664],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic arc furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The arc furnace is an alternative to smelting stuff back into components and making wrought iron. The recipes use oxygen and 3 amperes of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":663,"preRequisites":[662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:upgradeModule","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFaster steel production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A faster alternative to steel production is to use the arc furnace and smelt the iron ingots into wrought iron ingots. Then macerate them to dust and smelt them very fast in the EBF to steel. (Some might even dare arc furnacing the dust itself...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11304,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":664,"preRequisites":[619],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":171,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV battery buffer 9 slots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your battery buffer to hold 9 batteries which allows max 9 ampere output.\nUseful for your EBF and the arc furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":181,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":665,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kitchenware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To cook some healthy food you need a few tools crafted first.\nSaucepan, \npot, \nrolling pin, \nmortar, \nmixing bowl, \nsoft mallet, \nskillet, \nknife..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:saucepanItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":46,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":""},{"id":"harvestcraft:mixingbowlItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":14,"OreDict":""},{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:firmtofuItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:flourItem","Count":16,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":666,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:boat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Row, row, row your boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You live close to the water and don't have a boat?\nYou need wooden planks, slabs and a knife to craft one. (This is also quest id 666, be careful, something is going on.)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:boat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:watergarden","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":667,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trainspotting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wooden tracks can be made without any machine. Functionally equivalent to normal rails, but with a lower maximum speed (for safety reasons).\n\nHint: You can use your wooden rails for Steve's carts farms."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":60,"Damage":0,"OreDict":"slabWood"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.tie","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:stick","Count":4,"Damage":0,"OreDict":"stickWood"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.rail","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.railbed","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"Railcraft:part.railbed","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":668,"preRequisites":[666],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rubber boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The rubber dinghy requires only a few rubber plates. Like the vanilla wooden boat, it will break and dismantle whenever it hits a surface, however instead of returning sticks and planks, it will return a damaged rubber dinghy, which can be re-crafted with two pieces of rubber back into a useable rubber dinghy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":669,"preRequisites":[673,672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inflatable boot","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I meant to say boat... The inflatable boat is the first boat that doesn't break on impact with a solid block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCarbonMesh","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":670,"preRequisites":[673,672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon fiber boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike all other boats, this amazing carbon fiber canoe is COMPLETELY INDESTRUCTIBLE!* This means that you can smash it into as many beaches, lily pads and alligators as you like, the carbon fiber canoe won't take a scratch!\n\nWarning: We are not held responsible for any damage caused by riding the carbon fiber canoe into a lava lake or the Void.\n\n*Therefore, warranty is NOT included."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":671,"preRequisites":[669,670],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Electric boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The electric boat works mostly like a vanilla boat, chugging through the water at a decent pace. It will hopefully drop itself once you crash, which is slightly nicer than the usual sticks. That's all well and good, but what if we utilize the electric engine? Wearing an energy storage device in your chestplate slot, like a batpack or energypack, will cause the boat to drain energy from it and propel you forward at supersonic speed! Doing this will consume about 100 EU per block traveled, so even a decent batpack won't last long!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ElectricBoatHull","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""},{"id":"minecraft:waterlily","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":672,"preRequisites":[668],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.ExtruderShapeBoat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boat shape?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Really? Yes for the more advanced boats you need a new shape form.\nYou need to make an Extruder first to progress further."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ShapeBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ExtruderShapeBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":673,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":281,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV extruder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The extruder is not very useful in the LV age. But it will extrude your next tier of boat, make rubber sheets more efficiently, get you extra fluid cells, or make some Tinkers Construct tool parts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":281,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":674,"preRequisites":[675,676],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.slow.junction"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wooden rail variants","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wooden junction, wye and switch tracks need an assembling machine to craft. They allow you to join and switch to tracks going to different locations.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.junction"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.switch"},"Damage":19986,"OreDict":""},{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.wye"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"Railcraft:part.railbed","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":675,"preRequisites":[667,76,48],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:signal","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Switch lever","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The switch lever is the manual version of the switch motor, requiring a player to operate it instead of a redstone signal. \nIt is used in various signaling systems, mainly to change the way switch tracks and wye tracks work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:signal","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:part.rail","Count":16,"Damage":2,"OreDict":""},{"id":"Railcraft:part.rail","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":676,"preRequisites":[675],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:tool.crowbar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crowbar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The crowbar comes in a Railcraft and a gregtech variant. It is used to manipulate machines from railcraft, remove plates and any other covers (pumps, conveyor belts, etc.) from gregtech pipes and machines as well as breaking certain objects faster, such as tracks. This tool is also used to access certain inventories from Railcraft.\nHold a crowbar and shift + right click to attach carts. Click the starting cart then continue to click to add more carts to the link. Carts will act slower the more connections are made.\n\nThe crowbar can be used as a weapon, though it costs twice as much durability on attack (just like any other non weapon tool...)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:tool.crowbar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":677,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Minecart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you craft your first cart the journey can begin...\nWell, not really. You will need some kind of tracks first."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23032,"OreDict":"stickAnyIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28032,"OreDict":"ringAnyIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17032,"OreDict":"plateAnyIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""},{"id":"Railcraft:track","Count":8,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":678,"preRequisites":[634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Fast Food > Slow Food","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three fast food lootbags give a better one = Slow Food Lootbag. (Since when is slow food better?)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":679,"preRequisites":[638,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slow Food > Haute Cuisine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three slow food lootbags give a better one = Haute Cuisine Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""}]}]},{"questID":680,"preRequisites":[679],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Haute Cuisine > Dessert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Six haute cuisine lootbags give a better one = Dessert Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":6,"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":31,"OreDict":""}]}]},{"questID":681,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Transportation Class 3 > Transportation Class 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three transportation class 3 lootbags give a better one = Transportation Class 2 Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":32,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]}]},{"questID":682,"preRequisites":[681],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Transportation Class 2 > Transportation Class 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three transportation class 2 Lootbags give a better one = Transportation Class 1 Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":34,"OreDict":""}]}]},{"questID":683,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:chestplateMud","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wet dirt armor?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't have any armor, \"mud armor\" is better than nothing. Mud can be found in some wet biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mudball","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"BiomesOPlenty:helmetMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:chestplateMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:leggingsMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:bootsMud","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:mudball","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":684,"preRequisites":[444],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:chestplateWood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wooden armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you can't find mud you can make very poor armor out of wood. Cutting down a few trees to make a set should do. You will need a soft mallet too, so save a few logs for that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":24,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:helmetWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:chestplateWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:leggingsWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:bootsWood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:mudball","Count":24,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":685,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron armor is much better than the leather armor. Especially when you have to go outside during the night."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:iron_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":3}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":686,"preRequisites":[42],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Leather armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Killing some cows will give you enough leather to craft a complete set of leather armor. \n\nHint: You are able to dye this armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:leather_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:dye","Count":8,"Damage":0,"OreDict":"dyeBlack"},{"id":"minecraft:dye","Count":8,"Damage":1,"OreDict":"dyeRed"},{"id":"minecraft:dye","Count":8,"Damage":2,"OreDict":"dyeGreen"},{"id":"minecraft:dye","Count":8,"Damage":3,"OreDict":"dyeBrown"},{"id":"minecraft:dye","Count":8,"Damage":4,"OreDict":"dyeBlue"},{"id":"minecraft:dye","Count":8,"Damage":5,"OreDict":"dyePurple"},{"id":"minecraft:dye","Count":8,"Damage":6,"OreDict":"dyeCyan"},{"id":"minecraft:dye","Count":8,"Damage":7,"OreDict":"dyeLightGray"},{"id":"minecraft:dye","Count":8,"Damage":8,"OreDict":"dyeGray"},{"id":"minecraft:dye","Count":8,"Damage":9,"OreDict":"dyePink"},{"id":"minecraft:dye","Count":8,"Damage":10,"OreDict":"dyeLime"},{"id":"minecraft:dye","Count":8,"Damage":11,"OreDict":"dyeYellow"},{"id":"minecraft:dye","Count":8,"Damage":12,"OreDict":"dyeLightBlue"},{"id":"minecraft:dye","Count":8,"Damage":13,"OreDict":"dyeMagenta"},{"id":"minecraft:dye","Count":8,"Damage":14,"OreDict":"dyeOrange"},{"id":"minecraft:dye","Count":8,"Damage":15,"OreDict":"dyeWhite"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":687,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorBronzeChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bronze armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bronze armor has the same abilities as iron armor. Same durability, same protection and same enchantment capability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorBronzeHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeLegs","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":688,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Nice to have\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gold armor is a \"nice to have\" armor. The durability is very low but you look expensive when you wear it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:golden_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:golden_apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:golden_apple","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":689,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Oh shiny\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond armor is the best armor in Vanilla Minecraft, but over here there are much better armors available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:diamond_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:diamondApple","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":29500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":690,"preRequisites":[685,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:chainmail_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not really better but fancy. The chain mail armor is made out of steel rings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":28305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:chainmail_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":5,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":691,"preRequisites":[685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor 2.5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The steel armor has more durability than the iron/bronze or chainmail armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:armor.steel.helmet","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.legs","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":1}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":4}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":692,"preRequisites":[685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Composite vest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining the strength of advanced alloy plates with the steel chestplate makes your vest very hard. Now you have double the durability and increased armor points by 1.5."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartAlloy","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":18,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":693,"preRequisites":[35,38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFallen from the sky","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are big meteors everywhere and you are wondering why you need to mine them now?\nSkystone is a good source of rare earth metals in the LV age. \nInside the meteor you can find a skystone chest containing some processor press plates. Save them for later, as they are really important. Plus the chest is nice, and can be placed underneath blocks and still opened.\n\nHint: If your all your surface meteors have been raided, put some skystone in your orefinder to find underground ones. Often there is a second meteor right next to the one on the surface!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyStone","Count":256,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:tile.BlockSkyChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":35}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":694,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:anvil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOne Anvil... Better make that two!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your brand-new Compressor you are able to make some metal blocks for your new anvil. Better craft two anvils, one will be required for the forge hammer.\n\n§4With the anvil you can repair, rename and enchant armor and tools.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_block","Count":10,"Damage":0,"OreDict":"blockIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":"screwAnyIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:anvil","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":695,"preRequisites":[74,35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§o§1§2§3§r§r§r§r§r§r§3§4§r§o§7§7§8§9§9§5§3§1§0§r§o§m§k§c§e§l§r§1§1§r§6§lAutomation tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to automate your smeltery because you are planning to make stacks of glass blocks? \nNo problem, craft a large bronze pipe and place it under the faucet. Now the molten fluid will flow inside the pipe. Under or next to the pipe you have to place the casting basins or tables.\nA hopper and a chest underneath would auto-output products. NOTE: Faucets will output precisely 144L each activation if you toggle it off immediately. That's going to have some uses later on..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31032,"OreDict":"gearIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:hopper","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:GlassBlock","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":696,"preRequisites":[695,479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:comparator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAutomation tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want a better automation than using pipes? Sure, craft a comparator and link it with redstone dust placed on the ground. The redstone needs to be adjacent to the faucet to activate the crafting process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:comparator","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone_torch","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":697,"preRequisites":[76,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":13305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§l2x steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steel production is so slow. If you got enough bricks and clay, build a second BBF. Build it attached to the first one, so they can share a wall and you will save some bricks, clay and concrete."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":24,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":698,"preRequisites":[697],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":15305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§l4x steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not even two BBFs are fast enough...Can you figure out how to save the most bricks making 4?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":40,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":699,"preRequisites":[91,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWhy one coke oven when you can have ten?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your bricked blast furnace uses coal like hell and your steam boiler too? Well it's time to make more coke ovens and automate them a bit. Wooden fluid pipes and tin item pipes will help you reach your goal.\n\nSearch NEI for a more efficient way to make coke oven bricks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":260,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":11,"Damage":32630,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":32610,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":5590,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":5101,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:cube","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"JABBA:barrel","Count":10,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeCore","Count":9,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":100,"Damage":0,"OreDict":""}]}]},{"questID":700,"preRequisites":[701],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:EldritchOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"How dark can you go?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Seriously, how dark can one be? You are sure the face in that crystal was nothing but imagination..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:EldritchOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":701,"preRequisites":[706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:transcendentBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ascended","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel empowered, light, almost like a ghost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:transcendentBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":702,"preRequisites":[703,928],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":27,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"1023 Buckets of blood in one slate! How much more I can store, oh I wish I would know. Then I add one and check if it works. 1024 buckets of blood in one slate! ... ..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":2,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":703,"preRequisites":[714],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powerful shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The demons summoned are rather strong, but their souls contain immense power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":20,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":20,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":704,"preRequisites":[421,927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:demonicSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tier 4 slates: Getting close."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:demonicSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":705,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:watering_can","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAccelerated plant growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plants grow very slowly, you might've discovered that by now. So why you don't counter that? A watering can will come in handy very soon."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"ExtraUtilities:watering_can","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:supremepizzaItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":706,"preRequisites":[702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:dawnScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ethereal chalk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Top tier chalk, for fancy wall paintings?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:dawnScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":707,"preRequisites":[702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Archmage orb. Let them come!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 5 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":708,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:masterBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Master orb: Getting close","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 4 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:masterBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":709,"preRequisites":[708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:duskScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Elemental chalk II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enhanced elemental chalk, to write \"darker\" runes than you're used to..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:duskScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":710,"preRequisites":[708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will want both runes. Rune of superior capacity to increase the storage of your blood altar, and rune of the orb. Later it is required if you want to advance to higher levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":711,"preRequisites":[707],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final frontier: There are not many runes available. The acceleration rune allows you to speed up the interaction with external tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":712,"preRequisites":[709],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More powerful rituals require dusk runes. With your new dusk chalk, you can enhance your ritual diviner to place those. Allowing you to perform a lot more rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":713,"preRequisites":[706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last rune so far, used for the most powerful rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":2,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":714,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"magicales","capacity":16000}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Convocation of the damned","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to open a portal to the demons we're using all the time. What could possibly go wrong? (It is recommended to do this ritual on a planet, as the demon city will spread quite a bit...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"magicales","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"potentia","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"incendium","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"terrae","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"tenebrae","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"sanctus","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"aether","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"aquasalus","capacity":16000}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:activationCrystal","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":715,"preRequisites":[703],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Imbued spell upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With these new shards you are able to craft the most powerful spell components. Maybe it's time to upgrade your mining spell?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":8,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":716,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFind some Certus Quartz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nether is full of different kinds of quartz. For the emitter and the sensor you will need to find some certus quartz."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":8516,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":5,"Damage":32107,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:glowstone_dust","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":2,"Damage":0,"OreDict":""},{"id":"Natura:barleyFood","Count":3,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":717,"preRequisites":[748,747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§5§lGood Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits are an improvement on basic circuits. They are a component of all MV gregtech machines. Be sure you build the electric blast furnace first, so you can process some aluminium dust into ingots.\n\n§4This will also open the Project Red tab, one of the early automation options."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":12,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32702,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32119,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32102,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":718,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockCrop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMoron's Manual to Fecund Farms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you ever wanted to know how crop breeding works you are in the right place. Get some crops (the sticks) and some seeds from farming with a hoe or mattock. You can also place some plants and berries directly on crop sticks. Good plants to start with are flowers, wheat, cactus and sugarcane. \n\nMake a plot of farmland with your tool and place water in the middle. For now, make 3x1 plots, separated by a row of dirt or cobble. You want to be able to see the center of each column of 3x1 plots all at once, like this:\nFFFdddFFF\ndddFFFddd\nFFFdddFFF\ndddFFFddd\nFFFdWdFFF\ndddFFFddd\nFFFdddFFF\ndddFFFddd \nFFFdddFFF\nNow place crop sticks in each end of the 3x1 plot. Then place the seeds on the sticks and wait a bit.\n\nWhen they are almost fully grown you can put double crop sticks in the center spots by using crop sticks on already placed crop sticks. This center area can now grow new crops, even new species.\n\nWith some luck you might get a new unknown seed which can be scanned later.\n\nWeeds need to be removed with a trowel or spade otherwise your field will become overgrown by them.\n\nUsing 3x1 plots is easy and not much work. Check them every 5-10 minutes to remove weeds and gather new seeds. If you forget, you only lose one or two seeds. \n\nIf you find a really nice seed, you can do 3x3 or 5x5 plots with the nice seed in the middle and others next to it for crossing. But this requires more babysitting since weeds could destroy the whole field.\n\nDon't leave new crops in these intensive fields. Pull them out and hopefully get a seedbag. Put low stat seeds in production fields that don't require babysitting. Keep the high stat seeds for more crossing. \n\nCrossing happens when 2 or more almost mature crops are next to a double cropstick. There is a 90 percent change of getting the same species as the parents. The rest of the time will be a mutation. More details in the IC2 cropnalyzer quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wheat_seeds","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:reeds","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":16,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":719,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"potato","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First Breeding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"New plants have grown on your crop sticks. You can harvest the crop by right clicking it.\n\nLeft clicking with a seed bag will destroy the plant and replace it with the seedbag, so be careful. Collect 8 seeds of any kind.\n\nTo unlock the next quest, you will need the LV scanner.\n\nIf you haven't already, go back to Steam and build some Filing Cabinets. They make storing and moving large quantities of seeds a breeze. Plus they will properly sort the seeds based on name. To find a specific seed, type its name in the NEI search bar, and double click the bar so it highlights yellow. Now you can look through the Filing Cabinet and find the exact seedbag you want."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":8,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":720,"preRequisites":[724,531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weeds, weeds, and more weeds. You get so many of them while cross breeding. \nNeed some biogas cells for your power production in exchange? Or maybe some glowstone to light up your fields?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemWeed","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":128,"Damage":7,"OreDict":""},{"id":"minecraft:glowstone","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":721,"preRequisites":[531,719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:N Crops","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unknown seeds no more","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have a lot of unknown seeds already. Use your scanner to scan all the seeds.\n \nSeeds can be planted again to breed better and more resilient crops.\n\nLater you can use your portable scanner to see the crop stats while still in the ground.\n\nGrowability depends on having dirt beneath your crop(4 max), biome (swampy is best, followed by jungle and mushroom - basically any humid or wet biome such as tropical rainforest or bayou), air quality (Up toY=124 and don't place a lot above/around your plants), hydration, and fertilizer. When the crop tier and plant stats get high enough, they will actually die without enough Growability.\n\nAs long as you water and fertilize them, you can pretty much grow crops anywhere, but as you improve the stats you have to optimize their environmental conditions.\n\nIf the Growth stat gets too high, greather than 24 or so, the plant will spread weeds onto neighbors.\n\nSome crops, such as Redwheat, require certain light levels to crossbreed or grow."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":32,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone","Count":8,"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":722,"preRequisites":[719,543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFertilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speed up your plant growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To speed up the growth process a bit you can use a fertilizer. You will note, however, that bone meal no longer works. A bit of ash, apatite or calcite mixed with some water in a chemical reactor will give you the fertilizer you need. Apply by hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFertilizer","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_hoe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":723,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:carrot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potatos, Carrots, Pumpkins and Melons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your seeds have three different values: Growth, gain, and resistance (GGR).\n\nThe only way to change a crop's GGR without 3rd party tools is through cross breeding. When two plants cross-breed, the resulting plant will have a GGR score that is between both \"parent\" plants' GGR. Sometimes it will also be a little bit higher or lower. Thus, to obtain high GGR scores you must go through numerous generations of crossbreeding.\n\nThe highest score for GGR is 31."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:carrot","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:melon_block","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":724,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weed will show up from time to time on your crop sticks. Be careful and harvest the weed with your weed trowel before the whole field becomes overgrown with them and they destroy all your plants. Later you can make some weed Ex to destroy it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemWeedingTrowel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"IC2:itemWeed","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":725,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flower Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Growing dyes on crops sticks? Try to plant some flowers. If you cross breed Rose and Dandelion flowers you maybe get a new flower and new dyes with different colors.\n\nYou will need to plant 4 vanilla flowers to get them on a cropstick.\n\nTo get \"Rose Seeds\" place poppies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":8,"tag":{"owner":"IC2","name":"rose","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":8,"tag":{"owner":"IC2","name":"dandelion","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":32,"Damage":1,"OreDict":""},{"id":"minecraft:dye","Count":32,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"blackthorn","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"cyazint","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":726,"preRequisites":[543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChemical rubber production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A much more efficient way to make insulated cables is by making molten rubber in a chemical reactor which can be applied to a cable in the assembling machine. When you put both machines next to each other you can output the molten rubber directly to the assembling machine by clicking the fluid auto-output button on the chemical reactor. Make sure to set the correct side of the reactor as output side by wrenching it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2896,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":2022,"OreDict":"dustSulfur"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":30,"Damage":1246,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":30,"Damage":1366,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":727,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:fullDrawers1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lBetter than barrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While barrels offer a slot for a single item, drawers can have up to 4 slots each (holding 16 stacks per slot). Once you reach HV you can combine them with some ProjectRed pipes to set up a \"ghetto ME storage system\" (Tec2k17).\n\nJust watch out, they do come with some downsides. You won't be able to make them point up or down, and you can only acces the contents from the front (automation can use any side). \n\nAlso, if placed on top of a hopper, they can bug out and void items when the hopper is full. If you plan on that, use barrels or chests instead."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:fullDrawers1","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:butteredpotatoItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":728,"preRequisites":[727],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:halfDrawers2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCompact Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They are very compact and add some fanciness to your glorious dirt base. "}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:halfDrawers2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:halfDrawers4","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:loadedbakedpotatoItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":729,"preRequisites":[727,728],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:framingTable","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFraming Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can really make some swaggy and even FANCIER drawers using this table, all you have to do is place some decorative blocks (works with almost ALL decorative blocks) and it will take their texture, the TOP left is the outer Square bottom left is for the front face and top right is for the borders."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:framingTable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:fullCustom1","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullCustom2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullCustom4","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":730,"preRequisites":[717,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBio Fuels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are using steam, creosote, and possibly oil plus their by-products to generate Power. It's time to start with bio diesel. You can use wheat, sugarcane, apples, saplings or fish.\n\nBe sure you have a managed Forestry farm, Steve's Cart Farm, IC2 Crop Sticks with a harvester, or a lot of fish catchers because you need plenty of biomaterials for constant biodiesel production.\n\n§4Hint: Hazelnut is the ultimative source for biodiesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:reeds","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:apple","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:wheat","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wheat_seeds","Count":32,"Damage":0,"OreDict":""},{"id":"Forestry:fertilizerCompound","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":731,"preRequisites":[730],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFuelPlantBall","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPlant balls","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step is to compress plantballs out of your wheat. Your LV compressor is too slow for it. I suggest crafting 4 MV compressors for the new bio diesel processing line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":732,"preRequisites":[731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MaceratedPlantmass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPlant Mass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Macerate the plantballs down to plant mass for better processing. In the LV and MV tiers you get only one plant mass per, in HV tier you recieve two. IV macerator gives up to four of them with a chance of 50 percent and 25 percent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MaceratedPlantmass","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":733,"preRequisites":[732,1322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBiochaff","Count":32,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBio Chaff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plant mass needs to be centrifuged into bio chaff, the base material to make biomass. You need 1 or 2 MV centrifuges to run the new production line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBiochaff","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":23019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":734,"preRequisites":[733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay One: IC 2 Fluid Canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first way you get biomass out of bio chaff is to use the IC2 Fluid Canner. One bucket of water and one bio chaff gives one bucket of biomass. \n\n§4In MV Tier you can use the pyrolyze oven to do it in a more efficient way."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockMachine","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":28880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":735,"preRequisites":[733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":492,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay Two: Brewery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are lucky and find some brewing stands or familiar enough with Thaumcraft to make one you can craft a brewery. You get 750mb of biomass out of 750mb water and 1 bio chaff. \n\n§4In MV tier you can use the pyrolyze oven to do it in a more efficient way."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":492,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":736,"preRequisites":[1323],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":512,"Damage":30691,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFermented Biomass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the MV fermenter you can produce fermented biomass. This is the base product to make methane, ethanol and methanol.\nWhen you reach HV tier there's a more efficient way to process it - the distillation tower multiblock."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":502,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30691,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":737,"preRequisites":[127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.drawplate","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Can u eat those? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No you can't eat them but you can add them to your routed pipes. Without chips routed pipes can't do anything on their own, chips also have a GUI to configure them which can be opened by right clicking. \nThere are 8 types of chips:\n\n-Item extractor chip can be used to send items from its inventory to responder, dynamic responder, terminator and overflow responder chips in a pipe network. \n\n-Item responder chip will request items from the extractor chips in your network which match the filter configured to the inventory connected to the responder chip. Chips with higher priority value will receive items first until the inventory is full then will be sent to other inventories with valid filters and remaining space.\n\n-Dynamic item responder chip will request items from the extractor chips in your network that match items inside the dynamic item responder connected inventory. This chip has to be in the same interface pipe as the item responder chip in order to work. Priority rules apply here as well. \n\n-Item overflow responder works exactly the same as the item responder chip, however it only accepts items that cannot go to an item responder chip, dynamic item responder chip, or item terminator chip. \n\n-Item terminator chip works as a backup for responder chips.\n\n-Item broadcaster chip will show you the inventory connected to the routed request pipe on the pipe network and can be used to retrieve items from it. They can also extract from the side you configure. \n\n-Item stock keeper chip will constantly check the network for items and pull them to its pipe. If the chip is set to pull when empty, it will only pull if the inventory next to it is empty, otherwise it will pull when there are less items in the inventory than configured in the chip.\n\n-Item crafting chips craft things. \n\n-Item crafting extension chips are placed inside the item crafting chips. Make sure you randomize the id."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":4,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":738,"preRequisites":[127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":2,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Routed Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are six types of routed pipes: \n\n-Junction pipe is used to form an intersection that will allow other routed pipes to communicate. \n\n-Interface pipe will connect to an inventory allowing you to extract or insert items, chips can be used to control the logic. \n\n-Request pipe will allow requesting only specific items to be send through pipes.\n\n-Firewall pipe can control which items can pass through them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":0,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":739,"preRequisites":[738,737],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ghetto ME System","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are familiar with the mod it's time to organize items in your base a bit. These are the things you need in order to get a basic extract/insert system.\n\nFirst of all you will need a drawer controller. You can pick it from here or craft it yourself and place it down. Next to it add as much drawers as you want, and make sure they are touching each other or the controller.\n\nThe next step is to connect a routed interface pipe to your drawer controller. Take the item responder chip and configure it to filter mode: blacklist (this will allow you to get any items from your system) and add the chip to the routed interface pipe by right clicking on it. Don't forget the dynamic item responder.\n\nIn order to allow your system to be able to see items you need to add the item broadcast chip TO THE SAME ROUTED INTERFACE PIPE WHICH IS CONNECTED TO THE DRAWER CONTROLLER.\n\nThe last step is to connect a routed request pipe IN THE SAME NETWORK AS THE ROUTED INTERFACE PIPE and right click it to access the GUI. You can only extract items from it. In order to insert items simply right click them on the drawer controller. \n\nYou can find more complex tutorials on youtube for autocrafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":2,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":740,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":282,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lExtrude all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you hit the MV tier and it's time to get a better ratio when making sticks, pipes, wires, plates and many more parts. Most recipes use more than 32 EU/t so better make an MV extruder. After crafting the machine you need some extruder shapes for the different types of parts you want to make.\n\n§4Most of the Tinkers Gregworks tool parts are made in the extruder."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32351,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32350,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32352,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32353,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32356,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32358,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32359,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32360,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32361,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32362,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32363,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32357,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32372,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32375,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32374,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32355,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32373,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":282,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":741,"preRequisites":[1126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:ToolForgeBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§3§lTool Forge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally you get your first alumite. Now it's time to craft a tool forge for making bigger Tinkers tools. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":2,"Damage":15,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""},{"id":"TConstruct:CraftingSlab","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:SearedSlab","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:ToolForgeBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":742,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":3509,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":16,"ModDurability":0,"MiningSpeedExtra":700,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":3509,"MiningSpeed2":700,"HeadEXP":0,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"Steel Hammer"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOne Block mining is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making a hammer you are now able to mine a shaft of 3x3 blocks. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. Higher tier metals require the MV extruder. You'll need a hammer head,two large plates and a large rod for your hammer. Be careful in the Nether or you could be boiled in lava very quickly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":21,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":3509,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":16,"ModDurability":0,"MiningSpeedExtra":700,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":3509,"MiningSpeed2":700,"HeadEXP":0,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"Hammer"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":743,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:lumberaxe","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2193,"BaseAttack":4,"ToolEXP":0,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2193,"MiningSpeed2":700,"Head":16,"Attack":4,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Steel Lumber Axe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lCutting a Tree log by log is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making a lumber axe you are now able to cut down the entire tree in one hit. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. Higher tier metals require the MV extruder. Don't forget your backpack when you are cutting a sacred oak tree down."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":17,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:lumberaxe","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2193,"BaseAttack":4,"ToolEXP":0,"Built":1,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2193,"MiningSpeed2":700,"Head":16,"Attack":4,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Lumber Axe"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":744,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:excavator","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2413,"BaseAttack":6,"ToolEXP":0,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2413,"MiningSpeed2":700,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Steel Excavator"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMining Dirt Block by Block is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making an excavator you are now able to mine dirt in a 3x3 area. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. \nHigher tier metals require the MV extruder. Don't destroy your whole garden."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":19,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:excavator","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2413,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2413,"MiningSpeed2":700,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Excavator"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":745,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:liquid.glue","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGlue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you centrifuge sticky resin, you get some glue. Glue is very useful in the creation of good circuit boards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemHarz","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30726,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemHarz","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":746,"preRequisites":[77,759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Due to the chip production, silicon becomes a more important material. You can centrifuge it out of fullers earth, asbestos or redstone dust. The electric blast furnace is needed to make ingots. One ingot requires a temperature of 1687 K for 84 seconds at 120 EU/t using raw silicon. Using silicon dioxide and carbon dust, you can get an ingot in 12 seconds! Another time when it is wise to search NEI and not stop on the first recipe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"minecraft:redstone","Count":40,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":747,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiode","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits need diodes. There are two ways to craft them. Right now you have to use the Gallium Arsenide method with fine copper wires and molten glass. Later when you get an EBF you can use it to make silicon wafers to make even more. Once you have polyethylene you can use annealed copper wires to increase your output yet again. \n\nMake sure you check all the NEI recipes for advanced items instead of just using the first one you find."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":1980,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":748,"preRequisites":[97,745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEmpty Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuit boards require wooden pulp and refined glue to make phenolic circuit boards. By adding gold wire you can craft a good circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2809,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32719,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1420,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1420,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29086,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":749,"preRequisites":[754],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAre you Prepared for HV?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel will be the material for the HV Tier. There are two ways to process it. Mixing it by hand outputs 8 stainless steel dust.\n\nManganese can be found from ore veins with grossular ore, spessartine ore, pyrolusite ore and tantalite ore. Alternative sources are Garnet dusts from Garnet sands, or Almandine. If you get desperate, you can buy some ore from the Coins tab.\n\nChrome can be centrifuged out of manganese dust and ruby dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2031,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32224,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":750,"preRequisites":[759,951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17874,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lMolten Plastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Molten polyethylene can be made in a chemical reactor using ethylene, compressed air cells or oxygen - using oxygen gives a 50% boost. Use a mold for making plates in a fluid solidifier to make plastic sheets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":751,"preRequisites":[754],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":582,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMixing Stainless Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel will be the material for the HV Tier. There are two ways to process it. Mixing it in a mixer outputs 9 stainless steel dust each process.\n\nManganese can be found in ore veins together with grossular ore, spessartine ore, pyrolusite ore and tantalite ore.\n\nChrome can be centrifuged out of manganese dust and ruby dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":582,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32221,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":752,"preRequisites":[746],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon Plate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits require transistors, which are made out of silicon plates, fine tin wire and molten polyethylene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:hotdogItem","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32113,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":753,"preRequisites":[749,751],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lStainless Steel EBF processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel ingots are made in the electric blast furnace at a temperature of 1700K. \nIt takes 80 seconds at 480 EU/t or by adding oxygen gas 60 seconds at 480 EU/t.\n\n§4You need a miniumum of two MV energy hatches to power the EBF."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":754,"preRequisites":[77,893,1084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Energy Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some materials like stainless steel require 480 EU/t. Your LV hatches are not good enough. Craft a minimum of two MV hatches to upgrade your electric blast furnace to HV.\nIf you not make some Ultra Low Power ICs go and make some wafers first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":755,"preRequisites":[77,609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"SpecialData":-1,"PrimaryMaterial":"Iron","Tier":1,"MaxDamage":25600,"Voltage":32,"MaxCharge":100000,"Electric":1,"SecondaryMaterial":"Rubber"},"GT.ItemCharge":100000},"Damage":160,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter than Duct Tape","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A soldering iron tool to remove the \"burned out circuits\" message is better than duct tape. \nThe soldering iron requires one soldering material item and 10,000 EU. Valid soldering materials are fine wires, rods, and ingots made from either tin, lead, or soldering alloy. The soldering iron will consume the first such material it finds in the player's inventory.\n\nIn order to \"complete\" the quest they will need to charge the soldering iron after you craft it.\n\nFor the other problems other tools are necessary.\n\nPossible problems Tool to fix\n\"Pipe is loose.\" Wrench\n\"Screws are missing.\" Screwdriver \n\"Something is stuck.\" Soft mallet \n\"Platings are dented.\" Hammer \n\"Circuitry burned out.\" Soldering Iron \n\"That doesn't belong there.\" Crowbar"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":160,"OreDict":"craftingToolSolderingIron"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19314,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":756,"preRequisites":[77,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLess Power loss","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you reach MV tier you can make your own duct tape in case you have to move your multiblock machines around. Duct tape will fix all maintenance problems in any multiblock machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30726,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30726,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":757,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lRuby Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ruby is a good source for electrolyzing to get chrome and aluminium. Your new MV electrolyzer gives you access to a lot of new recipes. Once you get low on Ruby, you can centrifuge Redstone to get more.\nAnother good source of aluminium and oxygen is red granite dusts. You can get those from red stonelillies in the Fishing Farming Cooking tab using ic2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":2502,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":758,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Let's make some MV battery hulls for new batteries. Now it's up to you to make lithium, cadmium, sodium or acid batteries with these hulls."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32501,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":759,"preRequisites":[846,847],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.99","Count":1,"Damage":874,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMolten Polyethylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polyethylene is made out of ethylene in a chemical reactor.\nMolten Polyethylene cells carry 144L, perfect for 1 ingot or plate. \nIf you want precise amounts, you can use a Volumetric Flask once you electrolyze some Boron from Borax."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":43,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":32,"Damage":874,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":760,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2805,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lClay Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You found out that electrolyzing clay dust will give you silicon dust. There are plenty of stained clay blocks found in canyon and lush desert biomes or on mountains that can be pulverized to clay dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":832,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":2020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":761,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPowderbarrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Powderbarrels are twice as good as dynamite in the implosion compressor. Craft one stack."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:gunpowder","Count":256,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":17809,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"StevesCarts:ModuleComponents","Count":16,"Damage":43,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":762,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTNT","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"TNT is much more powerful than the powderbarrel but much harder to craft. There are LV and HV ways to craft. At LV you need heavy or light fuel to make some toluene which can be solidified to gelled toluene. Alternatively you can use sugar and plastic dust in a chemical reactor to make toluene more efficiently. Mix it with sulfuric acid to make TNT.\n\nThe HV way requires an oil cracking unit to make all kinds of cracked fuel or cracked naphta and a distillation tower to extract toluene from that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30647,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":256,"Damage":32010,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:tnt","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32010,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30720,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}]}]},{"questID":763,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockITNT","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§liTNT","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Industrial TNT is the HV variant of TNT. It explodes with more power, yet does not destroy blocks when it explodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30647,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":32010,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30628,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32010,"OreDict":""},{"id":"IC2:itemFluidCell","Count":8,"tag":{"Fluid":{"FluidName":"liquid_nitrationmixture","Amount":1000}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":764,"preRequisites":[556],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemDynamite","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDynamite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dynamite is the most basic explosive you can use in the implosion compressor.\nMix some paper, string and glyceryl trinitrate in a chemical reactor to get dynamite."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:paper","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30714,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemDynamite","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17809,"OreDict":""},{"id":"IC2:itemDynamite","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":765,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1157,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to oil drill!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps are nice but you're going to reach a point where you will want MOOOOOOOOOOOOORE oil. This multiblock will help with that but you will need to search for oil using a seismic prospector. You can find raw, light and heavy oil. There's also a chance to find natural gas.\n\nHigher tiers of power will drill faster. You need to upgrade the energy hatch corresponding to the power tier. \n\nLater you can upgrade the oil drilling rig so it extracts from more than one chunk at a time.\n\nYou need mining pipes in the machine controller block.\n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1157,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":15,"Damage":4401,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":62,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":766,"preRequisites":[160,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1160,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLet's get crackin!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cracking oil products like light and heavy fuel with the oil cracker is faster and more efficent than using a chemical reactor, producing 25 percent more output. Cracked products will result in additional by-products in the distillation tower. It is a smart idea to get this multiblock since you are going to need TONS of industrial TNT from Toluene for advanced tier rockets. \n\nThe 16 coils form 2 vertical rings of 8 on either side of the controller. The casings between the rings can be replaced with a hatch for steam/hydrogen input. Energy hatch and maintenance hatch can replace any of the casings. The input product hatch and output product hatch must replace one of the casings outside of the coils.\n\nHint: Only GT/Railcraft steam can be used, not ic2 steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1160,"OreDict":""},{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":20,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":53,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":63,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30001,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"steam","Amount":1000}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":767,"preRequisites":[73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAnalyzing the soil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of looking for ores by hand? Want to find deep oil that will last a long time? A seismic prospector will tell you the ores in the surrounding chunk in a handy book you can read, and also the oil in the oilfields beneath each 8x8 chunks.\n\nTo determine which kind of oil or gas there is in the chunk you need to scan the soil by right clicking an Advanced Seismic Prospector with 2 Powderbarrels, 4 Glyceryl Trinitate cells, 8 iTNT or 16 TNT. Make sure you wait a few seconds after placing the prospector before applying the explosives.\n\nThen use a Data Stick to extract the data by right clicking on it after the animation has finished.\n\nNow you need to put the analyzed data stick in a GT scanner. Then place it in the bottom right slot of the printer and add 3 paper in the top left slot and make sure you have at least 144 mb squid ink in it. (Only gregtech machines will work)\n\nAfter the process is done take the printed pages and combine it with a piece of leather in an assembling machine filled with at least 20 mb of refined glue. Don't assemble more than one book at time.\n\nTADA now you have a book with detailed info about the chunks you scanned.\n\nNote: Each oilfield is 8x8 chunks, and always on a by 8 chunk boundary. Within the field the amount can vary +- 25 percent. The amount reported in the book is the minimum and maximum per oilfield across all chunks in the field. The prospector reports on 3x3 oil fields at all tiers with the center oil field where the seismic prospector is located. Oil extraction rate depends on many factors, check the wiki for details. In general, anything above 300 is really good. The total amount in the chunk is complicated. \n\nOre locations are given as the center of the chunk. Ores that are marginal in that chunk may not be found in the center but on an edge. Look at where ores are located and determine the center of the vein. At higher tiers, it scans more chunks for ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":768,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1126,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou smell like a distillery!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This bad boy will tremendously boost the by-products of your cracked fuel or pyrolyse oven. This way you can make industrial TNT, polyethylene, polytetrafluoroethylene and other plastics more efficiently. \n\nYou will also need this for your automated setups.\n\nYou will need to make EV circuits in a cleanroom to build this machine.\n\nFor hatches, you can choose your own tier. 1 MV energy does most of the useful recipes. 2 MV energy or 1 HV energy hatch will cover almost all the rest except pollution or acetone.\n\nYou will need 1 input hatch, and at least 5 output hatches. An output bus will capture any solid outputs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1126,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":40,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30740,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":769,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":573,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPlaying with dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine will help you turn dust into crystals which you will need for high tier recipes. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":573,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemDust2","Count":9,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":770,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":213,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAvengers, Assemble! 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You know what this does. :D"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":213,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":771,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":571,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDust to crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use the autoclave to crystallize your dust. You can make raw carbon mesh out of carbon dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":571,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":772,"preRequisites":[1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":593,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPrecision is required","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will use this a lot to make high tier circuits, and for other recipes"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":593,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24532,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":773,"preRequisites":[771,759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPartCarbonMesh","Count":24,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay one: Raw carbon mesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This way of making carbon requires autoclaving 4 carbon dust. You can use polyethylene which gives you only 1 raw carbon fibre at LV tier, polytetrafluoroethylene gives you 2 at MV Tier or go for the best way: molten epoxid which yields 4 at HV Tier. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonFibre","Count":48,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonMesh","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11473,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":774,"preRequisites":[731,771],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.BioOrganicMesh","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay two: Bio Organic Mesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If want to save the ecosystem you can autoclave 16 plantballs to get raw bio fiber with the following liquids:\n\n§4-Biomass 33% chance\n-Methanol 50% chance\n-Fuel 90% chance\n-Nitro-diesel 100% chance\n\n§rHowever, making carbon plates this way will require an electric blast furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.RawBioFiber","Count":48,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.BioOrganicMesh","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":775,"preRequisites":[692,778],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CarbonPartChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon parts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These are the first parts you will need for your beloved nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CarbonPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCarbonMesh","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":776,"preRequisites":[775,797,796],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemNightvisionGoggles","Count":1,"tag":{"charge":200000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Seeing things brighter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano helmet is a bit special. It will provide you with night vision as long as you have energy! Don't turn it on in bright areas or you'll be blinded!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemNightvisionGoggles","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":777,"preRequisites":[775,769,772],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoCrystal","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are those green diamonds? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They may not be green diamonds but they are needed for your nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":778,"preRequisites":[773],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPartCarbonPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§7§6§lCarbon Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Carbon plates are needed for the nano armor. Go check out the armor chapter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11473,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":779,"preRequisites":[777,775,776],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorNanoChestplate","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon skin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can stop worrying about some mobs for now. This will help you survive a bit and will give you some of that SWAG. Your journey doesn't stop here traveller, as quantum armor awaits you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoHelmet","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoChestplate","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoLegs","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoBoots","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":780,"preRequisites":[774],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.BioCarbonPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOrganic Way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bio carbon plates are made out of raw carbon mesh. Put it in the electric blast furnace to make carbon plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.BioCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:cube","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:coal_block","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":781,"preRequisites":[77,717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1159,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lStill not enough charcoal?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This oven is the best way to get charcoal and creosote (x50 faster than Railcraft's coke oven) and other byproducts. You will need tons of bronze, iron and steel to build it, but it's worth it. Finally, it will be possible to dismantle the charcoal pit.\nWith Cupronickel coils the oven is a bit slower. Each coil tier speeds up the charcoal production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:gt.blockcasingsNH","Count":66,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1159,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""},{"id":"dreamcraft:tile.TripleCompressedCharcoal","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":782,"preRequisites":[760],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMonocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make wafers, you need to make monocrystalline silicon first. The process takes 450 seconds and requires silicon dust and gallium arsenide dust in the electric blast furnace. You can make 16 wafers out of every boule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":1980,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32030,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":980,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":783,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1131,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWe need big toys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All your little turbines take up too much space? Are you running out of water? It is time to solve these problems. This large turbine can help you produce a tremendous amount of energy. It will also distill water for you, so you can use the same water again inside your large boiler. Don't forget to make a rotor for the turbine. \n\nMake sure you provide the optimal flow of steam using a fluid regulator. Don't exceed your dynamo hatch's EU rating, or it will explode! For HV you will probably want an IC2 fluid regulator. Above HV you can use the fluid regulator covers.\n\nTurbines with a small turbine durability below 75k have their recipes removed. Use NEI with the appropriate long rod to find assembler recipes that will work for you. Long magnalium for small turbines, long titanium for normal turbines, etc.\n\nPre-moon, the best rotors are small ardite or vibrant alloy. Remember to disassemble rotor blades before they break to recover the materials.\n\nPost-moon, the best HV rotors are normal damascus or blue steel. Risk-takers can try ultimet but you must not provide optimal flow since it will give 517 EU/t, blowing up a single amp dynamo. Luckily turbines are now fully functional with multi-amp dynamos, so give those a try if you need extra amps!\n\nFor additional choices, see the Large Turbine Calculator in Discord."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":30,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1131,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":170,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:tile.TripleCompressedCharcoal","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":784,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIt's time to get more steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As soon as you have the ability to store energy in large quantities, it would be necessary to have a way to generate energy in large quantities. You need a large bronze boiler. But in order to make this boiler, you will need a mountain of bronze. This boiler produces 800 liters of steam per tick. This is enough to run 10 basic steam turbines.\n\nThe large boiler can use either water or distilled water. Water is consumed at a rate of 1L of water per 150L of steam.\n\nTo make a large boiler you must make a 3x3x5 structure with Bronze Pipe Casings in the center of the middle 3 levels. The lowest level must contain at least 1 or 2 input hatches, 1 or 2 input buses, 3 or 4 fireboxes, 1 muffler, and one maintenance hatch. The lowest level can not contain any plated bricks. All hatches, buses, and mufflers must have their back side touching a firebox. The output hatch can be placed on any of the upper 4 levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":5,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":32,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":61,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":71,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":91,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:tile.DoubleCompressedCharcoal","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":785,"preRequisites":[752],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTransistor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next tier we need advanced circuits. To create some advanced circuits, you need some transistors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19057,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":32717,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32719,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":786,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1021,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSteam is never enough","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can make advanced circuits, which means it's time to build a large steel boiler. This boiler is one and a half times more efficient than a bronze one, and that means we need 5 more steam turbines. Don't forget to monitor the water level!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":4,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1021,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5134,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":787,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1022,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMoooooore steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stock up on titanium, it will be fun. A large titanium boiler produces 1600 litres of steam per tick. For this amount you need to choose the right rotors for your turbines. For example, 2 normal damascus steel rotors will be just right. Optimal flow for such rotor is 800 liters per tick. Make a fluid regulator in the assembler to control the flow rate. If you have more than one boiler, you will need to make calculations in order to select the appropriate rotors. Make sure your dynamo hatch is capable of accepting all the EU, or it will explode!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":3,"Damage":3,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1022,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":14,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":788,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEven more steam? Are you sure?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This boiler is the most efficient source of steam. It allows you to produce as much as 2000 litres of steam per tick. If you need more, then build a dual or even quad boiler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":3,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1023,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:tile.QuadrupleCompressedCharcoal","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":789,"preRequisites":[769],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatCrystal","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnergy Crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Make energy crystals out of ruby and redstone dusts in the MV mixer. Energy crystals can store 1 million EU and work as an HV battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemDust2","Count":36,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemBatCrystal","Count":4,"tag":{},"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":790,"preRequisites":[789],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNano Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nano crystals are used for making the nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatCrystal","Count":1,"tag":{},"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32719,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":791,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":592,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Precision Laser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits need an MV precision laser. Let's craft one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":592,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":792,"preRequisites":[782],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some silicon wafers, put the monocrystalline silicon boule in a cutting machine. It would be better to immediately make the MV version because you will need it later for RAM, IC's and other chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":252,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":793,"preRequisites":[794],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32079,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGood Integrated Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits have three variants. For the advanced circuits you need the good integrated circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32701,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32079,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32716,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":794,"preRequisites":[795,837],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIntegrated Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are two variants of basic circuits. The basic circuit from IC2 or the integrated circuit which needs a circuit assembling machine to be made. The good integrated circuit needs two integrated circuits to be crafted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32701,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32715,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":795,"preRequisites":[717,530,529],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1180,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits require an LV circuit assembling machine. Basic ones can be made much more efficient with this machine. Let's craft one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1180,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11345,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":796,"preRequisites":[794,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.sensorLens","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sensor lens","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The night vision goggles need special sensor lenses to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28308,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.sensorLens","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemBatCrystal","Count":1,"Damage":26,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":797,"preRequisites":[794,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Heat Exchanger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The night vision goggles need advanced heat exchangers to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"IC2:reactorHeatSwitchSpread","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:reactorHeatSwitchDiamond","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":798,"preRequisites":[236,234,235],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron capped Greatwood Wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making a gold capped greatwood wand requires 35 vis, but your old wand's limit is 25. So first create an iron or copper capped greatwood wand and then create a gold capped greatwood wand.\nMake sure you use NEI 'U' command on the wand caps to find the correct GT:NH recipe for the wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"ordo":0,"perditio":0,"aer":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":799,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't try to dive with it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining a scuba helmet with a nano helmet in an assembling machine will give you a nano scuba helmet. You'd better not try to dive with it because you can't. It is a part of the new quantum suit helmet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoHelmet","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":800,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plated Leggings - Better not try to wear it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining stainless steel platings with some nano leggings in the assembler gives you nano plated leggings. Better not try to wear them because you can't. They are part of the new quantum suit leggings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoLegs","Count":1,"Damage":27,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":801,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't try to walk with it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining some rubber boots with nano boots in the Assembler gives you Nano Rubber Boots. Better not try to put them on because you can't. They are part of the new quantum suit boots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoBoots","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":802,"preRequisites":[799,801,800,654],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iridium Plated","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plating all your armor parts with iridium alloy casings gives them a better durability. Before you can wear these quantum armor parts you need to activate them with some quantum crystals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.IridiumAlloyItemCasing","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"GraviSuite:advNanoChestPlate","Count":1,"tag":{"toolXP":0,"charge":0,"toolMode":0},"Damage":27,"OreDict":""},{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmetEmpty","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartIridium","Count":4,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":803,"preRequisites":[802,804],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The quantum armor is a high tier and very durable armor with a lot of features like night vision, fall damage reduction and running very fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32706,"OreDict":"circuitMaster"},{"id":"gregtech:gt.blockmachines","Count":20,"Damage":1662,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32597,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32644,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":32604,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":32673,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemArmorQuantumHelmet","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumLegs","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumBoots","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32604,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":804,"preRequisites":[802,807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum crystal ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The quantum crystal is needed to turn quantum armor parts into wearable quantum armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":805,"preRequisites":[789,1406],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.LapotronDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lLapotron Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lapotron crystals require you to mix your energium dust with some lapis dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2526,"OreDict":""},{"id":"IC2:itemDust2","Count":48,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":806,"preRequisites":[805,808],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatLamaCrystal","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lLapotron Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new HV mixer you can make lapotron dust. Place it in an autoclave to make some raw lapotron crystals. With an EV assembler and advanced circuits you can make lapotron crystals which store up to 10 million EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LapotronDust","Count":120,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCircuitAdv","Count":8,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"dreamcraft:item.RawLapotronCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32714,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":807,"preRequisites":[1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuantum Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your quantum armor you need some quantum crystals. Place a lapotron crystal in your precision laser to get a quantum crystal "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.LapotronDust","Count":60,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":808,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":583,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMixing at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High Tier dusts need HV Mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":583,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11367,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11366,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":809,"preRequisites":[831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"NASA Workbench aka Dire Crafting Table","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Avaritia 9x9 dire crafting table replaces the NASA workbench. It is required to craft all rockets and high tier equipment. First of all you need 81 crafting tables to make a double compressed crafting table, a few HV components, wafers and a crystal matrix. And yes, you do need nether stars. Hint: Check out the nether star recipe which uses null catalyst and salis mundus. Null catalyst can be duplicated by adding magma cream, blaze powder and a tiny pile of nether star dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:crafting_table","Count":81,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Avaritia:Triple_Craft","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":144,"Damage":17500,"OreDict":""},{"id":"dreamcraft:item.StainlessSteelBars","Count":36,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:nether_star","Count":18,"Damage":0,"OreDict":""},{"id":"Avaritia:Resource","Count":36,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Avaritia:Resource","Count":9,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Avaritia:Crystal_Matrix","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32642,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":130,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":810,"preRequisites":[812,813,814,815,816,819],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of hard work and a few stacks of TNT your first rocket is finally ready. But before you can go to the Moon you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":3,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":22,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":811,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. You can craft the first one using a data circuit and a compressed steel plate in a hv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":812,"preRequisites":[80,809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 36 of these plates out of compressed aluminium plates, compressed bronze plates and compressed steel plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":10,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":148,"Damage":26306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":37,"Damage":32462,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":37,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":813,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Nose Cone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2.inv","Count":1,"Damage":14,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":814,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.rocketFins","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":815,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. Better craft two, because the Moon lander needs one also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32731,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":2,"Damage":14,"OreDict":""},{"id":"GalaxySpace:item.CompressedSDHD120","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":816,"preRequisites":[815,817,818],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon lander is required for a soft landing.\nYou will need an additional frequency module for hearing things on planets and a second seat for a Moon buggy you may build later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":3,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":817,"preRequisites":[809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.buggymat","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Buggy Seat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The buggy seat is part of the Moon lander and the Moon buggy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":10,"Damage":9,"OreDict":""},{"id":"IC2:blockRubber","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.buggymat","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalaxySpace:item.CompressedSDHD120","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":818,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":19,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frequency Module","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The frequency Module will help you hear sounds properly while in space (it's also used with the telemetry unit so that your buddies can keep track of you from your base, if you are playing with friends). You need it in your inventory and in the Moon lander."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32692,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"GalacticraftCore:item.battery","Count":2,"tag":{"electricity":0},"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":819,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Small Fuel Canister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 1 rocket you need to craft two of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleSmallCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.CompressedDualAluminium","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.CompressedDualBronze","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":820,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.landingPad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Launch Pad","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a launch pad. Build a 3x3 launch pad and place your rocket on top of it.\n\nMake sure you don't have any lightning warp effects or you'll be really sad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":9,"Damage":11,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":9,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.landingPad","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":821,"preRequisites":[827],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.fuelLoader","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To pump fuel into your rocket you need a fuel loader. Place it right next to the middle of any side of the launch pad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5132,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.fuelLoader","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":822,"preRequisites":[823],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenGear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Gear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oxygen gear is used to attach oxygen tanks to the oxygen mask. This is absolutely vital for any astronaut."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":5,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenGear","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockAlloyGlass","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":823,"preRequisites":[795,809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenMask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Mask","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen mask is part of the system used to breathe on planets without oxygen, the others being oxygen gear and oxygen tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ReinforcedGlassPlate","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenMask","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockAlloyGlass","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":824,"preRequisites":[823,822],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Light oxygen tank is an oxygen storage tank that can hold up to 900 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank. I recommend making the medium tanks and using the light tanks as spares to return to base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":14,"Damage":8,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":2,"Damage":900,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":825,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockOreCopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can be found between y levels 5 and 60 either as \"Copper Ore\" or \"Chalcopyrite\". Most of the time you'll find it together with \"Iron\" and \"Pyrite\".\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in NEI and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":24,"Damage":855,"OreDict":"oreChalcopyrite"},{"id":"gregtech:gt.blockores","Count":24,"Damage":35,"OreDict":"oreAnyCopper"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:oreBerries","Count":5,"Damage":2,"OreDict":""},{"id":"harvestcraft:footlongItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":826,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lIron Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With iron tools, you are able to mine most of the Overworld ores. I think you already found iron or magnetite. So bring me some ores and make some iron ingots out of them.\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in nei and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":917,"OreDict":"oreBandedIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":32,"OreDict":"oreIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":870,"OreDict":"oreMagnetite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":931,"OreDict":"oreYellowLimonite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":930,"OreDict":"oreBrownLimonite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:oreBerries","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":827,"preRequisites":[819],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For every flight the rocket needs some fuel. So refine some fuel and fill some fuel canisters. \nYou can use Fuel or Rocket Fuel from Ender IO."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":8,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":828,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Collector","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen collector is a block that gathers oxygen from leaves and farm plants to use in an oxygen bubble distributor, oxygen sealer, oxygen compressor, and other oxygen-reliant machines. If you plan to build a Moon base, which needs a continuous oxygen supply, you will need to build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1587,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":829,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen compressor is used to fill empty or depleted oxygen tanks. Connect an oxygen pipe to the blue ring input side and a power source to the grey square input side. Place an oxygen tank in the bottom right slot and it will take oxygen from the input and place it into the tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.oilCanisterPartial","Count":1,"Damage":1001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32642,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":830,"preRequisites":[822],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Parachute","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A parachute is used to prevent death upon re-entry into the Overworld's atmosphere. The parachute is an essential part of your journey to space. You should never journey into space without it. There will even be a warning if you try to launch without one on you.\n\nUse the assembler to save materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:wovencottonItem","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.canvas","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":19305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.canvas","Count":6,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32415,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32418,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32416,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32425,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":831,"preRequisites":[832],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced wafer is used for more advanced machines such as the advanced solar panel or the Avaritia dire crafting table. It is also used in the creation of a space station."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32034,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":832,"preRequisites":[160,795,102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic wafer is used for creating basic machines such as the basic solar panel, the fuel loader, the energy storage module and the compressor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32033,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":12,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32033,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":833,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purge your warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The warp you have accumulated over time is starting to become a problem. Making bath salts to clean off the warp is only a temporary solution. To truly get rid of it, you need something more powerful, a pure tear. If you collect a few things for me, I will give you one. Think wisely about using it, since it's a very long journey to unlock it through research."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:nether_star","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":10,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11317,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":16,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":29500,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":7,"OreDict":""},{"id":"minecraft:ender_eye","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"alienis"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"permutatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"praecantatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"sano"}]},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":834,"preRequisites":[66],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lCircuit Boards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For every circuit you need a basic circuit board. Craft a coated circuit board and use copper wire to finish it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17809,"OreDict":""},{"id":"IC2:itemHarz","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32710,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32710,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bread","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32710,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":835,"preRequisites":[67],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32716,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§4§3§lResistor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every basic circuit needs two resistors to work"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1360,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2535,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32716,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:blueberrysmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":836,"preRequisites":[542],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2980,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGallium Arsenide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The diode requires gallium arsenide and you may be wondering how to get gallium or arsenic this early in the game.\n\nSphalerite dust in an electrolyzer is the primary source of gallium at this tier. \nYou can also get gallium out of crushed zinc ore by using a thermal centrifuge. You can find the small zinc ores in the Overworld or the in the Nether at Y Level 80 - 210. To get additional crushed ore, use a Tinker's Construct tool with the Luck (Fortune) enchant on it - apply a lot of Lapis. \n\nYou can get arsenic from realgar small ores in the Nether at Y level 5 - 85. Centrifuge the dusts in a centrifuge. Other sources are Tinker's Construct cobalt ore in the nether and cobaltite ore in the Twilight Forest.\n\nYou need to level up your obsidian level tool, use a alumite tool, or make an Ironwood Pickaxe to harvest cobalt ore.\n\nAnother nice way to get gallium and arsenic is with XP buckets in a crafting grid.\n\nMix those two dusts in a mixer to get gallium arsenic dust.\n\nIn the nether it is easier to use a GT miner near the ceiling to get all the ores you need."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2039,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2980,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2039,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":837,"preRequisites":[791],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32038,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lILC and RAM","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits need integrated logic circuits and random access memory chips.\nYou can get those by cutting the ILC and RAM wafers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32036,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32038,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":838,"preRequisites":[785,793],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next tier we need advanced circuits. To make an advanced circuit, you need good integrated circuits, RAM, an integrated logic circuit, and transistors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28308,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":839,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32498,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHandle tiny piles like a K1ng","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Don't you hate having to manually compress all those tiny piles ? Well, let me show you how to automate that. A combination of typefilter, chest buffer (or super buffer in HV) and packager frees you from that annoying task. The chestbuffer can hold up to 9 stacks of tiny piles and the super buffer can hold 256 stacks of tiny dusts, which is more than enough. You can set its mode with a screwdriver on the output side. Set it to 9 to export 9 tiny piles at a time and let the packager compress these into regular dusts.\n\nSuper buffers can be lag sources, so be careful to keep them as empty as possible. If you are using a multiblock packager, be sure to change the buffer from Stocking mode to Transfer Size mode."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":9251,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":9231,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32498,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":401,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemItemConduit","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1386,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":840,"preRequisites":[643,641],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30644,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lButane and Propane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can distill a lot of different gases out of your \"refinery gases\".\nMethane, butane, propane, helium and ethane.\n\n§4Hint:\nRefinery gas is not the best source for Propane and Butane. Better refine those out of naphtha."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30643,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30644,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":841,"preRequisites":[850,851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30639,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTetranitromethane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bio diesel and diesel can be boosted using tetranitromethane. Ethenone and nitric acid are required to make tetranitromethane in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30653,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30641,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30639,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30629,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":842,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMethane Gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Methane gas with a burn value of 104,000 EU per cell can be burned in the gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30691,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":843,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30673,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Methanol with a burn value of 84,000 EU per cell can be used to make biodiesel and other fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30673,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":844,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ethanol with a burn value of 192,000 EU per cell can be used to make biodiesel and other fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30706,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":845,"preRequisites":[843,844,849,848,1544],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30627,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBio Diesel Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With ethanol or methanol and seed oil or fish oil you can make bio diesel. Burn value is 256,000 EU per cell. Diesel and bio diesel are needed for cetane-boosted diesel.\n\nYou get some glycerol as by-product. Save it so you can make glyceryl trinitrate for your dynamite or for your future epoxid production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30627,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30627,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30691,"OreDict":""},{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":846,"preRequisites":[550,126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lO like Oxygen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oxygen can be made in several different ways. Most commonly you'll either electrolyze it out of cassiterite sand, sugar from sugar canes or sugar beets, water, or various other oxygen-rich dusts, or centrifuge it from brown or yellow limonite dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":91,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2930,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2931,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":847,"preRequisites":[1744],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can make ethylene many different ways\n\n- Ethanol and sulfuric acid in a Chemical Reactor \n- Ethanol in a Chemical Dehydrator\n- Distilling various gases (i.e. wood gas) in a Distillery\n- Cracking Naphtha, fuels or refinery gas with hydrogen or steam in the Chemical Reactor will work too. Check NEI or the Game Mechanics Spreadsheet at http://bit.ly/gtnh-datasheets for details"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemBiochaff","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":848,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:fluid.seedoil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSeed Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make some bio diesel you need seed oil or fish oil and mix that with ethanol or methanol. Seeds give seed oil and fish produce fish oil when placed in a fluid extractor.\n\n§4Pam's peanuts are a good seedoil source. Another option is Forestry Butternuts. Or you can use IC2 crops to get Rapeseed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30713,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30711,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":849,"preRequisites":[543,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2685,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lSodium Hydroxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Make some sodium hydroxide. You can make it out of sodium (or out of salt water once you reach EV).\n\n§5§4The by-product hydrogen can be burned in a gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2017,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2685,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2017,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":850,"preRequisites":[852,893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthenone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hopefully you saved some sulfuric acid during your fuel production. Together with acetic acid you can make ethenone.\nCraft an advanced chemical reactor to get access to more advanced recipes.\n\nSave the ethenone for HV, you will need it to make tetranitromethane for cetane boosted diesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30670,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30691,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":851,"preRequisites":[846,853],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30653,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitric Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nitric acid can be made out of water, oxygen and nitrogen dioxide."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":12,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30717,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":852,"preRequisites":[847,846],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30670,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAcetic Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Acetic acid can be made out of oxygen and ethylene. Alternatively, it can be made out of biomass, wood vinegar or vinegar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30670,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":853,"preRequisites":[846,855],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitrogen Dioxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make nitrogen dioxide you need to combine oxygen gas and nitric oxide in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30658,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30717,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":854,"preRequisites":[550,555,943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAmmonia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nitrogen and hydrogen... Ammonia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":78,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30012,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30659,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":855,"preRequisites":[846,854],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30658,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitric Oxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make nitric oxide you need to combine oxygen and ammonia in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30658,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":856,"preRequisites":[857,858,2293],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§l1,1-Dimetylhydrazine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make 1,1-dimethylhydrazine you need to combine some dimethylamine and chloramine in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30655,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":857,"preRequisites":[854],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimethylamine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining ammonia and methanol in a chemical reactor produces some dimethylamine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30673,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30659,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":858,"preRequisites":[854,859],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChloramine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining hypochlorous acid and ammonia in a chemical reactor produces some chloramine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30659,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":859,"preRequisites":[126,1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lHypochlorous Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hypochlorous acid requires water, chlorine and some mercury."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30087,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":860,"preRequisites":[1012,1424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11028,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lTitanium finally","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rutile, chlorine and carbon dust makes Titaniumtetrachloride. Combining this with Magnesium in an HV EBF will give you hot Titanium ingots. Freeze those and you will get your first titanium.\nOn the Moon if you are lucky you can find Ilmenite ore which make the processing of Titanium a bit easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":12028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":861,"preRequisites":[1244,1891],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11316,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lTungstensteel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is needed for the next tier. Tungsten can be found on Mars or in Moon stone dust. Mix that with some steel dust. Smelt it at 3000K (requires nichrome coils) in an electric blast furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11316,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":862,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:ShortBow","Count":1,"tag":{"InfiTool":{"BaseDurability":57,"BaseAttack":2,"DrawSpeed":16,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":57,"MiningSpeed2":150,"BaseDrawSpeed":16,"Head":0,"Attack":2,"Handle":0,"Broken":0,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":3,"Modifiers":0},"display":{"Name":"Wooden Shortbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first bow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since vanilla bows are only craftable in the assembling machine and mobs do not drop them very often you have to make a Tinkers bow. Wood would be the best material for now. So craft the bow limbs out of wood and the bow string out of strings. The arrow that has the most durability is bone, so craft the stick out of bone. It is much lighter but less durable than a regular arrow. Use a flint tip to make it repairable with flint.\n\n§4You can repair your bow the same way as all the other Tinkers tools. Arrows can be regained by repairing them or picking them up from the floor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:Pattern","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":25,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":3,"Damage":0,"OreDict":"plankWood"},{"id":"minecraft:bone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:fletching","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:BowLimbPart","Count":2,"Damage":0,"OreDict":""},{"id":"TConstruct:bowstring","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:ShortBow","Count":1,"tag":{"InfiTool":{"BaseDurability":57,"BaseAttack":2,"DrawSpeed":16,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":57,"MiningSpeed2":150,"BaseDrawSpeed":16,"Head":0,"Attack":2,"Handle":0,"Broken":0,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":3,"Modifiers":0},"display":{"Name":"Wooden Shortbow"}},"Damage":0,"OreDict":""},{"id":"TConstruct:ArrowAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000029802322,"BaseDurability":107,"BaseAttack":2,"ToolEXP":0,"HarvestLevel":1,"RenderHead":3,"ModDurability":0,"Shoddy":0,"RenderHandle":1,"Accuracy":95,"Accessory":0,"MiningSpeed":400,"Unbreaking":0,"Damage":0,"BonusDurability":0,"TotalDurability":107,"Head":3,"Attack":2,"Handle":1,"Broken":0,"Mass":3.125,"Ammo":11,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Flint Arrows"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bone","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":863,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Javelin","Count":1,"tag":{"InfiTool":{"BaseDurability":35,"ExtraAttack":44,"BaseAttack":6,"ToolEXP":62,"Built":1,"ExtraSmite":20,"ExtraLuckLooting":33,"HarvestLevel":4,"RenderHead":14,"ModDurability":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":35,"Head":14,"Attack":6,"Handle":14,"Broken":0,"Ammo":7,"RenderAccessory":14,"ToolLevel":1,"RepairCount":1,"Modifiers":0},"display":{"Name":"Bronze Javelin"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBronze javelin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The bronze javelin is a bit expensive and has only 7 throws, yet it is a good mid-range weapon. With one bronze ingot you can replenish your stack of javelins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":25,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toughRod","Count":2,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:Javelin","Count":1,"tag":{"InfiTool":{"BaseDurability":35,"Head":14,"BaseAttack":6,"ToolEXP":0,"HarvestLevel":4,"Attack":6,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Ammo":7,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":35},"display":{"Name":"Bronze Javelin"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32241,"OreDict":""},{"id":"TConstruct:materials","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":864,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:ThrowingKnife","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":1,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Ammo":12,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Throwing Knife"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first flint throwing knife","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Is the bone bow too expensive for your taste? Then make a flint throwing knife instead. You need flint and a stick to get 12 knives. The durability and the attack damage are very low but it still helps with killing mobs from a safe distance."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":12,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:knifeBlade","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:ThrowingKnife","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":1,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Ammo":12,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Throwing Knife"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":865,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_bars","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMonster trap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're lucky you spawned in a sand or rainforest biome and find some quicksand. Collect a stack of the stuff, dig a small ditch and fill it with the quicksand to protect your \"dirt base\" home. Just don't fall in!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mud","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:torch","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":866,"preRequisites":[97,667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All the different mining veins that have been found seem to be really far apart. One way to shorten the travel time is to create a railroad from your base to the different mines. Sadly this requires a large amount of both iron and creosote. Let's not forget to place the last symbolic rivet on one of your new train lines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:rail","Count":512,"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.buffer.stop"},"Damage":32363,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:rail","Count":128,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":60,"Damage":0,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":867,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLapis, Lazurite, Sodalite, Calcite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to make your bricked blast furnace you need to find a lapis vine containing calcite.\nYou can find the vein in the overworld or the Twilight Forest at Y 20-50."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":526,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":524,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":823,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32244,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2934,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":868,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2934,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§3§lGypsum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make bricks for the blast furnace you need concrete and gypsum. Gypsum can be found in a vein together with basaltic and granitic mineral sand, and fullers earth. Y 50-60 and only in the overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":935,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":936,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":928,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":934,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:gingerbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pumpkinbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2934,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2823,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":869,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSifting Machine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need flawless or exquisite diamonds, emeralds, rubies or other gems? Well then it's time for you to make a Sifting Machine.\n\nYou can find small Zinc ores (look in NEI) or you can search the Nether for Sphalerite.\n\nYou'll need either an Ore Washer or Simple Ore Washer since the Sifter only takes purified ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6535,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":870,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSmelt all the things...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smelting up to nine items at once? With a bit of steel you can make a railcraft Steam Oven. 2x2x2\n\nHint: All furnace recipes work just fine, but you cannot use it to make charcoal from wood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":104,"OreDict":""},{"id":"Railcraft:machine.beta","Count":8,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":8,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":8,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":871,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32307,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lMolds, molds, molds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make steel and have a tinkers smelter you have to make molds. Molds can be used in the alloy smelter and the fluid solidifier. You need them to make vacuum tubes, ingots, gears and more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32302,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32307,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32309,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":872,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:maplesyrupItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Maple Syrup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You spent hours and hours to find some maple trees? Why not use your forest ranger coins to buy some syrup? Add some spruce saplings and plant some maple trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:pammapleSapling","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":873,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:rhubarbseedItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Seed Bags","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finding some special \"pams harvest craft\" seeds can be very difficult. With your farmer coins you can buy some seedbags."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":35,"OreDict":""}]}]},{"questID":874,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.pad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Jetpack v.0.1 Alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you like flying? Ok then, make a slimy bouncepad and enjoy the good view."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:slime.gel","Count":3,"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:slime.channel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:slime.pad","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:slime.gel","Count":4,"Damage":2,"OreDict":""},{"id":"TConstruct:slime.sapling","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":55,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":875,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSlime Island Journey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rubber trees are not the only source for raw rubber. Go and find a slimy island high in the sky. Slime balls and slime leaves give raw rubber too.\nMake some slime tree farms beside your rubber farm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:CraftedSoil","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:slime.sapling","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:strangeFood","Count":4,"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_sword","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:ladder","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":876,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1169,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBring me my vat of polyethelyne!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of using small cells to process chemicals? Build a Large Chemical Reactor and you can just pipe in and out fluids. Or use the glorious large fluid cells to deliver and remove fluids from the hatches. \n\nBe careful, if the output hatches are full, the reactor will void any extra products!\n\nSome of the old recipes can now be done simply in the LCR, btw.\n\nThe LCR also counts as a cleanroom for any cleanroom recipes.\n\nYou will also need:\n1 Maintenance Hatch\n1 Energy Hatch\n1 Input Bus\n5 Output Bus\n5 Input Hatch\n5 Output Hatch"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1169,"OreDict":""},{"id":"gregtech:gt.blockcasings8","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings8","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32408,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":877,"preRequisites":[879],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood","sceptre":1},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scepter with 75 vis capacity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A scepter is crafted from a wand core, a primal charm, three wand caps, a twilight forest monster mob drop, and some screws. Any sort of core or cap may be used, but the caps must match each other. A scepter cannot hold a focus, but holds 150 percent as much vis as a wand with the same core, and gives an additional 5 percent discount for costs, beyond any discounts from its caps or the user's worn equipment. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LichBone","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood","sceptre":1},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":878,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic Staff Core","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A staff requires an extra step for crafting: Two (matching) wand cores must be combined with a primal charm, and crystal clusters to produce a staff core. (While the recipes are all similar, each type of staff core requires a separate research topic to be learned.) "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":879,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Primal Charm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new 50 vis wand you are able to make a Scepter which holds up to 75 vis.\nFirst you need some primal charms which cost 50 vis to craft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28351,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCrystal","Count":4,"Damage":6,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":880,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":66,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Witch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. What's cooking?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":66,"OreDict":""}]}]},{"questID":881,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":57,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Pigmen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Do you want some bacon?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":57,"OreDict":""}]}]},{"questID":882,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Blaze","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me warm you up a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":61,"OreDict":""}]}]},{"questID":883,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":62,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magma Cube","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely, and bouncy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":62,"OreDict":""}]}]},{"questID":884,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Enderman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Don't look me in the eyes!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":58,"OreDict":""}]}]},{"questID":885,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":59,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Cave Spider","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me sing itsy-bitsy spider for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":59,"OreDict":""}]}]},{"questID":886,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ghast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. At least you're not a big cry-baby?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":56,"OreDict":""}]}]},{"questID":887,"preRequisites":[878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Wizard's Staff has a Knob on the End","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Join the core with two wand caps, a twilight forest mob drop, and screws just as for making a wand. A staff cannot be used for crafting, but holds 250 percent as much vis as a corresponding wand. It can even serve as a backup weapon for melee. While it cannot receive weapon enchantments, its damage is decent, and it does not take damage with use (no durability bar)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":888,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":60,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Silverfish","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me be as annoying as possible."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":60,"OreDict":""}]}]},{"questID":889,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magma Cube","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Wanna bounce?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":5,"Damage":56,"OreDict":""}]}]},{"questID":890,"preRequisites":[16],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lBetter Tank... ULV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 32 buckets in a tank. The ULV Tank from Gt++ needs steel plates, iron plates, tin plates, a clay pipe, and a water bucket."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":817,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":30768,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":891,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Tank... LV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 64 buckets in a tank. The LV Tank from Gt++ needs steel plates, iron plates, bronze plates, a huge clay pipe, and an LV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":892,"preRequisites":[891,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Tank... MV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 128 buckets in a tank. The MV Tank from Gt++ needs steel plates, darksteel plates, bronze plates, a bronze pipe and an LV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":819,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":893,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #2 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second item you'll need a lot of in MV tier. When you want to get fluid out of tanks you'll need one. \n\n§4Hint: Goes pretty well with fluid pipes or GT machines, adjust with a screwdriver. It can also be upgraded further into a fluid regulator which allows precise control of fluid transfer speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32611,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5134,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":894,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter Tank... HV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 256 buckets in a tank. The HV Tank from Gt++ needs aluminium plates, darksteel plates, vacuum tubes, a steel pipe, and an MV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":820,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":895,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32631,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #1 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first item you'll need a lot of in MV too. If you want to pull items out of chests or barrels you'll need one. \n\n§4Hint: Goes pretty well with item pipes or GT machines, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32631,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":896,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #3 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An electric piston for your MV machines. The third item you are going to craft a lot of in the future."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":897,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #4 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fourth item you'll need a lot of in MV, which is also a pain to craft. Arguably the most painful item ever. \n\n§4Hint: Works like a conveyor but can work with selected item slots. Adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":898,"preRequisites":[890,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":767,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSimple Ore Washer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Too lazy to make an ore washer, yet bored with your non-automatable cauldron? Then the simple washer is the machine for you! It works reasonably fast and uses only 8eu max - make sure you don't provide too much voltage! Ok, so you do not get any byproducts, but who cares!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":899,"preRequisites":[409],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paying the highest price","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A tier 2 blood altar needs 8 runes placed around the altar. Your new altar can hold more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":900,"preRequisites":[901],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Don't look it in the eyes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bad things may happen if this creature is allowed to stay alive. The ores in its cave are valuable anyway."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Hydra","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":901,"preRequisites":[903],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.meefStroganoff","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"I don't even...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ok so there is this maze. And there are... minotaurs. But what in the world is a minoshroom?"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Minoshroom","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":902,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"A big ugly snake","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Required for your first wand and in general, an ugly creature."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Naga","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":903,"preRequisites":[902],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Adventure time!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stop him before he makes his wish at Prismos'!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Twilight Lich","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":6,"Damage":0,"OreDict":""}]}]},{"questID":904,"preRequisites":[900],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.phantomHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Who you're gonna call?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Phantom Busters! Or wait... Ah whatever. They drop good armor by the way."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Knight Phantom","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":905,"preRequisites":[904],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"The big fluffy crybaby","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It flies, it makes funny sounds, and .. IT'S SO FLUFFY! Well, kill it."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Tower Ghast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":906,"preRequisites":[907],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Let her go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It seems the cold doesn't bother her. Committed crimes: None. But... you know... you have to progress somehow..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Snow Queen","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":907,"preRequisites":[905],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.alphaFur","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Yeti. Alpha, Yeti.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wanted: Alpha Yeti. Death. Committed crimes: Violently throwing ice at people, for no reason."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Yeti Boss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":908,"preRequisites":[451],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secret: A nice....","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey, you! I want that lamp. I have something for you in return. You don't need it anyways, do you?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:cleaver","Count":1,"tag":{"InfiTool":{"RenderExtra":9,"BaseDurability":27,"BaseAttack":6,"ToolEXP":0,"Built":1,"Moss":3,"Effect1":4,"HarvestLevel":0,"ModifierTip1":"Moss","RenderHead":9,"ModDurability":0,"Shoddy":0,"RenderHandle":9,"Accessory":9,"MiningSpeed":100,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":27,"MiningSpeed2":100,"Head":9,"Tooltip1":"Auto-Repair","Attack":6,"Handle":9,"Broken":0,"Extra":9,"RenderAccessory":9,"ToolLevel":1,"Modifiers":20},"display":{"Name":"Paper Cleaver"}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":909,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Creeper)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who hasn't experienced this... You think nothing evil, mine a few diamonds, and suddenly, you wake up in your bed, all your items gone. Time to strike back!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Creeper","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":910,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gold_nugget","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Pigman)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\"Zombie Pigman\"? What the hell is going on with you zombies! Maybe you should encase your animals better at night..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"PigZombie","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":911,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Spiders)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eeeek! Wall climbing monsters, gross! Slay them. Quickly! Watch out for the witch spiders, they can give as good as they get."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Spider","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":912,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Skeleton)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Arrows are nice, if you shoot them. If one hits you, well, bad things happen. \n\nHint: Arrows are an excellent source of telum."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Skeleton","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":913,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Blaze)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You should be careful with this task. Fire protection is highly recommended."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Blaze","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":914,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Zombie)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody knows who they are, or where they came from. They're just annoying at night, and too stupid to make a crafting table."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Zombie","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":915,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:enderman_head","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Enderman)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Uh, fancy teleport pearls. You need them. All of them. Now!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{"SMData":{"SMWebImmune":0,"SMArrowRefireMin":0,"SMUnderPressure":0,"SMWaterDamage":0,"SMLeash":0,"SMBurningImmune":0,"SMArrowSpread":14,"SMRegenTick":0,"SMFallImmune":0,"SMWaterPushImmune":0,"SMArrowRange":0,"SMArrowMoveSpeed":0,"SMArmor":0,"SMWaterBreath":0,"SMArrowRefireMax":0,"SMTex":["minecraft:textures/entity/enderman/enderman.png","minecraft:textures/entity/enderman/enderman_eyes.png"],"SMScale":0.9321846,"SMFireImmune":0,"SMArrowDamage":2,"SMPotionImmune":[],"SMRegen":0}},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":40,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.30000001192092896,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":7,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"carriedData":0,"PersistenceRequired":0,"HealF":40,"id":"Enderman","carried":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":6506027634560194000,"Health":40,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27476269499968,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Enderman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":916,"preRequisites":[913,909,914,910,915,912,911,537,985],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Wither)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After collecting a couple of those wither skeleton heads, you feel like you could use some more action. So why not kill a wither? You'll need a ton of nether stars anyway...\n\nKill it twice for something nice."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"WitherBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":3,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":917,"preRequisites":[456],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:heartCanister","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Secret: The trade for life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have been busy my friend. I have something for you. Give me your hearts, and I will magically enhance them so you can actually use them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"betterquesting:extra_life","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:heartCanister","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":918,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Skeleton: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to advance to a higher tier and reach Mars, Deimos and Phobos, you need to make yourself a better rocket. There are rumors that an Evolved Skeleton hiding out on the Moon has schematics of such a device."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Moon","range":-1,"index":0,"dimension":28,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":450,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.4000000059604645,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":450,"id":"GalacticraftCore.EvolvedSkeletonBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":3550669721897671700,"Health":450,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":2977706436292,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedSkeletonBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":919,"preRequisites":[918],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Creeper: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not that regular creepers are nasty enough, no. There is an evolved creeper boss! He is your key (Well he HAS a key...) to reach the next tier of planets (Asteroid Belt, Ceres, Io, Europa, Ganymede, Callisto)."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Mars","range":-1,"index":0,"dimension":29,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":-2,"Name":"tc.mobmod"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftMars.CreeperBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-3749161857075506000,"Health":600,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31694812711759,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftMars.CreeperBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":920,"preRequisites":[919],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"inventory":{},"type":4,"leftTank":{"Empty":""},"rightTank":{"Empty":""}}},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Blaze: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to proceed to Tier 4 Planets, the blaze boss needs to be killed. Find him in one of the dungeons on Ceres."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Ceres","range":-1,"index":0,"dimension":42,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossBlaze","Fuse":30,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-2265408451657568300,"Health":600,"roomCoordsX":0,"Dimension":0,"OnGround":0,"ignited":0,"Air":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24409945973051,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"ExplosionRadius":3,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossBlaze","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":921,"preRequisites":[920],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:misc","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Ghast: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fluffy, fluffier, ghasts! And also big crybabies. This one hides in a dungeon on IO, and holds the key for Tier 5 planets."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"IO","range":-1,"index":0,"dimension":36,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossGhast","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-1940216915570942500,"Health":600,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31541628372871,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossGhast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":922,"preRequisites":[921],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Crystal Boss: Ayyy.. Wait, what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Seriously, a crystal boss? Anyway, it's your key to Tier 6 planets, and he lurks around on Enceladus."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Enceladus","range":-1,"index":0,"dimension":41,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"SkeletonType":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"roomCoordsY":0,"carriedData":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedCrystalBoss","Fuse":30,"carried":0,"ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-6796800124609087000,"Health":600,"roomCoordsX":0,"Dimension":0,"OnGround":0,"ignited":0,"Air":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24491145111402,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"ExplosionRadius":3,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedCrystalBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":923,"preRequisites":[922],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Slime: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Totally looks like a thaumic slime to me. Don't you think so? Find this dude on Proteus."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Proteus","range":-1,"index":0,"dimension":47,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Size":0,"Attributes":[{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossSlime","Motion":[0,0,0],"Leashed":0,"UUIDLeast":7447897214129004000,"Health":600,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31487744687521,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":924,"preRequisites":[923],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Wolf:Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final frontier... A... wolf that is not even an Iron Maiden fan?... What did you expect, a super boss? Heh. No. Budget was too tight..."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Pluto","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":350,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":4,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":5,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":350,"id":"GalacticraftCore.EvolvedBossWolf","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-514555328123248260,"Health":350,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24669862148609,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossWolf","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":925,"preRequisites":[924,908,916,906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeCore","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Technology: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You beat the game, literally. There is nothing left to do, you might want to try real life... But one thing might be interesting for you. You know, just for the phuns. Select one of the totally OP items here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["This! Is OP"]},"Aspects":[{"amount":1000,"key":"instrumentum"}],"nodemod":0,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},{"id":"TConstruct:creativeModifier","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":900100,"terra":900100,"ignis":900100,"cap":"orichalcum","rod":"neutronium","ordo":900100,"perditio":900100,"aer":900100},"Damage":2000,"OreDict":""},{"id":"ProjRed|Fabrication:projectred.fabrication.icchip","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":926,"preRequisites":[410,422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyThaumium","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your altar more powerful you need to upgrade it. You need to build pillars two block high out of blood-soaked thaumium block and on top one block of glowstone blocks on each pillar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:glowstone","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyThaumium","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":927,"preRequisites":[421,430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyVoid","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make tier 4 slates you need a Tier 4 altar. This can be made like the tier 3 altar with pillars out of void-blood-soaked stones four blocks high and a blood brick on top of the pillars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":4,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBloodShard","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:voidBlock","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:largeBloodStoneBrick","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyVoid","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:speedRune","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":928,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make tier 5 slates you need a Tier 5 altar. This can be made with 4 beacons. Beacons have thaumcraft recipes and can be found in the thaumcraft book on the GTNH page."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":929,"preRequisites":[703,702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyIchorium","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The highest tier of the blood altar is tier 6. You need pillars of blood-soaked ichorium 7 blocks high and on top the crystal cluster blocks made out of demon soul shards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":56,"Damage":2,"OreDict":"ingotIchorium"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal8","Count":28,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystal","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyIchorium","Count":28,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":930,"preRequisites":[530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":679,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAuto Mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A miner in LV age? Wow! This nifty machine will find ores for you. Place up to two stacks of mining pipes in the right slots. This machine needs 8 EU/t to work. The miner searches for ores in a 17x17 block work area. Now comes with 2 fortune bonus! Great for gathering additional small ores...\n\nDon't forget to cover it up! These are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":679,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":931,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":680,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAuto Mining MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV miner will find ores for you faster than the LV miner. Place up to two stacks of mining pipes in the right slots. This miner need 32 eu to work. The Miner searches ores in a 33x33 block area and works two times faster than the LV variant. Comes with 4 fortune bonus, great for gathering small ores in the Nether.\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":680,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":932,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAuto Mining HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV miner will find ores for you faster than the MV miner. Place up to two stacks of mining pipes in the right slots. This miner needs 128 eu to work. The Miner searches ores in a 49x49 block area (three chunks wide, perfect for a chunkloader) and works two times faster than the MV variant. It also has a 6 fortune bonus, making it even better for small ores. Recommend taking some with you to the Moon to gather meteoric iron."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":933,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now its time to invest in some renewable energy. Let's start with solar panels. The basic one only gives 1 EU/t. Most GT machines can use them as covers. Be sure to put a glass layer above them in case it rains while you swap panels. You will still want to keep rain off the sides of the machine hull too.\n\n§4The Aluminium Iron plate needs an MV Forming Press."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"IC2:blockAlloyGlass","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"IC2:itemPartCarbonPlate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.AluminiumIronPlate","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":2000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":934,"preRequisites":[933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun 8V","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the ULV one. It generates 8 EU/t. Most gt machines can use them as covers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32750,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17980,"OreDict":""},{"id":"dreamcraft:item.ReinforcedAluminiumIronPlate","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":935,"preRequisites":[933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun 1x1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those single eu panels on a block to make them placeable in the world. Use an MV assembler to combine the panel with a ULV hull."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":936,"preRequisites":[934,206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun at LV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the LV one. It generates 32 EU/t max. Most gt machines can use them as covers. First you need to produce a sunnarium item by using 10 million eu power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17473,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"dreamcraft:item.IrradiantReinforcedAluminiumPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2320,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":937,"preRequisites":[936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun 1x1 LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 32 EU panels on a block to make them placeable in the world. Use an MV assembler to combine the panel with an LV hull, a battery, and a robot arm. Now this panel will clean itself!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32518,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":938,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTreetapElectric","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomated Sticky Resin Farmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are tired of crafting tons of tree taps, how about a machine that uses power but never breaks? Let's craft an electric tree tap!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemTreetap","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemTreetapElectric","Count":1,"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":100000},"Damage":32518,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":939,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemToolHoe","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomated Farmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your hoe must be getting worn out by now. Why not craft an electric one which never breaks?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":4306,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemToolHoe","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":940,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1172,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCleanroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make more advanced circuits you'll need a cleanroom. The cleanroom is a multiblock between 3x4x3 and 15x15x15 (WxHxD) blocks. Besides plascrete blocks for all edges you'll need a controller in the top center, filter machine casings for the rest of the top except edges, an energy and maintenance hatch , a reinforced door and three machine hulls. For now you can use MV tier.\n\nLet's build a 5x5x5 room. Expanding it vertically is easy to do, or you can make it wider and longer, as long as both X and Z match and are odd. Up to 5% of the plascrete blocks can be replaced with Reinforced Glass to see into the cleanroom and check on machines.\n\nYou can pass materials through the walls using Machine Hulls. You can pass 1A of power using Machine Hulls as well, or you can use Diodes to pass multiple amps through walls.\n\nJust be really careful when upgrading you machines. Be sure to remove the machine hulls and diodes and replace them with the new power tier, or else you will be very sad.\n\nIf the Cleanroom has maintenance issues, it will have a chance to void recipes needing a cleanroom. Monitor your cleanroom with a Hand Scanner, Industrial Information Panel, or using a Needs Maintenance Cover and a Redstone Powered Light or Howler Alarm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone_pressure_plate","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemDoorAlloy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockreinforced","Count":82,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":8,"Damage":11,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1172,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":941,"preRequisites":[77,1477,1478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32762,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lA very useful Scanner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The portable scanner is a tool capable of showing advanced information about almost every block in the game. \nIn order to function, the tool needs to be charged first. It can hold up to 400k EU and accept 128 EU/t or less. This is MV tier.\n\nIt can scan crops, which shows more information than the cropnalyzer does. The crop, which was scanned in the world, will drop a scanned seed bag.\nIt can scan machines from GregTech, giving information about current progress, the stored energy, efficiency, problems and CPU-load - be sure to check the full chat window for additional details.\nFor any block in the game it scans, it gives information about its ID, Metadata, position in the world and hardness value.\nIt also gives information about pollution level in the chunk the scanned block belongs to.\nIn addition it shows when the cleanroom has reached its 100 percent efficieny level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32762,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32764,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":942,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":16384000,"SecondaryMaterial":"Neutronium"}},"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lIt's a dirty job, and you're going to do it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Plunger is used to clear liquids from pipes. It can also be used on a machine to remove up to 1000mb of fluid from its internal buffer. You don't have to wrench your machine and replace it. It can be crafted from a rod of the desired material and rubber sheets. \n\n§4Hint: Plunger deals 2.75 - 7.75 damage depending on the materials used."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":44,"OreDict":"craftingToolPlunger"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:oldworldveggiesoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":943,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":423,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPerforming chemical experiments at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High tier chemical recipes like ammonia need an HV chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":423,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5683,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":944,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSuper Tank I","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 4000 buckets in a tank. The super tank I needs a hermetic casing made with aluminium plates and PTFE pipe. The tank need 4 circuits, a pulsating iron plate and an MV pump. Now you can store the same amount of fluids a steel 5x5 Railcraft tank contains in a single block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings6","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":945,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2879,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lChad - A better way to make Paper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making paper out of wood pulp and water can be tedious and difficult. Why not macerate some sugar cane down to chads and press it with two stone plates to paper? Later on you can use the chemical bath for a even better ratio."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":"craftingToolMortar"},{"id":"minecraft:reeds","Count":45,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:stone_slab","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":2879,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:paper","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"minecraft:stone_slab","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":946,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:planks","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBamboo fence","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are lucky and start off in a bamboo forest.\nBamboo is a very useful tree since it grows really fast and when you place bamboo sticks they will grow and protect your base behind a 3 block tall wall.\nAlternatively, you can also use Berry Bushes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:bamboo","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:saplings","Count":20,"Damage":2,"OreDict":""},{"id":"TConstruct:trap.punji","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":947,"preRequisites":[43],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:trap.punji","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lPunji Sticks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A early game protection moat can be made out of punji sticks. It hurts all mobs/players and additionally gives a slowness II potion effect. Make a trench around your base and put the punji sticks inside."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":20,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":20,"Damage":0,"OreDict":""},{"id":"minecraft:reeds","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:trap.punji","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:saplings","Count":10,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":948,"preRequisites":[37,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11304,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBetter than iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wrought Iron will become more important very soon when you have a bit of steel and are able to build high pressure steam machines. The material is much harder than iron, and you can make better tools with it too.\nTo make wrought iron, you need a tinkers smelter to melt some iron ingots down and cast nuggets; put these in a furnace to get wrought iron nuggets. With the compressor, you can compress the nuggets into ingots.\n\n§§§4§4§9§4Hint:\nCrushed or purified iron ore (not an impure version, look for Chalcopyrite veins) can be smelted to iron nuggets directly. Or you can use an alloy smelter to turn iron ingots into nuggets faster than a smeltery.\n\nLater on, you can use an arc furnace to make wrought iron ingots directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":9032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":9304,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":11304,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"WroughtIron","MaxDamage":38400,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"WroughtIron","MaxDamage":38400,"SecondaryMaterial":"WroughtIron"}},"Damage":16,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":949,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:stalkgarden","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Garden Bags","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finding some special \"Pam's HarvestCraft\" gardens can be very difficult. With your farmer coins you can buy some garden bags."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":36,"OreDict":""}]}]},{"questID":950,"preRequisites":[89],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":3456000,"globalShare":1,"questLogic":"AND","name":"XP berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few xp berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmerI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":5,"OreDict":""}]}]},{"questID":951,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":522,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFluid Solidifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use molds to make plates, sticks, bolts and many more item parts in the fluid solidifier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":522,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":952,"preRequisites":[951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBase too big? I've got a fix for you!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Keeping a base spread apart for pollution or explosion prevention can really wear you out. Try harvesting some Marble and centrifuging it into Calcite, and mix up some concrete in your Mixer. Next output it into a Fluid Solidifier with a block mold to make concrete blocks. You'll move faster on top of these blocks. They can even be turned into bricks to prevent unwanted spawns! Hint: 10 buckets of wet mix converts to exactly 160 blocks. These blocks can also be Chiseled into different varieties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":24,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":2845,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2939,"OreDict":"dustQuartzSand"},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2299,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":953,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5143,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel pipes are much better than steel pipes. Like all high tier pipes (Titanium, Tungstensteel etc) you need a better wrench to deconstruct the pipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5143,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":954,"preRequisites":[75,143],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockReservoir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThe \"Water Problems\" are solved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Entering the HV age you found a way of making a water reservoir which solves the finite water problem. Craft it with some fused quartz glass, HV pumps, and cauldrons."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockFusedQuartz","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32612,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:cauldron","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:blockReservoir","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":955,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Piston","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some pistons? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:sticky_piston","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":956,"preRequisites":[103,95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5122,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Bronze Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bronze fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5122,"OreDict":""}]}]},{"questID":957,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23354,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Magnetic Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic iron for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23354,"OreDict":""}]}]},{"questID":958,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21057,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tin Rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some tin rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21057,"OreDict":""}]}]},{"questID":959,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Iron Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some iron rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23032,"OreDict":""}]}]},{"questID":960,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Brass Rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some brass rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23301,"OreDict":""}]}]},{"questID":961,"preRequisites":[103,530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8516,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Certus Quartz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some certus quartz? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":8516,"OreDict":""}]}]},{"questID":962,"preRequisites":[98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:vacuumhopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lVroooooom...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of standing around to collect all the drops and XP from your diamond spikes?\n\nMake yourself a vacuum hopper to suck up all the drops and XP. Feed the XP into a tank to store it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:vacuumhopper","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":963,"preRequisites":[834],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Basic Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some basic circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32100,"OreDict":""}]}]},{"questID":964,"preRequisites":[748],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Good Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some good circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""}]}]},{"questID":965,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32700,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Vacuum Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some vacuum tubes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32700,"OreDict":""}]}]},{"questID":966,"preRequisites":[835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32716,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Resistors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some resistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32716,"OreDict":""}]}]},{"questID":967,"preRequisites":[747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Diodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some diodes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""}]}]},{"questID":968,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""}]}]},{"questID":969,"preRequisites":[785],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Transistors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some transistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32717,"OreDict":""}]}]},{"questID":970,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ram Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ram wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""}]}]},{"questID":971,"preRequisites":[794],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32037,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Integrated Logic Circuit Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some integrated logic circuit wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32037,"OreDict":""}]}]},{"questID":972,"preRequisites":[546,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30707,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some oil? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30707,"OreDict":""}]}]},{"questID":973,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:fluid.creosote.cell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Creosote Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some creosote oil? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30712,"OreDict":""}]}]},{"questID":974,"preRequisites":[641,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30739,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Naphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some naphtha? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30739,"OreDict":""}]}]},{"questID":975,"preRequisites":[644,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Methane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some methane? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30715,"OreDict":""}]}]},{"questID":976,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Ethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ethanol? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30706,"OreDict":""}]}]},{"questID":977,"preRequisites":[846,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Oxygen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some oxygen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30013,"OreDict":""}]}]},{"questID":978,"preRequisites":[555,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30012,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Nitrogen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some nitrogen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30012,"OreDict":""}]}]},{"questID":979,"preRequisites":[550,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Hydrogen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some hydrogen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30001,"OreDict":""}]}]},{"questID":980,"preRequisites":[745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30726,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Glue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some glue? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30726,"OreDict":""}]}]},{"questID":981,"preRequisites":[1084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Lubricant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some lubricant? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30724,"OreDict":""}]}]},{"questID":982,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Sulfuric Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What some sulfuric acid? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30720,"OreDict":""}]}]},{"questID":983,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Engineering processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some engineering processors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":24,"OreDict":""}]}]},{"questID":984,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Silverwood Sapling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silverwood saplings are always rare to find. Want some? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":8,"Damage":1,"OreDict":""}]}]},{"questID":985,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Ghast)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They shoot you with explosive fireballs but they are weak when you hit them or knock the fireballs back with a weapon. Better upgrade your armor with fire and blast protection.\n\nSorry about the giant ghast Amancila, it can't be changed. \n\nYou'll need to kill 10."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Ghast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":986,"preRequisites":[943,602],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal_frame","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Is this the End? No the END Dimension","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your investigation into the pearls has shown you that the source of the disturbance seems to be coming out of the shimmering portals inside strongholds. You feel strangely drawn into its mysterious depths.\n\nHint: throwing Ender Eyes in the air in the Overworld will guide you to the nearest stronghold . From time to time Ender Eyes are destroyed in this process, so make extras."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_pearl","Count":12,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"END","range":-1,"index":2,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"BiomesOPlenty:helmetAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":78}],"RepairCost":2,"display":{"Name":"Dream Masters Helmet"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:chestplateAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":34}],"RepairCost":2,"display":{"Name":"Dream Masters Chestplate"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:leggingsAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":34}],"RepairCost":2,"display":{"Name":"Dream Masters Leggings"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:bootsAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":2},{"lvl":5,"id":3},{"lvl":5,"id":4}],"RepairCost":2,"display":{"Name":"Dream Masters Boots"}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":987,"preRequisites":[604,990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"ACTIVATED","storedEnergyRF":5000000},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUpgraded RF Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Capacitor Banks are upgraded RF batteries which can store the RF power you generate. You can put many blocks together to enlarge your total battery capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":2,"tag":{"type":"ACTIVATED","storedEnergyRF":0},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":988,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":25000000},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lBigger, Better, Chargier?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Vibrant Capacitor Bank is the largest RF Battery for now. It can store 25 million RF in a single block. Putting many capacitor banks together will enlarge your total battery capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":989,"preRequisites":[160,81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11367,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lVibrant alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vibrant alloy is a high tier EnderIO alloy made out of ender eye, energetic alloy and chrome dust. 3600k heating coils and a vacuum freezer are needed to make ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11367,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":990,"preRequisites":[78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11366,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnergetic Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic alloy is a new alloy from EnderIO made out of gold, conductive iron and black steel dust. Double-layer capacitors need it and it can be made in the electric blast furnace with tier 2 coils (2700K)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11366,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":991,"preRequisites":[141,139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dark Steel Armor basic upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to upgrade one armor item with basic upgrades, you need a vibrant crystal and 10 xp levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:craftingMaterial","Count":36,"Damage":2,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8194,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":992,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"NA":0,"Health":30,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Go find some tropical bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next you will need to find some tropical bees. The hives can be found in Jungle biomes. Be careful as these bees are very aggressive and can poison you. Collect the silky combs and extract some silk wisp from those in order to make some Apiarist's clothes.\nLooking for pristine Bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beeCombs","Count":8,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":993,"preRequisites":[992,539,994],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeCombs","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Silky combs and Propolis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collect silky combs and extract some silk wisp out of it in order to make some Apiarist's clothes.\nThis can take quite a bit of time.\nUse a GregTech or Forestry Centrifuge to get Silky Propolis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":370,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:propolis","Count":305,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":25,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":994,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Forestry Centrifuge is able to centrifuge up to 9 items out of bee combs. It uses RF energy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17310,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32600,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20305,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11034,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:waxCapsule","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBees","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":995,"preRequisites":[539,994,993],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:craftingMaterial","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Woven silk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuge your silky propolis to get some silk wisp at a chance of 60 percent. Put 9 silk wisp in the Forestry carpenter or Gregtech assembler to get woven silk. \nThis fine fabric can be used for crafting Apiarist's Clothes or to upgrade your Forestry Backpacks to 45 slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":216,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":24,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":25,"OreDict":""},{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":996,"preRequisites":[578,995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Apiarist's Cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have collected 24 woven silk you can make a complete Apiarist's suit to be protected from bee stings and other bad bee effects. You can also use the suit parts to upgrade your EnderIO Dark Steel Armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":24,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristChest","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristLegs","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":997,"preRequisites":[991],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"id":5635,"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.glide":{"upgradeItem":{"id":5654,"Count":1,"Damage":1},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.glider"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"id":4910,"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.chestplate","slot":1}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dark Steel Armor advanced upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your Dark Steel armor can be upgraded in various ways by combining it with various other items. You will need an anvil and a lot of XP.\n\nMake sure when making the potions to only do three at a time, so the NBT data matches."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristChest","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristLegs","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":3,"Damage":8194,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:waterlily","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"EnderIO:itemGliderWing","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:noteblock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"tag":{"enderio.darksteel.upgrade.soundDetector":{"upgradeItem":{"id":25,"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.sound"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.naturalistEye":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.naturalistEye"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.helmet","slot":0},"enderio.darksteel.upgrade.nightVision":{"upgradeItem":{"Count":1,"Damage":8198},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.nightVision"},"enderio.darksteel.upgrade.gogglesRevealing":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.gogglesOfRevealing"},"enderio.darksteel.upgrade.speedBoost":{"level":2,"upgradeItem":{"Count":1,"Damage":1},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.solar_two"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.glide":{"upgradeItem":{"Count":1,"Damage":1},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.glider"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.chestplate","slot":1}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.leggings","slot":2},"enderio.darksteel.upgrade.speedBoost":{"level":3,"multiplier":0,"upgradeItem":{"Count":1,"Damage":8194},"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.speed_three"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"tag":{"enderio.darksteel.upgrade.swim":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.swim"},"enderio.darksteel.upgrade.jumpBoost":{"level":3,"upgradeItem":{"Count":1,"Damage":0},"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.jump_three"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.boots","slot":3}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:blockSolarPanel","Count":2,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":2,"OreDict":""},{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":8262,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":8258,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":998,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDark Steel Tool and Weapon basic upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to upgrade a weapon or tool, you need a vibrant crystal and 10 xp levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMaterial","Count":2,"Damage":8,"OreDict":""},{"id":"minecraft:diamond_shovel","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":999,"preRequisites":[998],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDark Steel Tool and Weapon advanced upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your weapons and tools can be upgraded even more by adding capacitors and various other items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:diamond_shovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"tag":{"enderio.darksteel.upgrade.travel":{"upgradeItem":{"Count":1,"Damage":8},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.travel"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.travel":{"upgradeItem":{"Count":1,"Damage":8},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.travel"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.spoon":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.spoon"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":2,"OreDict":""},{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""},{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1000,"preRequisites":[989,933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRF Solar Panel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is possible to power RF machines with a solar panel. It outputs 10 RF/t. Perfect for low use RF machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1001,"preRequisites":[1000],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRF Solar Panel Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The upgraded RF solar panel is much better. It outputs 40 RF/t."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1002,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:magicbees.enchantedEarth","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanted Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted Earth makes saplings and seeds planted on it grow faster. When stacked on top of each other it has a chance to add ticks to the block above accumulating all the way to the top. This will randomly speed up growth a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:magicbees.enchantedEarth","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1003,"preRequisites":[936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§aPower of the Sun at MV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the MV one. It gives 128 EU/t max. Most GT machines can use them as covers. First you need to produce sunnarium out of 9 smaller sunnarium pieces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17341,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17470,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"dreamcraft:item.IrradiantReinforcedTitaniumPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2340,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1004,"preRequisites":[1003],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun 1x1 MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 128 EU panels on a block to make them placeable in the world. Use an HV assembler to combine the panel with an MV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1005,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2056,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lIndium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At EV Level you are able to make Indium for HV Solar Panels. Indium cannot be found in Ore form. It can only be made with an EV chemical reactor.\nFirst you need to make indium out of purified galena and sphalerite ore. Mix in some aluminium to get indium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":6839,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":27,"Damage":6830,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2056,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1006,"preRequisites":[1003,1005,861,1890],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the HV one. It generates 512 EU/t max. Most GregTech machines can use them as covers. First you need to produce enriched sunnarium by mixing irradiated uranium and sunnarium. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17339,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32065,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17981,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32705,"OreDict":"circuitElite"},{"id":"dreamcraft:item.IrradiantReinforcedTungstenPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1007,"preRequisites":[1006],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun 1x1 HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 512 EU panels on a block to make them placeable in the world. Use an EV assembler to combine the panel with an HV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32538,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1008,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBooks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Books can be found easily enough in villages or in the roguelike dungeons surface brick house.\nI'm sure they have a recipe too.\n\nNow glue on the other hand...or should I say horse? Try and get a horse inside a smeltery and feed it hay to keep it alive.\n\nOr you can wait until after you go to the Nether and get some sulfur. Either way. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:book","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemDust","Count":32,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32234,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1009,"preRequisites":[633,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish trapping 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fishing can be very boring. Why not automate it with a fish trap?\nThis is your fish trap 2.0"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":5132,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":4,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1010,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:freshmilkItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fresh Water and Milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many cooking recipes need milk and water. Crafting it in the crafting table can be very tedious.\nIt is much easier using a Forestry worktable. Drag-click all your buckets into the worktable, and craft them all at once."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:freshwaterItem","Count":64,"Damage":0,"OreDict":""},{"id":"harvestcraft:freshmilkItem","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2817,"OreDict":""},{"id":"harvestcraft:flourItem","Count":16,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1011,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":822,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Bauxite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main goal when you reach the Moon is to find some bauxite ore to make titanium for the EV machine tier. Some meteoric iron is required for your tier 2 rocket for reaching Mars so be sure to collect a stack from fallen meteors and small ores beneath the surface."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":822,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":19,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":918,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1012,"preRequisites":[1011],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2375,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRutile","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rutile can be thermal centrifuged out of bauxite and ilmenite dust. \nElectrolyzing bauxite can extract even more rutile and putting ilmenite in the electric blast furnace can give some rutile too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":383,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2375,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2010,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30376,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2018,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1013,"preRequisites":[1015,1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32011,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSMD Circuit components","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Surface-mount devices are more advanced circuits parts. They are needed for high tier circuits and are cheaper to craft than basic capacitors, transitors, diodes and resistors. You need an Advanced Assembler and some molten polyethylene.\n\nBe sure to check how much gallium you have available. It might not be worth it to use SMD diodes and resistors until you have a steady supply with an HV macerator, bees, or bauxite ore. Also look into IC2 crops to 4x your zinc, sphalerite, and bauxite.\n\n§4The easiest way to get Platinum is with Nickel ore and a chemical bath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1014,"preRequisites":[1017],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lWorkstation Extreme Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier of circuits are the extreme circuits. Workstation Circuits are the easiest one and are needed in EV Tier. Let's craft some.\n\nIn addition, you will need 16 Diodes, SMD or non-SMD."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32703,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":26085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32704,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1015,"preRequisites":[1021,1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lEmpty Plastic Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plastic circuit boards require plastic Plate with Sulfuric Acid to make an Empty Board. By adding copper foil and Iron(III) Chloride or Sodium Persulfate you can craft a plastic circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":29035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32007,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1016,"preRequisites":[1013,1221,1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lIntegrated Processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are three variants of good circuits. The good electronic circuit, the good integrated circuit and the integrated processor which needs an MV circuit assembling machine. The integrated processor requires a CPU, capacitors, transistors and resistors.\nA cleanroom is needed.\n\nYou will need in addtion 4 Resistors, 4 Capacitors and 4 Transistors. You can use SMD or non SMD versions."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1017,"preRequisites":[1013,1019],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32703,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lProcessor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another variant of the advanced circuit from IC2 is the processor assembly.\nTwo Integrated Processors are needed in the MV circuit assembler recipe.\nThe recipe is a cleanroom recipe.\n\nIn addition you will need 8 Capacitors, SMD or non-SMD is fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32080,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32703,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1018,"preRequisites":[1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lCentral Processing Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Integrated Processors need central processing units. You can get these by cutting a ram wafer.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32044,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24545,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1019,"preRequisites":[1016],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32014,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSmall Coil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Processing assembly needs some small coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":28613,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19345,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1020,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"iron3chloride","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIron (III) Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron(III) Chloride can be made by first making hydrochloric acid out of hydrogen and chlorine. Then combine this with some iron dust to make Iron(III) Chloride.\nYou can etch your board with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30683,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30693,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.integrated_circuit","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1021,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30718,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§r§6§k§r§6§lSodium Persulfate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium Persulfate can be made in the electrolyzer out of sodium bisulfate dust.\nSodium bisulfate is made out of sulfuric acid and salt in the chemical reactor.\nYou can etch your board with it.\nSave the hydrochloric acid for your future epoxid production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2817,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2630,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30718,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemFluidCell","Count":8,"tag":{"Fluid":{"FluidName":"iron3chloride","Amount":1000}},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1022,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23355,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Magnetic Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic steel for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23355,"OreDict":""}]}]},{"questID":1023,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Alu Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some alu rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23019,"OreDict":""}]}]},{"questID":1024,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21300,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Bronze Rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bronze rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21300,"OreDict":""}]}]},{"questID":1025,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5132,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Steel Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5132,"OreDict":""}]}]},{"questID":1026,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":23303,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Electrum Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some electrum rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23303,"OreDict":""}]}]},{"questID":1027,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Flawless Emerald","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some flawless emeralds? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":29501,"OreDict":""}]}]},{"questID":1028,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ender Pearl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ender pearls? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1029,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23356,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magnetic Neodymium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic neodymium for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23356,"OreDict":""}]}]},{"questID":1030,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23306,"OreDict":""}]}]},{"questID":1031,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Steel rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21305,"OreDict":""}]}]},{"questID":1032,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5142,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""}]}]},{"questID":1033,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Chrome Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some chrome rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23030,"OreDict":""}]}]},{"questID":1034,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ender Eyes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ender eyes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_eye","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1035,"preRequisites":[98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:xpshower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBe sure to get your armpits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to use all that delicious XP to raise your levels? Move the tank with XP above you and attach this convenient shower head to take the XP from the tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:xpshower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1036,"preRequisites":[1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Plastic Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some plastic circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}]}]},{"questID":1037,"preRequisites":[1016],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Central Procesing Unit Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some central processing unit wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32045,"OreDict":""}]}]},{"questID":1038,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32011,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Resistors SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD resistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32011,"OreDict":""}]}]},{"questID":1039,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32016,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Diodes SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD diodes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32016,"OreDict":""}]}]},{"questID":1040,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32018,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Transistors SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD transistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32018,"OreDict":""}]}]},{"questID":1041,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Capacitor SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD capacitors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32020,"OreDict":""}]}]},{"questID":1042,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Logic processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some logic processors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""}]}]},{"questID":1043,"preRequisites":[1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Chlorine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some chlorine? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30023,"OreDict":""}]}]},{"questID":1044,"preRequisites":[1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30693,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Iron (III) Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some iron 3 chloride? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30693,"OreDict":""}]}]},{"questID":1045,"preRequisites":[1021],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30629,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Sodium Persulfate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some sodium persulfate? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30718,"OreDict":""}]}]},{"questID":1046,"preRequisites":[586],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":607,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Pyrochlore Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can't find Pyrochlore ore because of an old worldgen? Buy some Ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":607,"OreDict":""}]}]},{"questID":1047,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Forest Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Forest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1048,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Deep Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Attuned Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1049,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ender Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Ender Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1050,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Bees House","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bee houses? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1051,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Apiary","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Apiaries? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1052,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Impregnated Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some impregnated frames? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1053,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Infernal Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Infernal Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1054,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Oblivion Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Oblivion Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1055,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.paper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Did you want to know your warp level?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a few forbidden researches your warp level has increased a bit. Do you want to know how much warp you have?\nCraft some litmus paper to print out the warp level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.paper","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":8,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1056,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Meadow Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Meadows Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1057,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Modest Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Modest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1058,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tropical Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Forest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1059,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Wintry Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Wintry Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":6,"OreDict":""}]}]},{"questID":1060,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Marshy Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Marshy Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1061,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Water Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Water Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1062,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rocky Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Rocky Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1063,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Nether Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Embittered Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1064,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Curious Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Mystical Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1065,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Unusual Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Unusual Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1066,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Resonating Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Sorcerous Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1067,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Space Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Here's an idea for your space station.\nYou can add up to four spin thrusters to your station to rotate it.\n\nDays on space stations last longer than on the overworld, so you can generate more solar power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":24,"Damage":0,"OreDict":"ingotIron"},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11057,"OreDict":"ingotTin"},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":"ingotAluminium"},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.standardWrench","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.spinThruster","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1068,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":2,"id":212}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are you prepared?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you prepared for the Moon?\nA few things will help you to live longer and prevent you from dying on the Moon.\nIf you die on the moon you will be returned to earth without your stuff. A Soulbind enchantment will keep an item with you when you die.\nGraves are placed at the location where you died."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:itemMaterial","Count":1,"Damage":8,"OreDict":""},{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":8}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":2,"id":212}]},"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1069,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Oak, Spruce, Birch, Jungle Sapling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You spawned in a desert and need Oak or Birch saplings? No problem! For five Forestry Coins you can select which one you want to buy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:sapling","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":1,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":2,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":3,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":4,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":5,"OreDict":""}]}]},{"questID":1070,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Magic Feather","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's craft some magical Map focuses to create a magical map which will help you find Twilight Monster Bosses.\nGo find some Raven feathers. You can get them by killing Ravens sitting on Obsidian Blocks in Twilight. Then you need some Torchberries and some Glowstone dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.tfFeather","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.torchberries","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1071,"preRequisites":[1070],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.emptyMagicMap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Magic Map","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the Magic map you need the magic map focus and a stack of paper. Please only use the map in the Twilight Forest. You can only get one map every 24 hours so be careful with it. Using the map in the Overworld or another dimension will lag the server."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.emptyMagicMap","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1072,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:mooncharm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon arrival","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have a small present for you: a Talisman of Remedium which is very useful to persevere during the dark nights with all these monsters.\nFirst you have to prove you can survive on the moon by yourself. After mining some moon turf, dirt, and rock, you can have it.\n\nMake sure you check back in the HV questline for necessary ores you should gather while here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:quartz","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":1,"dimension":28,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:cleansingTalisman","Count":1,"tag":{"enabled":0},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1073,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":182,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Naga","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Naga in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFNagastone","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":182,"OreDict":""}]}]},{"questID":1074,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":190,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Lich","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Lich in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorI","Count":7,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":1,"OreDict":""},{"id":"dreamcraft:item.LichBone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":190,"OreDict":""}]}]},{"questID":1075,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":205,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":960000,"globalShare":1,"questLogic":"AND","name":"Minoshroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Minoshroom in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},{"id":"TwilightForest:tile.TFMazestone","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":205,"OreDict":""}]}]},{"questID":1076,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":189,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":960000,"globalShare":1,"questLogic":"AND","name":"Hydra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Hydra in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFFireJet","Count":1,"Damage":8,"OreDict":""},{"id":"TwilightForest:item.minotaurAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":189,"OreDict":""}]}]},{"questID":1077,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":224,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1200000,"globalShare":1,"questLogic":"AND","name":"Knight Phantom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Knight Phantom in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFUnderBrick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":224,"OreDict":""}]}]},{"questID":1078,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":217,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1200000,"globalShare":1,"questLogic":"AND","name":"Ur Ghast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon an Ur-Ghast in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFTowerStone","Count":1,"Damage":1,"OreDict":""},{"id":"TwilightForest:item.phantomHelm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":217,"OreDict":""}]}]},{"questID":1079,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":226,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1440000,"globalShare":1,"questLogic":"AND","name":"Yeti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Yeti in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":3,"OreDict":""},{"id":"TwilightForest:item.fieryTears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":226,"OreDict":""}]}]},{"questID":1080,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":231,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1440000,"globalShare":1,"questLogic":"AND","name":"Snow Queen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Snow Queen in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.alphaFur","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.AuroraPillar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":231,"OreDict":""}]}]},{"questID":1081,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":222,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Bending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Plate Bending Machine allows you to directly make double, triple or more compressed plates, which might be useful for your first rocket in HV Tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":222,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemDensePlates","Count":8,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1082,"preRequisites":[1083],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":162,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Battery Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"MV machines can internally hold 1 battery. But sometimes you need to store more power than that, or you want a whole powerline to share batteries. You can use a battery buffer to store large amounts of batteries. They come in different sizes like 1x, 4x, 9x and 16x.\nBuild a 4x buffer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":172,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1083,"preRequisites":[758],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32528,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Lithium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Lithium is the best material to use when making batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32528,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17315,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1084,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLubricant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using lubricant instead of water or distilled water in your cutting machines will increase the output or speed of the machines.\nYou can make lubricant out of oil, seed oil, fish oil or creosote in a distillery. If you are able to craft a brewery you can use talc and soapstone to get much more lubricant each cycle.\n\nLube cells are required to make low tier energy hatches, so stockpile a few cells and use the rest to make your cutting machine faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30724,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30713,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1085,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMore Compact Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are starting to find more and more iron you feel your wood chests are too small to hold all the stuff you found and collected. Now it's time to upgrade your chests to iron chests. You can just build a new chest or upgrade the wood chest with a wood to iron chest upgrade item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""},{"id":"minecraft:chest","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:woodIronUpgrade","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1086,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:strawberryjuiceItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Juice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most of your berries can be extracted to juice. This is a chance to get more food variants and the nutritional value is higher than eating the fruit directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:applejuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:carrotjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:melonjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:blackberryjuiceItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:strawberrymilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:chocolatemilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:bananamilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1087,"preRequisites":[665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:potatocakesItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potato Cakes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potatoes, onions, butter and a skillet make very tasty potato cakes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:onionItem","Count":4,"Damage":0,"OreDict":"cropOnion"},{"id":"harvestcraft:butterItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:potatocakesItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32559,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1088,"preRequisites":[665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:friedeggItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fried Eggs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So easy, skillet and an egg.... fried egg."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:friedeggItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2817,"OreDict":""},{"id":"harvestcraft:flourItem","Count":8,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1089,"preRequisites":[1088,638,1087,1086],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hearty Breakfast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's now combine all the things together and make a healthy and very good breakfast.\nSome cooked meat, potato cakes, toast, fried egg and a tasty juice provide you with a very nourishing meal.\nYou can use any cooked meat and any fruit juice here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":"listAllmeatcooked"},{"id":"harvestcraft:potatocakesItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:friedeggItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:applejuiceItem","Count":1,"Damage":0,"OreDict":"listAlljuice"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:friedeggItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:potatocakesItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:toastItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":1090,"preRequisites":[546,625],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:flowing_lava","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lTry to dry out the Nether","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps can do more than pump oil and water. You can go to the nether and pump lava from the huge lava lakes too.\nDon't forget to bring some tanks or fluid cells with you. Once you reach HV lava can be centrifuged for gold, silver, tin, copper, and a little tungstate.\n\nThis is a good use for your LV pumps once you upgrade to MV pumps for oil."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""},{"id":"irontank:goldTank","Count":4,"Damage":0,"OreDict":""},{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Go to the Nether","range":-1,"index":2,"dimension":-1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1091,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Tanks... Oh shiny","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you build a cutting machine you can make some diamond plates for your new 64 buckets single block tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"TConstruct:GlassPane","Count":2,"Damage":0,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1092,"preRequisites":[1090],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestthenether:glowFlower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNew source of Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find some glowflowers in the Nether and plant them in the Overworld. You will never need to go to the Nether and harvest glowstone again."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestthenether:glowFlower","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestthenether:glowflowerseedItem","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:dye","Count":32,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1093,"preRequisites":[1322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDid you run low on Gold or Redstone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you run low on redstone and gold? No problem with your glowstone flower farm. You can centrifuge glowstone dust to redstone and gold dust.\nRedstone is also a good source of aluminium and chrome."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:glowstone_dust","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":1810,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":1086,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"minecraft:diamond_hoe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1094,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Chests... Oh shiny","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you build a cutting machine you can make some diamond plates for your new big diamond chests."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IronChest:goldDiamondUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1095,"preRequisites":[1085],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lEven More Compact Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you found enough gold you can upgrade your chest to make it an even bigger inventory of 9x9. You can just build a new chest or upgrade the iron chest with a wood to gold chest upgrade item. You can use an assembler to make them a little easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":18086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27086,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:ironGoldUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1096,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemInkwell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scribing Tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To unlock your researches you need a scribing tool and paper. Better make two of them. One for your research table and one for researches. You also need some paper and ink."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25880,"OreDict":""},{"id":"minecraft:glass_bottle","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":2,"Damage":0,"OreDict":"dyeBlack"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:ItemInkwell","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:paper","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1097,"preRequisites":[1055],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemBathSalts","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bathing the warp effects away.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Litmus paper tell you how high you warp level is, but how can you get rid of the nasty warp effects? Bath salt will help you by prohibiting warp effects for a short period. Just throw the salt into a 1x1 water hole and jump inside. You will feel relieved a bit after bathing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"auram"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"cognitio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"ordo"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"sano"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1098,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bathing in a Spa. Automated Warp removing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bathing in a spa will automate the process of temporary removing warp effects. Take the bath salt with you into the spa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1099,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSanitySoap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Temp warp remover Soap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This soap is very special. It will remove temporary warp and has a small chance to also remove some normal warp, if you are lucky. Taking a bath first increases your chances.\n\nHint: You need to chisel your tallow block for the recipe to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":18,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1100,"preRequisites":[237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanting Table 1.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally with your new wand and 50 stored vis you are able to build your own enchantment table. The recipe can be found on the GTNH Thaumcraft Page"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bookshelf","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1101,"preRequisites":[1100,117],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"damage":256},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Division Sigil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you found a division sigil in a chest already. You have heard about some ritual to activate it.\n\nYou need an enchantment table, 8 redstone dust, a good sword and an animal you want to sacrifice at night. Catching and holding it with a lasso would be the easiest way.\nPlace your enchantment table on a grass field and surround it with redstone dust.\nPrecisely at midnight place the animal on or near the table and kill it.\nOf course you also need to have your sigil on you.\nBe aware! Your actions will have consequences."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":8,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"damage":256},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:torch","Count":16,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:unstableingot","Count":3,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1102,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Beacon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new wand you are able to create a beacon. The beacon recipe is found on the GTNH Thaumcraft Page. Activate it in your base to gain various positive effects."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_block","Count":164,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1103,"preRequisites":[1101,1104],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:cursedearthside","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cursed Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Kill the monsters that spawn on the cursed earth. Use a shovel with the silk touch enchantment to dig up the cursed earth blocks. You will need these blocks for your mob spawner later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:cursedearthside","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1104,"preRequisites":[1100],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Silky Jewel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to craft some silky jewels for your tinkers tools. Lots of blocks you can easily grab with this tool.\n\nThe recipe can be found on the GTNH page after researching the enchantment table."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1105,"preRequisites":[1102,986,1106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"stable":1},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Division Sigil Stable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second ritual will not be as easy as the first one. After this ritual your sigil will be stable enough to make stable unstable ingots which will not explode.\n\nThis ritual needs to be performed in The End dimension. \nThe ritual is performed by placing a Beacon in the centre of a flat area of at least 11x11, not necessarily End Stone. Then place a chest in each of the cardinal directions leaving 4 spaces empty between the chest and the Beacon. In each chest insert these specific contents:\n\nNorth: iron ingot, gold ingot and the other things listed in the task.\nSouth: The different Ore Blocks and the other things listed in the task.\nEast: The potions.\nWest: The Music disks.\n\nA spiral pattern of Redstone and String is then laid out around the beacon. At any time, Shift+Right-clicking the Beacon with an Activated Division Sigil in hand will show the building progress of the ritual.\n\nFinally, kill an Iron Golem while it stands within the ritual area to activate the process. If it works, there will be an explosion that destroys the beacon and chests, while every Enderman in the End vanishes. During the ritual, throngs of aggresive mobs imbued with Haste will begin spawning and attacking the Player who needs to kill 100 of them to complete the ritual. If the Player dies or leaves the dimension, the ritual will fail and will have to be started over. Once enough mobs have been killed, the first activated Sigil in the inventory will stabilize. The Pseudo-Inversion Sigil can be used an unlimited number of times, and dividing an Iron Ingot by Diamond will produce Mobius \"Unstable-Stable\" Ingot which does not explode, can be produced in any crafting interface and will stack up to 64."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":40,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_fished","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_chicken","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:baked_potato","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:hardened_clay","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:grass","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:clay","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:obsidian","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lapis_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:emerald_ore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:record_cat","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_blocks","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_chirp","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_far","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_mall","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_mellohi","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_stal","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_strad","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_ward","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_11","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_wait","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_13","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":8199,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8200,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8201,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8202,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8203,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8193,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8194,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8195,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8196,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8197,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8205,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"The END","range":-1,"index":7,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":8,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"stable":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1106,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:brewing_stand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blub blub blub.....","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The brewing stand is really important for brewing the various potions like night vision, healing, haste and jump. Toxic potions or splash potions can be created too. \nWith your basic wand you can create one.\n\nThe recipes can be found on the GTNH page in the Thaumonomicon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:brewing_stand","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1107,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lThe Iron Guy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you feel lonely? Need some extra protection in your base? Want to keep the pigmen off your back in the Nether?\nThey can do good amounts of damage and aggro enemies like the pigmen away from you. They can even take care of that pesky Vampire Pigman.\nCraft some Iron Golems and the monster problem inside your base will be gone.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:iron_ingot","Count":9,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1108,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:snowball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe Cool Guy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Feeling lonely? Located far away from a smow biome?\nCraft a Snow Golem, and perhaps challenge him to a snow ball fight."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:snow","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:snowball","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:snow","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1109,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oh crunchy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of doing Thaumcraft research you found a way to craft pure tears. Ichorium purifies the nether star which sucks all the warp away. Be careful, as this may have a deadly end."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1110,"preRequisites":[1109],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.amulet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purge all your warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you ever have a dream where you could purge all your warp with no bad side effects? This purification talisman will let your dreams come true.\nDo not forget to wear it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.amulet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1111,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apicultureChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Chest for Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A chest for bees only. It can hold up to 125 different bees in one chest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":3,"Damage":0,"OreDict":"beeComb"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32403,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apicultureChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1112,"preRequisites":[501],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameUntreated","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Untreated frames are the simplest frames. They do not work in bee houses, only in apiaries. You will need them to craft bee houses.\n\nThey increase the bee's performance. Each untreated frame will double a bee's productivity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":9,"Damage":0,"OreDict":"slabWood"},{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:frameUntreated","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1113,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameImpregnated","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Impregnated Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impregnated Frames are even better than untreated Frames. \nEach frame doubles the bee's productivity. It has a longer durability than the untreated frame, but a shorter one compared to the proven frame."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:slab","Count":9,"Damage":38,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":3,"Damage":0,"OreDict":""},{"id":"Forestry:oakStick","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:frameImpregnated","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:honeyDrop","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1114,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Proven Frame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Proven frames are much better than impregnated ones.\nEach frame doubles the bee's productivity. Out of the three Forestry frames (Untreated, Impregnated and Proven), the proven frame has the longest durability.\n\nYou can make them or purchase them from a villager. If you can't find a beekeeper, there are couple of different options to get one. Rescue a zombie villager, add doors to a village to get them to make kids, or perhaps use a cupid's bow and arrow..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:propolis","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:propolis","Count":16,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1115,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Moron's Guide to Taller Trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forestry trees have a variety of attributes. Once you get a tree with a useful attribute, you can breed that attribute into other tree species. This way you can get an ultimate tree that combines all the attributes you want - including the type of fruit! These breeding lines do not cover every option or even the best, but are great starts to get you into Forestry.\n\nIT IS RECOMMENDED YOU DO YOUR FORESTRY TREE BREEDING IN AN ENCLOSED AREA, OR UNDERGROUND. BUTTERFLIES ARE A KNOWN LAG SOURCE.\n\nFor faster tree breeding, enclose your trees so that butterflies cannot escape, and breed bees with better traits for area and pollination.\n\nGirth - The width of your tree. Wider trees have more leaves, but will also need more saplings to begin growing. All saplings must be the same species and girth. The sapling in the NW corner determines the stats of the new tree, and is where bone meal must be applied to mature the tree. Butternut already provides 2x2 girth.\n\nHeight - Controls how high the tree grows. Jungle trees are already Larger, but if you want Largest there is a guide to getting Cocobolo trees. There are rumors of rare villagers with Giant Sequoia saplings capable of reaching into the clouds...\n\nMatures - The growth speed of a sapling into a tree. Important if you plan to cut it down right away for logs.\n\nSaplings - Chance of getting a sapling from a detroyed leaf. Balsa, a tree on the way to Cocobolo, has High number of saplings. Good for making into biomass or other uses.\n\nSappiness - The amount of biomass a sapling produces in the Fermenter. Boost Fermenter output more using honey or fruit juice. Blue Mahoe provides the highest sappiness, but Lemon and Plum are respectable.\n\nYield - Chances of getting a fruit from a destroyed leaf. Plum is the best here.\n\nFruit - Each fruit from various trees provides different advantages. Lemons are great sources of Fruit Juice but don't provide much Mulch for the fermenter. On the other hand, Plum is a mediocre source of Fruit Juice, but great for Mulch. The best seedoil nut is coconut, but butternut or hazelnut are good alternatives.\n\nWhen breeding these trees for quests, you will need to breed the species \"pure\", not a hybrid."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1116,"preRequisites":[1117],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some cultivated bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Common Princess and Foresty Drone can be bred to cultivated bees. \n\nCultivated bees have the shorest lifespan - this means they make great princesses to breed with your newly bred drones. The queen will die quickly, quickly giving genetic material to work with. Make sure the traits you want are kept!\n\nThey are also a Fast production bee, which means lots of honey combs for powering your Beealyzer or Treealyzer. \n\nCultivated Bees produce Honey Combs every 0.9 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time.\n\nMake sure your cultivated bees are pure with a Beealyzer or GT scanner.\n\nThe main bee breeding quests will require pure bees but you can use Ignoble or Pristine princesses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":32,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1117,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some common bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To cross breed bees you need two different species of bees. One drone and one princess from different hives (Meadows and Forestry as an example)\nBee Houses do not allow crossbreeding. In an Apiary you can cross breed them to a new species. Certain frames will help this process. Shortening their lifespan means faster crosses. Increasing Mutation rate means getting rare bees quicker.\n\nCommon Bees produce Honey Combs every 2.2 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nMake sure your bees are pure by checking their genetics with a Beealyzer or GT scanner."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMeadows","UID0":"forestry.speciesMeadows"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMeadows","UID0":"forestry.speciesMeadows"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1118,"preRequisites":[1116],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":30,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some noble bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding common and cultivated bees can result in noble bees. \n\nNoble bees produce dripping combs every 3.8 minutes and honeydew. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nYou've heard of a drunk beekeeper saying he has perfected a method of creating proven frames using Honeydew and a little magic. It might be worth your time to try experimenting yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1119,"preRequisites":[1118],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeCombs","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dripping Combs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your noble bees produce some dripping combs.\nA good source for honey, and if have a magical mind, honeydew for proven frames."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":16,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1120,"preRequisites":[1118],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":35,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some majestic bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding noble and cultivated bees can result in majestic bees.\n\nMajestic bees have a very important attribute - high fertility. They will leave 4 drones when they die. This means lots of genetic material for the next generation to work with.\n\nMajestic bees produce dripping combs every 1.5 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:honeydew","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1121,"preRequisites":[1120],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":40,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectBeatific","UID0":"forestry.effectBeatific","Slot":13}]},"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectBeatific","UID0":"forestry.effectBeatific","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some imperial bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding noble and majestic bees can result in imperial bees.\n\nThese bees produce a Regeneration buff in their active area. You can probably find a use for this in case of...accidents.\n\nImperial bees produce dripping combs every 3.8 minutes and royal jelly every 5.1 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nRoyal jelly is needed in making scented paneling for an Alveary - the third tier bee housing.\n\nYou can now start working towards the Master Registry in the To Grind, or Not to Grind tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":32,"Damage":5,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1122,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:royalJelly","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Royal Jelly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Royal jelly is a honey bee secretion that is used in the nutrition of larvae, as well as adult queens. It is only produced by the imperial bee. It's production can be increased with proven frames or any other kind of frames except for the soul frame. Royal jelly is also useful because it can craft ambrosia, which fills 8 hunger points (4 full food icons) and gives Regeneration I for 40 seconds. Royal jelly is used to craft scented paneling which are required in the creation of alveary blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:royalJelly","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1123,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:alveary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Alvearies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The alveary is an advanced variant of the apiary. The alveary allows for combs to be produced faster due to its natural speed increase to production (as well as the ability to add up to six frames via the Extra Bees frame housings) and due to its ability to be modified by other blocks. \nIt is possible to adjust the internal temperature of the alveary using the alveary heater or alveary fan in order to accommodate bees that require hotter or colder climates.\n It is also possible to use mutators to increase chances of mutation, alveary lighting and alveary rain shield to allow bees without the nocturnal and tolerant flyer traits to work during the night and rain, respectively, and the swarmer to use excess royal jelly to create princesses that last for a limited number of generations.\n\nA submission station is recommended for quests with large amounts of items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":432,"Damage":19086,"OreDict":""},{"id":"Forestry:royalJelly","Count":216,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":216,"Damage":0,"OreDict":"itemPollen"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beeswax","Count":432,"Damage":0,"OreDict":""},{"id":"Forestry:oakStick","Count":648,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":30725,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":216,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":216,"Damage":0,"OreDict":"logWood"},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":30713,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Forestry:impregnatedCasing","Count":27,"Damage":0,"OreDict":""},{"id":"Forestry:craftingMaterial","Count":216,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Forestry:alveary","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:royalJelly","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:propolis","Count":32,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":1124,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeStructural","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Barrel Upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are your cobblestone or dirt barrels filled to the brim? \nNo problem, upgrade them!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17809,"OreDict":""},{"id":"minecraft:stick","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeStructural","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeCore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1125,"preRequisites":[1124],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Barrel Upgrades Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are your upgraded cobblestone or dirt barrels full again? \nNo problem, upgrade them some more!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeCore","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeStructural","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1126,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAlumite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's upgrade time again. You can make alumite like modpack Moron by mixing obsidian, steel and alumin(i)um in the smeltery, or you can be a GregTech hero and search NEI for an alternate recipe using dusts. Alumite pickaxes are able to mine ardite in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":16,"Damage":15,"OreDict":"ingotAlumite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":31,"OreDict":""},{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1127,"preRequisites":[596],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:heavyPlate","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lReinforced X? Unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your steel tool you are able to mine obsidian. Large obsidian plates give a reinforced modifier which increases the durability of your tool. \nReinforced level X makes a tool unbreakable."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:obsidian","Count":16,"Damage":0,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1128,"preRequisites":[867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lLapis? Lucky!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you were lucky and received the luck modifier on your pickaxe. If not, you may still have an unused modifier on your pick so you can add some lapis lazuli. Or you can perhaps add another modifier by adding a diamond and a gold block to your pick and then add some lapis. \n\nYou can put the lapis lazuli in more than one slot in the tool station, use blocks to raise the luck level faster, and even use lapis blocks in the crafting station with your tool for maximum luck gain."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":64,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:golden_carrot","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:gingerbreadItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1129,"preRequisites":[535],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRedstone? Haste!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mining and digging can be soooo slow. Get some redstone on your pick, shovel or axe to make it faster. You can use the Crafting Station to upgrade your tool 8 dust at a time. Later when you get a compressor you can use blocks to do 9 per block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1130,"preRequisites":[54,495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:creativeModifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§3§e§4§3§lExtra Modifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't have an extra modifier on your tool you can easily add one.\nA gold block and a diamond are all you need.\nYou can add two more modifiers, but you need to figure out how yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":16,"Damage":86,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"harvestcraft:leafyfishsandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1131,"preRequisites":[479,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SearedBrick","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lArdite and Cobalt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are done with all quests you can look for cobalt and ardite in the Nether. Remember, you need an electric blast furnace to process these materials before you can make tools with them. But you have heard rumors of a special wood only found in another land, a forest of twilight, that can make tools strong enough to mine them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SearedBrick","Count":4,"Damage":2,"OreDict":"oreArdite"},{"id":"TConstruct:SearedBrick","Count":4,"Damage":1,"OreDict":"oreCobalt"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1132,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:quartz","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§f§3§lNetherquartz? Sharpness","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your sword is too dull? Get some nether quartz to sharpen it again.\n\nIf you have lots of Certus quartz, 1 piece of Certus is equal to 24 Nether quartz."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:quartz","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2022,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1133,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterquesting:submit_station","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSubmission Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Although many of the questing tasks can be submitted directly through your inventory (including liquids) sometimes you need a more automated solution. This is where the Object Submission Station (OSS) comes in handy. \nTasks supporting the OSS can be selected through the built in interface to enable its use. Once setup, liquids and items can be either piped in or dropped into the interface's input slot. It will not void items or liquids if no task is selected or if it has already been completed, however, making it relatively safe from accidental item/fluid deletion. Multiple OSS are also capable of taking on separate sub-tasks under the same quest simultaneously!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17809,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"betterquesting:submit_station","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1134,"preRequisites":[608],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":753,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV Advanced Steam Boiler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LV Gt++ Steam Boiler is the next machine you can build to produce steam more efficiently than with the High Pressure Boiler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":753,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11089,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1135,"preRequisites":[890,898],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":20,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lULV Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your simple ore washer working you need a ULV Transformer. The Washer can only work with 8 EU. If you put more energy into it you get a big hole in your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2006,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1136,"preRequisites":[97,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLossless LV Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about losless 32 EU LV Cables ? Redstone alloy is a superconductor wire and will transfer your energy without any loss.\nRedalloy is a new alloy which requires an EBF. Mix redstone, silicon and coal by hand, or in the mixer for a better result."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2535,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2381,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11381,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30645,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1137,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Generator will transform mechanical energy into electricity. The EU output depends on the KU input. It is most commonly used together with a Kinetic Wind Generator, Kinetic Water Generator or a Kinetic Steam Generator.\n\nWhen placing a kinetic generator, any time, the \"input\" side is the side facing you. So you will place the kinetic generator, then the wind/water/steam gen, and then place a rotor inside. Power can be drawn from any side of the kinetic generator, up to the rated amount per side. \n\nNOTE: It now requires an Avaritia Dire Crafting Table and Titanium. Follow the quests in Space Race and get to the moon. Use NEI to find the recipe since Better Questing cannot show it.\n\nWARNING: Breaking a kinetic generator improperly will not return the generator. Use a GT wrench, and right-CLICK it. It should drop immediately. Try again if it just changed directions. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":11,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21306,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31028,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1138,"preRequisites":[1137],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockKineticGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Wind Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Wind Generator generates energy from wind power which varies randomly, although certain factors can change this. \nUnlike the Windmill, the Kinetic Wind Generator will require maintenance in the form of the Rotors. These are needed to run the Kinetic Wind Generator.\nOnce a Rotor is placed inside the GUI, the block is given sufficient space, and the current wind level is adequate for the current rotor, the Kinetic Wind Generator will begin to generate Kinetic Energy. \nThis can be converted into EU by using a Kinetic Generator attached to the correct face (the black circle).\nAbout Wind\nFirst off, the wind strength of a particular area is affected by 3 factors: Height, Weather, and Chance. The higher up in the world you are, the higher the wind level. Below y64, there is never enough wind to be used, and KWG's will not function at all. Weather will also give boosts; Rainy weather will give a 20% boost to normal wind levels, and stormy weather will give a 50% boost. The final factor of chance makes the wind strength vary randomly, however there is a limited range of variation.\nThe easiest way to check the current wind level in an area is by using a Windmeter.\nWind is strongest at around Y160, towards the build limit of Y255 there is very little wind, hence no point attempting to run Windmills that high.\nWhile inconvenient, the Wind Generator can run anywhere.\n\nYou will need to use NEI to see the recipe, since it use the Dire Crafting table. Make sure to put the items in the right place, or you will get a Water Generator instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20028,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockKineticGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1139,"preRequisites":[1137],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockKineticGenerator","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Water Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Water Generator allows Kinetic Units to be produced via the movement of water in river and ocean biomes. As with the Kinetic Wind Generator, it requires either Gearbox Rotor. Search NEI for appropriate options.\n\nIf the Kinetic Water Generator's Rotor isn't entirely submerged in water, it will alert you there is \"no room for the rotor\". If the Kinetic Water Generator isn't placed in a river, ocean or deep ocean biome, it will alert you it \"must be placed in a river or ocean biome\". Check the Game Mechanics spreadsheet on Discord for a list of biomes and their tags.\n\nWhile inconvenient, the Water Generator runs more consistently.\n\nYou will need to use NEI to see the recipe, since it use the Dire Crafting table. Make sure to put the items in the right place, or you will get a Wind Generator instead.\n\n§4You can use Witchery to convert biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32612,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockKineticGenerator","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1140,"preRequisites":[1138,1139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemironrotor","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§9§lRotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Wind and Water Generators need Gearbox Rotors to function. They can be added and removed with standard automation. Higher tier rotors will last longer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":28028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":4,"Damage":8,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemironrotor","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemwoodrotor","Count":1,"Damage":1,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":8,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1141,"preRequisites":[1138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:windmeter","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lWind Meter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Windmeter measures wind strength. It show's you on which height you can place your Wind Generator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:windmeter","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockIronScaffold","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1142,"preRequisites":[1144],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Battery Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HV machines need battery buffers too. They come in different sizes like 1x, 4x, 9x and 16x.\nBuild a 1x and a 4x buffer for HV. \n\nYou can use the 1x with a transformer and run MV machines for a decent time. Or transform it twice to LV and run a bunch of LV machines for a long time. Useful when you want scanner near your bees or trees. Remember to cover them up or else rain will make you very unhappy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":173,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1143,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32502,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Let's make some HV battery hulls for new batteries. Now it's up to you to make lithium, cadmium, sodium or acid batteries with these hulls."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32502,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1144,"preRequisites":[1143],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32528,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Lithium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Lithium is the best material to use when making batteries. Make sure to use the Assembler recipe with Polyethylene to save on resources."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17315,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1145,"preRequisites":[1140],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV EV Tranformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gregtech cables will not connect to IC2 machines so you need transformers to convert the energy. The best way is building two transformers and a battery buffer to store the generated energy in batteries or energy cells. The longer the cable the more energy will be lost at low tiers. So use high tier voltages when transporting energy over long distances.\n\nBe careful; IC2 machines do not care about rain but your GT machines will explode violently if exposed to water.\n\nIt is also important to transfer the power up, not down, to avoid explosions if the rotor generates more than 120 EU/t. It is not recommenend to use better rotors than the iron ones on HV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":23,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemDust2","Count":9,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1146,"preRequisites":[35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGT 6 styled Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why the new pipes don't auto-connect anymore? This was changed to make the pipe smarter. You can now use a wrench to connect only the pipes you want. You don't need a plate or a foil to prevent pipes from connecting anymore.\n\nYou'll still want to cover hot pipes to prevent getting hurt!\n\nShift clicking on the end of a pipe will disable the fluid input on that side. This is super handy, for example, to prevent coal boilers from feeding back steam into water pipes. \n\nAlso, pipes now come with a shutter built in for free to reduce sloshing. Shift-rightclick with a wrench on the side you want prevent input.\n\nLarge or Huge fluid pipes can be a \"poor man's\" storage tank, holding large amounts on their own.\n\nFor machine outputs, including the boilers, and water siding tanks you will not need pumps. Other tanks will need pumps or Tinker's Construct faucets to move fluids.\n\n§4Hint: If you click one pipe onto the other they will auto-connect."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:woodIronUpgrade","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1147,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§2§4§3§lGT 6 styled Wires and Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why the new wires and cables don't auto-connect anymore? This was changed to make the wires and cables smarter. You have to use a wirecutter or soldering iron to connect the wires and cables on the side you want. No more burnt cables or wrongly connected wires and cables from now on. You can shift-rightclick to attach a cable on the side of a machine you cannot see, like attaching a cable to the bottom while looking at the front.\n\nHint: If you click one wire or cable on the other it will auto-connect. Cables and pipes can be painted to make sure you do not cross your MV line with your EV line, or dump hot lava into your plastic water pipes. No boom today.\n\nHa ha just kidding there is always a boom today!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:splitpeasoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1148,"preRequisites":[103,77,543,97,717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Machine hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier of machine hull needs aluminium - a lot of aluminium. Keep your EBF running and make some aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1149,"preRequisites":[673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11313,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA new alloy - Magnalium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You wonder why you need magnalium now? It's not for GT machines right now but for a material update for your crossbow.\nIt's a very good material in LV Tier. Go to the Twilight Forest and find an Olivine/Glauconite vein located at Y 10-40 or in the Overworld a Glauconite Soapstone mix located at Y 20-50 and a Granitic Mineral Vein in the Overworld Located at Y 50-60 (The Gypsum vein you will need for the Bricked Blast Furnace).\nWith your Ore Washer you can get Magnesium and Aluminium out of the Ores (Magnesite for Magnesium (marbel can be used too)and Fullers Earth for Aluminium) and mix it in the Alloy smelter to Magnalium.\nMagnesite gives 10 tiny piles of Magnesium each dust but fullers earth gives only a tiny pile of Aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2018,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11313,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1150,"preRequisites":[741,1149,673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":288,"BaseAttack":2,"DrawSpeed":35,"ToolEXP":0,"HarvestLevel":3,"RenderHead":1602,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accessory":2,"MiningSpeed":600,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":288,"BaseDrawSpeed":35,"Head":1602,"Attack":2,"Handle":1602,"Broken":0,"Extra":6,"RenderAccessory":2,"ToolLevel":1,"FlightSpeed":5.99399995803833,"Modifiers":0},"display":{"Name":"Magnalium Crossbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Crossbow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now its time to craft your Crossbow Limb and the Crossbow Body to upgrade your old Wooden Crossbow."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11313,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:Cast","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:Cast","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""},{"id":"TGregworks:tGregToolPartCrossbowBody","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:barleyFood","Count":2,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1151,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":38,"BaseAttack":1,"DrawSpeed":33,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":38,"BaseDrawSpeed":33,"Head":0,"Attack":1,"Handle":0,"Broken":0,"Extra":6,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":4.5,"Modifiers":0},"display":{"Name":"Wooden Crossbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWooden Crosbow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you are able to make a better long range weapon - a crossbow. Use wood for the the crossbow limb and the body and use obsidian (Reinforced III) for the tough binding. Normal strings for the bowstrings would be enough for now.\n\nAssemble the bow yourself on your tool forge.\n\n§4For upgrades:\n§5§4§3Redstone - Speed on the draw\nLapis - Fortune on kills\nMoss - Self-repair (this is not visible in NEI until you unlock it in the GTNH Thaumcraft tab)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:Pattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:Pattern","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:CrossbowLimbPart","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:toughBinding","Count":1,"Damage":6,"OreDict":""},{"id":"TConstruct:bowstring","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":38,"BaseAttack":1,"DrawSpeed":33,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":38,"BaseDrawSpeed":33,"Head":0,"Attack":1,"Handle":0,"Broken":0,"Extra":6,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":4.5,"Modifiers":0},"display":{"Name":"Wooden Crossbow"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1152,"preRequisites":[1150],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:bowstring","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFiery Bowstring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why not upgrade your bowstring too? You got some from the last quest, but will need to find some more in the Nether by killing spiders. Craft some fiery bowstring with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:barleyFood","Count":3,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:bowstring","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11382,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1153,"preRequisites":[1152],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lArdite Crossbow Body","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your crossbow even better craft an ardite crossbow body. You received a few ardite ingots as reward before but will need to find ore in the Nether and process it in an Electric Blast Furnace.\nWith redstone you can make your bow faster. This requires a free modifier slot on your crossbow.\nDon't bother putting Nether Quartz on the crossbow, it only improves damage from whacking mobs over the head with it. Put the Nether Quartz on your bolts instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":11382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1154,"preRequisites":[1150,1155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.05400000140070915,"BaseDurability":705,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accuracy":87.5,"Accessory":1,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":705,"Head":2,"Attack":3,"Handle":1602,"Broken":0,"Mass":3.4800000190734863,"Ammo":71,"RenderAccessory":1,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Crossbow Bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnalium bolts are much better than your old wooden bolts.\nYou can use nether quartz on the bolts to make them even better. \nThis requires a free modifier slot.\nExperiment with NEI to find other good bolt materials. \n\n§4To make it, you must use a Fluid Solidifer instead of the Tinker's casting table."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:fletching","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":2}},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.05400000140070915,"BaseDurability":705,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accuracy":87.5,"Accessory":1,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":705,"Head":2,"Attack":3,"Handle":1602,"Broken":0,"Mass":3.4800000190734863,"Ammo":71,"RenderAccessory":1,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":11382,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1155,"preRequisites":[579,543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":521,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBasic Fluid Solidifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your molten fluids back to a solid state you need a fluid solidifier. This is handy for processing molten rubber directly from the chemical reactor. It is used for crossbow bolts as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":521,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:energydrinkItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:beansontoastItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32716,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1156,"preRequisites":[1151],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000774860382,"BaseDurability":188,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accuracy":97.5,"Accessory":0,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":188,"Head":2,"Attack":3,"Handle":0,"Broken":0,"Mass":4.335000038146973,"Ammo":19,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWooden Bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your crossbow need some ammo to shoot with. Let's craft some wooden bolts. For now, you can put either iron, alumite, or steel on the tip of your bolts using the Smeltery. For higher tier bolts and tips you will need to pump metals into a Fluid Solidifier with the correct tool rod inserted.\n\n§4For upgrades\n§3Nether or Certus Quartz - More damage\nMoss - Self-Repair (unlock in GTNH Thaumcraft tab)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:toolRod","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:fletching","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":2}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000774860382,"BaseDurability":188,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accuracy":97.5,"Accessory":0,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":188,"Head":2,"Attack":3,"Handle":0,"Broken":0,"Mass":4.335000038146973,"Ammo":19,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1157,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":19}],"GT.ToolStats":{"PrimaryMaterial":"Rubber","MaxDamage":25600,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lRubber Soft Mallet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wooden soft mallet breaks after a few uses. Now you can make a rubber mallet which is much more durable."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"woodStick"},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":11880,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":19}],"GT.ToolStats":{"PrimaryMaterial":"Rubber","MaxDamage":25600,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chickenpotpieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1158,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron Wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood is much harder and durable than rubber. Ideal for a soft mallet. Collect some liveroot, macerate it and mix the powder with iron and gold to create a new magical material.\n\nYou can make some unique armor with this material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.liveRoot","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2832,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":86,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":2338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodIngot","Count":18,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1159,"preRequisites":[1158],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Steeleaf","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you locate a labyrinth you may find steeleaf in chests inside if you are lucky.\nThis is the best material for a soft mallet, however a unique armor out of steeleaf would be an even better use for this material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.steeleafIngot","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1160,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellEmpty","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEmpty Cells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your plate bender you are able to make empty cells. The circuit needs to be configured to 12 otherwise you will make foil. Once you have an LV Extruder, you can make cells directly from ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1161,"preRequisites":[67],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2006,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Redalloy Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some redalloy cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2006,"OreDict":""}]}]},{"questID":1162,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tin Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some tin cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1246,"OreDict":""}]}]},{"questID":1163,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Copper Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some copper wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1360,"OreDict":""}]}]},{"questID":1164,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUniversal Macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the important machines in HV is the Universal Macerator. It has an additional output slot to get more materials when macerating ores.\n\n§4This is a key source of extra Gallium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":303,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1165,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11880,"OreDict":""}]}]},{"questID":1166,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:quartz_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lQuartz and Quartzite Veins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nether is full of different kinds of quartz. Go and find a quartzite and certus quartz vein. They are located between Y levels 80-120."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1523,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":1904,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1516,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_rod","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1167,"preRequisites":[622],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2006,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lLithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lithium can be washed out of Lepidolite Ore or centrifuged out of Spodumene Ore. At MV you can electrolyze clay dust for it. Look for canyons to find hardened clay and macerate it for dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2006,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:coleslawburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1168,"preRequisites":[621],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2017,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lSodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium can be washed out of Glauconite Ore and Sand. It can also be electrolyzed out of salt."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2017,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32224,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1169,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemBathSalts","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":360000,"globalShare":1,"questLogic":"AND","name":"Bath Salt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oh you feel so dirty. Go and take a bath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1170,"preRequisites":[1099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSanitySoap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Bath Soap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oh you feel so dirty. Get the soap and take a long hot bath to get rid of some of that nasty Warp."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1171,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11335,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Damascus Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Damascus Steel is very durable and useful for GT tools. Buy some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11335,"OreDict":""}]}]},{"questID":1172,"preRequisites":[662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11345,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCheaper Annealed Production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It' s even faster and cheaper to make annealed copper in the arc furnace than in the electric blast furnace. Annealed copper is a very good material for cables in MV. It only loses 1 EU per block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11345,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1173,"preRequisites":[948],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11304,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Wrought Iron Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Whant some wrought iron ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11304,"OreDict":""}]}]},{"questID":1174,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11305,"OreDict":""}]}]},{"questID":1175,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Aluminium Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some aluminium ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""}]}]},{"questID":1176,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""}]}]},{"questID":1177,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thaumium cooking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it is time to cook your first thaumium ingots. After researching it you need iron ingots and praecantatio aspect to make it. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"praecantatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1178,"preRequisites":[1289],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTinCanFilled","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Food 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forget everything you know about food and values. With your new canning machine you are able to fill tin cans with very nourishing food. This food can be consumed in milliseconds and makes you full and happy. And you can eat as much as you want without getting tired of the food.\nEating before you are starving restores saturation and conserves cans."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":18057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemTinCan","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemTinCanFilled","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:apple","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:golden_apple","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1179,"preRequisites":[77,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEBF Infos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can use a scanner to manually check how your EBF works, or you can make an information panel from nuclear control and always see the status. Make a GT sensor kit and use it on the EBF controller. Place the the sensor card in your info panel. Enable it with a redstone signal.\n\nThe GregTech sensor card can monitor Gregtech machines like the EBF, Turbines, and Pyrolyse ovens. This is handy for keeping an eye on maintenance issues for multiblocks.\n\nIf you want to put the panels far from the machines they are monitoring, you will need range upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32763,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30726,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1180,"preRequisites":[1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPassive Chunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using the MV bender you can finally press dense plates. Let's craft some passive chunkloaders.\n3x3 chunks are loaded. You need coins or ender pearls to power the chunkloader. \nEnder pearls power personal anchors for 4 hours per pearl, and 1 hour in passive anchors . Personal anchors can also be powered with ender fragments for 1h. \n\n§4Personal anchors are loaded once the owner visits, and stays loaded while the player is logged in. \nPassive anchors are loaded once the owner visits, and stays loaded until the server resets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChunkloaderTierI","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1181,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Minecart with Tank, Workbench or Furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want to transport oil or other fluids, have a portable crafting table or a portable chest? Then you need to craft some minecarts with tanks, chests or crafting tables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:cart.work","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:chest_minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:cart.cargo","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1182,"preRequisites":[866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.gamma","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluid loader and unloder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you plan to automate the oil transport from your oil field far away, you need a fluid loader and unloader. A locking track will stop the train as long as oil is loaded or unloaded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.gamma","Count":1,"Damage":4,"OreDict":""},{"id":"Railcraft:machine.gamma","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.locking"},"Damage":20176,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":128,"Damage":5103,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"minecraft:rail","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1183,"preRequisites":[1181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:furnace_minecart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Locomotive 0.1 Alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The furnace cart is a cheaper locomotive. Click with coal or charcoal on the cart and and it will start moving. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:furnace_minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:coal","Count":32,"Damage":1,"OreDict":""},{"id":"minecraft:coal","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1184,"preRequisites":[1183,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.loco.steam.solid","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Steam Locomotive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The steam locomotive is much better than the furnace cart. You can control the speed and the direction the locomotive will move. You need to put water and coal inside to make steam to power the locomotive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.loco.steam.solid","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:coal","Count":64,"Damage":1,"OreDict":""},{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1185,"preRequisites":[1184,89],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.loco.electric","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric Locomotive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electric Locomotives are much better than steam ones. You need electric rail for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.loco.electric","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":32,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1186,"preRequisites":[866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boost your speed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to not use a locomotive and drive with one or two carts only, you can use some booster tracks. Activate them with a lever or a redstone torch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:golden_rail","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:rail","Count":64,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1187,"preRequisites":[866,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad - high speed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you ever dream of driving in a railcart at high speeds? Well your dreams can come true with the high speed tracks. Be careful though; you need to lower the speed when your rails change direction or when the track ends."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.transition"},"Damage":26865,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":3,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1188,"preRequisites":[866,1176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad - blast proof","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Railroads in the nether are dangerous. The reinforced tracks are blast proof. Hope you are blast proof too. \nYou can move 25% faster than with normal tracks.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.reinforced.boost"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":4,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1189,"preRequisites":[77,866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad electrical","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electrical tracks are used together with your electrical locomotive. You need to power the rails with energy.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":5,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1190,"preRequisites":[1189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.epsilon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric feeder Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your tracks electrified you need an electric feeding unit, shunting wires and some support frames. You can use an MFE or a transformer to get GT energy into the feeder unit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.epsilon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.delta","Count":8,"Damage":0,"OreDict":""},{"id":"Railcraft:frame","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.buffer.stop"},"Damage":32363,"OreDict":""},{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.gated.oneway"},"Damage":0,"OreDict":""},{"id":"minecraft:detector_rail","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1191,"preRequisites":[878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic \"Staffter\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is also possible to create a bizarre hybrid of staff and scepter (sometimes called a \"staffter\"), by using a staff core instead of a wand core in the scepter recipe. The resulting device can neither hold a focus nor be placed in a crafting table, but it can still be used to activate constructs, or as a \"vis battery\" for Repair-enchanted equipment or Runic shielding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":3,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27028,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","sceptre":1,"AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1192,"preRequisites":[74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Aluminum berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few aluminum berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":4,"OreDict":""}]}]},{"questID":1193,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Gold berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few gold berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":1,"OreDict":""}]}]},{"questID":1194,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Iron berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few iron berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1195,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Copper berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few copper berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":2,"OreDict":""}]}]},{"questID":1196,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Tin berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few tin berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":3,"OreDict":""}]}]},{"questID":1197,"preRequisites":[1213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1194,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lFusion reactor MK2 - bigger, better, fusor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have some europium, put it to use by making an mk2 reactor. This one will require the same block placement, but replacing LuV casings with fusion machine casings, superconducting coil blocks with fusion coil blocks, and using ZPM tier hatches. This reactor can handle recipes up to 320M eu startup. In addition, if you perform an mk1 recipe on an mk2, you will overclock it. Fusion overclocking is different than normal gt. It will take 2x the power, but the recipe will go 2x faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":47,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":67,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":57,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1194,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32091,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32607,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32616,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32636,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32646,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2311,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1198,"preRequisites":[1199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1195,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lUpgrading the reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A mark 2 is nice, but why not make a mark 3? It will double the power needed per recipe, while cutting the processing time in half. This time you will need UV or above hatches, as well as Fusion machine casings MK2. This reactor is capable of doing all fusion recipes. Each energy hatch is capable of providng up to 8192eu/t, per energy hatch, for the recipe. The reactor can take as little as 8192eu/t to run. The UV hatch can accept up to 2 amps of 524288eu/t before it explodes, as usual."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":58,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":68,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":48,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":7,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1195,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32094,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32608,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32617,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32637,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32647,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2023,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1199,"preRequisites":[1197],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmetal1","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lMaking americium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you can upgrade your reactor, you will need to get some americium. The recipe will look pretty expensive, but once you made the next tier of reactor, you will unlock a simplier and cheaper one. You will need at least 128 plates for the reactor casings, 9 to scan for the recipe, and 4 to build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":141,"Damage":11078,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":141,"Damage":11030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal1","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":17103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32599,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1200,"preRequisites":[1212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1153,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lMaking power with your plasma","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a reactor, it's time to utilize it. The simplest plasma you can make for power is Helium plasma. It's renewable from water, but also provides a lot of power. However, you will need a way to convert the plasma into EU. To do this you will need a large plasma turbine. This will also need a dynamo hatch that can handle the power you're outputting. For Helium plasma, you will want a UV or above hatch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":18,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31325,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5204,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32090,"OreDict":"circuitUltimate"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":61,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":29,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1153,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32096,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32606,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2405,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1201,"preRequisites":[1200],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DraconiumAwakened","MaxDamage":19660800,"SecondaryMaterial":"DraconiumAwakened"}},"Damage":174,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lTurbine Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your fancy new Large Plasma Turbine will need a rotor to go inside of it. You can make it out of any gt material, but the best are trinium, awakened draconium and neutronium. Trinium will give you the most eu/t out of a single multiblock, with the best efficiency. Neutronium will give you the longest lasting turbine rotors with a lower efficiency, and less power per reactor. Awakened draconium will give you a balance between the two. You can make turbines in 4 different sizes. The larger the turbine the more eu/t it will produce. However, the largest turbine isn't also the most efficient. When using turbines be careful of flow rates. To find the optimal flow rate, you divide the optimal energy flow rate listen on the turbine, by the energy value for the plasma. Make sure to use a fluid regulator set to this flow rate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":196608000,"SecondaryMaterial":"Neutronium"}},"Damage":174,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11975,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1202,"preRequisites":[1198],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings4","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§e§d§n§o§r§l§d§lTime for another reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While one reactor is nice and all, why not make another? This time you can use the MK3 americium recipe to make it easier. "}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1203,"preRequisites":[1202],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§m§l§r§d§lMaking more americium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Costing just 1 ingot of Plutonium, and 2 buckets of hydrogen, this recipe is much easier and faster than the MK2 version. By making americium plasma, then putting it through a turbine, you will get americium in the liquid state. Again you will need at least 132 plates for the controller, and the fusion machine casings. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":11101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":264,"Damage":30001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":17103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32560,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32737,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1204,"preRequisites":[1],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCrafting time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to get yourself a 3x3 crafting area. Grab some flint and some wood, and build one!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:apple","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1205,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHoppers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hoppers come in handy when you want to automate your machines. \nYou can input items via hoppers directly into GT pipes and you don't have to use a conveyor belt. \nHowever, the input rate is much slower, and the hopper must be beneath its source inventory."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chocolatesprinklecakeItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1206,"preRequisites":[549,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Light Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some light fuel? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30740,"OreDict":""}]}]},{"questID":1207,"preRequisites":[552,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30741,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Heavy Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some heavy fuel? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""}]}]},{"questID":1208,"preRequisites":[107,933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":45,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Power Solar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar or lava. If you are able to make solar panels you can power your cart with the sun."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":45,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":1,"Damage":44,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1209,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Digging","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to automate digging for ores ? A drill head made out of iron is the cheapest alternative."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1210,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":69,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Thermal Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar or lava. Why not power your cart with lava?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":69,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1211,"preRequisites":[110],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: More Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you craft side chests you can add more different chests to the cart. Some sides are reserved for tools so no chest can be placed there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":3,"OreDict":""},{"id":"StevesCarts:CartModule","Count":1,"Damage":4,"OreDict":""},{"id":"StevesCarts:CartModule","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1212,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lStarting Fusion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that your power needs are increasing, you need a way to keep up with demand. To generate over 1A ZPM with a single machine you have two options: solars, and fusion. While solars are simpler to set up, solars cap out at 524288eu/t. Fusion can reach levels close to eight times that with the right setup. For your first reactor, you will need a controller, 2-16 fluid input hatches, 1-16 fluid output hatches, and 16 energy hatches. All hatches have to be LuV tier or better. Each hatch provides 2048eu/t for the recipe, and has a storage capacity of 160M eu. This means you can do any fusion recipe that takes less than 32768eu/t or less, and has a startup of 160M eu or less. Using more fluid hatches means you need less fusion casings. While this doesn't matter as much for the mk1 reactor, this principle helps tremendously with the high reactor tiers. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":56,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":66,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":46,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":32,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":32,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32092,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32606,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2403,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1213,"preRequisites":[1212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmetal3","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lGetting europium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make an mk2 reactor, you will need europium. Once you make a t6 rocket you will be able to find this as an ore. Until then you need to produce it in the reactor. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":13,"Damage":11067,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal3","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17070,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32599,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1214,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Clockwork Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Producing RF Power by hand is a good idea for making one or two recipes in the Forestry machines. The turrets can be charged with it too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24304,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31304,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11310,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1215,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bio Gas Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Producing RF Power with Lava is possible with the Biogas engine. You need Water, Seedoil, Milk, Sap Cresote or FR Biomass in the other slot. The engine outputs 50RF/t depends on the fluid you put in.\n\nFuel /Lava / Usage Energy Ticks\nWater Constant 10 RF/t 1000\nFruit Juice Startup/Restart Only 10 RF/t 2500\nLiquid Honey Startup/Restart Only 20 RF/t 2500\nMilk Constant 10 RF/t 10000\nSeed Oil Startup/Restart Only 30 RF/t 2500\nBiomass Startup/Restart Only 50 RF/t 2500"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24300,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31300,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:canSeedOil","Count":16,"Damage":0,"OreDict":""},{"id":"Railcraft:fluid.creosote.can","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:canLava","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:canBiomass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1216,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Peat fired Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Peat fired engines use Peat or Bituminous Peat to run. Peat burns for 5000 ticks and produces 10 RF every tick, 1 peat makes 0.66 Ash, so you get 2 Ash for burning 3 peat.\nBituminous Peat burns for 6000 ticks and produces 20 RF/tick.\n\nPeat Farms can be setup by using a managed farm with tin electron tubes. It is possible with a manual farm too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31032,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:peat","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:bituminousPeat","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1217,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Copper, Tin, Bronze Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22035,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22057,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":18,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":6,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":6,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":6,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:canBiomass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1218,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron, Gold, Diamantine Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22086,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":3,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":4,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:canSeedOil","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1219,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rubberised, Obsidian, Lapis Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22880,"OreDict":""},{"id":"dreamcraft:item.LongObsidianRod","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22526,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":8,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":6,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"minecraft:redstone_block","Count":7,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1220,"preRequisites":[1219,1218,1217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blaze, Endereyes, Emerald Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22801,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22533,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":7,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":12,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":16,"Damage":10,"OreDict":""},{"id":"Forestry:canHoney","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":20,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestryI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1221,"preRequisites":[1018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1181,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAdvanced Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More advanced circuits require an MV circuit assembling machine. Let's make one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1181,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30718,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1222,"preRequisites":[1014],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1182,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAdvanced Circuit Assembler II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your workstation circuits you can craft an HV circuit assembler. This is need for higher tier circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1182,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1223,"preRequisites":[1246],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lEV Circuits Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV circuit assembler requires IV Circuits to craft. With this assembler you can make a lot more high tier circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1224,"preRequisites":[1230,1228],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17470,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Epoxid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epoxid is needed for your advanced Circuits boards. You need Sodium Hydroxide, Epichlorohydrin and Bispenol A to make it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30648,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30669,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":4,"Damage":470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17470,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1225,"preRequisites":[1222],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lIV Circuit Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mainframes are the first IV Circuits you can make in HV. Used for EV and IV machines and components.\n\nIn addition, you will need 16 Capacitors, SMD or non-SMD.\n\nOnce you get a reliable polyethylene setup, it will save a lot of resources to use SMD components."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1226,"preRequisites":[845],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30629,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGlycerol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Glycerol becomes important in creating epoxid in the next tiers. It is important for TNT production too. It is left over when producing bio diesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":30629,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1227,"preRequisites":[1021],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30683,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHCL","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HCl becomes important for your epoxid production in HV/EV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30683,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1228,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30648,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEpichlorohydrin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epichlorohydrin is another product needed in your epoxid production. By now you should be experienced enough to figure out which path is best for your setup using NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30648,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1229,"preRequisites":[176,552],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30687,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPhenol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The easiest way is to get phenol out of heavy fuel. There are other ways, like getting it out of wood tar from a pyrolyse oven, isopropylbenzene and oxygen, or chlorobenzene and water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1230,"preRequisites":[552,1229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30669,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBisphenol A","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Bisphenol A you need to combine Phenol, Acetone and HCl in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30672,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30669,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32106,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1231,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lYou gonna hate this 1-4 in HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor Belts and robot arms are the most needed machine parts in HV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32642,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32632,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1232,"preRequisites":[1231,1233],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32692,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lYou gonna hate this 5 and 6 in HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32682,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32692,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11054,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1233,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnder Eyes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ender eyes are available at HV in the chemical reactor. Combine some ender pearls with blaze powder."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:blaze_powder","Count":1,"Damage":0,"OreDict":"itemBlazePowder"},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1234,"preRequisites":[1020,1224,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEmpty Expoxid Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epoxid circuit boards require epoxid plate, gold foil and sulfuric acid to make an empty board. By adding electrum foil and Iron(III) Chloride or Sodium Persulfate you can craft an epoxid or advanced circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17470,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32711,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17470,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1235,"preRequisites":[1013,1221,1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMicroprocessor LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Microprocessor is the most highest tier way to craft an LV circuit, but you get 2 per recipe. It requires plastic board, a cleanroom, a cpu and a few smd components."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1236,"preRequisites":[1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":253,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lCutting Machine HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nor, nand and other high tier chips require an HV cutting machine. This machine is also needed for cutting glowstone doped wafers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":253,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1237,"preRequisites":[746,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32031,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lGlowstone Doped Monocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make more advanced wafers, you need to make glowstone dopped monocrystalline silicon first. The process takes 600 seconds and requires silicon dust and glowstone dust in the electric blast furnace. You can make 32 wafers out of every boule.\n\nUnfortunately, these boules seem to require higher heat than cupronickel coils can produce. You'll need to go to Multiblock Goals and get a cleanroom, vacuum freezer, and kanthal coils in order to make them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2020,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32031,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1238,"preRequisites":[1237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32034,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lGlowstone Doped Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some glowstone doped silicon wafers, place the monocrystalline glowstone doped silicon boule in a cutting machine. An HV version of the cutting machine is needed for future wafers and chips.\n\nYou will need to cut these wafers in a cleanroom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32034,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1239,"preRequisites":[1238,1236,772],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNor and Nand chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The data stick requires nand chips. Nor chips are needed for more advanced circuits. You can get these by cutting nand and nor wafers.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32042,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32040,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32041,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24533,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1240,"preRequisites":[1239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Data Sticks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Data sticks are very important for seismic prospecting and for the assembly line in the LuV age. Go and craft a few data sticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1241,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRadon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Radon is used for quantum eyes, quantum stars and emitters and sensors in the EV machines. Try to find a Pitchblende vein first and/or recycle your plutonium and uranium from your reactor.\n\n§4This Vein can be found on Mars and Phobos."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1242,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lEV Chemical reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV chemical reactor is required to get some indium or make your radon production much faster. If you already made a large chemical reactor use that instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":424,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"minecraft:ender_eye","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1243,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4873,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPitchblende","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to try running your nuclear reactor you need some uranium or plutonium fuel. Go and find a pitchblende vein on Mars at Y 30-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4873,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4922,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1244,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lScheelite, Tungstate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is the material you need but first go find some scheelite and tungstate mix on Mars. Look at Y 20-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4006,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1245,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§f§a§lYou gonna hate this 1-4 in EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in EV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32613,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32643,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32633,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1246,"preRequisites":[1245,1247],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32693,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lYou gonna hate this 5 and 6 in EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32693,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1247,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuantum Eye","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantum eyes are required in EV emitters and sensors. Just infuse your ender eye with radon to get one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32724,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1248,"preRequisites":[1223,1249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are three variants of advanced circuits. The advanced electronic circuit, the processor assembly and the nanoprocessor. The Nanoprocessor needs an EV circuit assembling machine to be made. Use your epoxid boards for it.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32016,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1249,"preRequisites":[1234,1018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano CPU Wafer and Chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nano CPU Wafer is made out of a CPU Wafer with carbon fiber and molten glowstone in an EV chemical reactor. Cut it for nano CPU chips.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32055,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone_dust","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonFibre","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1250,"preRequisites":[1248],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32083,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor Array","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano processor array is an EV circuit. \nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32082,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32083,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1251,"preRequisites":[1250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32084,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lElite Nano Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The elite nano computer is an IV circuit.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32083,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32084,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1252,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":543,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lHV Chemical Bath","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV chemical bath or better is needed for the quantum eye."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":543,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1253,"preRequisites":[1319],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":37,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second largest storage component, used to make 16k ME storage cell, or can be upgraded to make 64k ME storage component. Can be recovered from a crafted 16k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":37,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1254,"preRequisites":[1318,1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 16,384 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1255,"preRequisites":[180,1256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highest tier storage cell, which can contain 65,536 bytes of storage. 65,536 bytes of storage can hold 8,128 stacks of a single item, or 4,160 stacks, while holding 63 different items. The 64k storage cell uses 512 bytes of data to store a single type. When placed inside a drive or chest will consume 2.0 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 64k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1256,"preRequisites":[1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Largest storage component, used to make 64k ME storage cell. Can be recovered from a crafted 64k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":38,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1257,"preRequisites":[1254,1256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 65,536 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":4,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1258,"preRequisites":[1298],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wireless Booster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wireless booster is used to increase the range of the ME wireless access point."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:ender_eye","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1259,"preRequisites":[1306],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Filling Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Export bus for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1260,"preRequisites":[1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingMonitor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crafting Monitor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which displays the top level job and its current progress so you can monitor at a glance how your crafting jobs are progressing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingMonitor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1261,"preRequisites":[1251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano processor mainframe is the cheapest LuV Circuit.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32084,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32706,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32011,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1262,"preRequisites":[206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":184,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBattery Buffer x9","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"EV battery buffer for up to nine batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":184,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1263,"preRequisites":[1262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11349,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBlue Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your sunnarium batteries are made out of blue steel: a mixture of steel, black steel, brass and rose gold."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2334,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2351,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11349,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1264,"preRequisites":[1263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32540,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV Sunnarium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first EV sunnarium battery used in EV tier. You make it with the sunnarium you generated before."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32503,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2318,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32540,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32540,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1586,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1265,"preRequisites":[1262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:MU-metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32054,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV GT++ Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A cheaper variant is the GT++ EV battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32538,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1428,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"miscutils:MU-metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1426,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1266,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":21,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLow Voltage Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's possible to run MV machines while still in LV age. Build a transformer and use 4 power sources 32 eu/t to power one 128 eu/t machine. You can change the mode of a transformer with a soft mallet. If the transformer is wired and loaded then DO NOT change the mode otherwise there probably will be a big explosion. Be careful when switching directions - better to break and replace than rotate with the wrench and blow up a line of machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":21,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1267,"preRequisites":[1266,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMedium Voltage Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's possible to run HV machines while still in MV age. Build a transformer and use 4 power sources 128 eu/t to power one 512 eu/t machine. You can change the mode of a transformer with a soft mallet. If the transformer is wired and loaded then DO NOT change the mode otherwise there probably will be a big explosion."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1268,"preRequisites":[1267],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":878,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLV High-Amp Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need a transformer with more than 4 amperes you need a high amp transformer. You can input four 128 eu/t power sources and output 16 ampere at 32 eu/t.\nModes can be changed with a soft mallet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":878,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1269,"preRequisites":[1268],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLow Voltage Power Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need even more amps then craft a power tranformer with a max LV output of 64 amps. You can input sixteen 128 eu/t power sources and output 64 amps at 32 eu/t. Modes can be changed with a soft mallet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1270,"preRequisites":[724,1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:itemSpade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Time for a Spade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having a Weeding Trowel, Hoe and Shovel in your Inventory is painful when dealing with crops. Get the Spade - it combines these items, is unbreakable, and increases the chance of getting seeds from plants.\n\nBe careful! Right-clicking on a plant pulls it for seeds. Make sure to switch to Sense or your open hand to harvest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:itemSpade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"White Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Nether Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Black Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Red Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Gray Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Yellow Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Goldfish Plant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}]}]},{"questID":1271,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":283,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lExtruder HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV Extruder is needed to extrude tough metals like Tungstensteel and HSS."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":283,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1272,"preRequisites":[634,1273],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wheaty juice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step to brew beer or other alcoholic fluids is wheaty juice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32115,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1273,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":491,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBrewing, the Industrial Way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want brews or alcohol, I recommend you to build one of these. You might have noticed that you cannot build a brewing stand without Thaumcraft. But fear not, you can still find them in chests. Better get searching..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":491,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1274,"preRequisites":[1273,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFerment your brew!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What's better than lame brews? Alcoholic brews! Get one of these to make beer, rum or even vodka."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":501,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"berriespp:BppPotions","Count":4,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1275,"preRequisites":[1278],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fake Jagermeister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jagermeister is a common drink in Germany, why don't you grab a bottle? This one seems to be a cheap fake tho..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:BppPotions","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":30,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1276,"preRequisites":[1272,547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Korn and Doppelkorn","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Korn is german for wheat. That's why this special alcoholic brew is named like this. Doppelkorn means double-wheat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:BppPotions","Count":1,"Damage":1,"OreDict":""},{"id":"berriespp:BppPotions","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1277,"preRequisites":[19],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:reeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sugarcanes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcanes are a source of sugar, and therefore alcohol. If you want some rum or sugar, you'll need these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:reeds","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1278,"preRequisites":[1272,893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vodka","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vodka is Russian for \"small Water\". It is a rather high proof alcoholic fluid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":1279,"preRequisites":[1090,931],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2347,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFirestone Ore/Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Firestone ore is handy for some base building machines. Unforunately, it's in the nether...at the bottom of the lava ocean! Here are some tips for finding it\n\nFirestone can be mined with the GT miners, if you place it within range.\nFirestone only spawns in deep lava, at least 6 deep. It will only replace netherrack, so a fjord filled with soulsand won't have any. Can you think of ways to check the lava depth, and what's down there?\nNormally you can't see through lava, but if you enable nightvision on the nanosuit, you can see a short distance at the bottom. But how to prevent getting burned?\nAlternatively, if you keep your head at just the correct height above the lava and at the correct angle, you'll be able to see underneath it - surely there must be a hovering jetpack?\nFirestone ore and products will cause random fires to start nearby, so get it into a backpack quickly!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2347,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2347,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1280,"preRequisites":[1277,1274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The industrial way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making rum can be automated, but you need to follow this industrial way for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32109,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"potion.freed","Amount":1000}],"ignoreNBT":0,"index":1,"consume":0,"taskID":"bq_standard:fluid"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"potion.swhine","Amount":1000}],"ignoreNBT":0,"index":2,"consume":0,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1281,"preRequisites":[1280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rum. Yummy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1282,"preRequisites":[1277,1283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sugar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"The gathering: Sugar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stockpiling sugar might be a good idea if you have a sweet tooth. Or not?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sugar","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:caramelappleItem","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCook","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1283,"preRequisites":[502,994,1284],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:jarFilled","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Honey for sugar.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since honey contains a lot of sugar, it might be a good idea to get some honey."}},"tasks":[{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"for.honey","Amount":1000}],"ignoreNBT":0,"index":0,"consume":0,"taskID":"bq_standard:fluid"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"honey","Amount":1000}],"ignoreNBT":0,"index":1,"consume":1,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:honeyedSlice","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1284,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:hive","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wasps honey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Giant wasps can be found in the Nether. Quick! Sneak into their hive and steal some honey!"}},"tasks":[{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"honey","Amount":5000}],"ignoreNBT":0,"index":0,"consume":0,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":1,"OreDict":""}]}]},{"questID":1285,"preRequisites":[495,98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:spike_base_diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Spikes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond Spike damages mobs that touch any side of it other than the bottom. With +7 attack damage, the Spike does as much damage as a Diamond Sword. Mobs will not walk around the block, but will try to walk over it as if it were a regular solid block. Most explosions won't destroy the Spike because it has a very high blast resistance.\n\nThese can also be enchanted with all the enchantments a regular diamond sword would receive. This includes Looting and Sharpness, which function exactly as it does on a sword. Interestingly, mobs killed by the Diamond Spike will return experience as if killed by the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17500,"OreDict":""},{"id":"minecraft:diamond_block","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:spike_base_diamond","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:epicbaconItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:diamond","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1286,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Primal Shrooms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Primal shrooms allow you to refill wands easier before you can move nodes to your base.\nGo and find some in a magical forest biome. Try using a Nature's Compass. Or buy some if no biome is close to your location.\n2 pumpkins and 4 entropy slivers are the perfect combo to make these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:ashroom","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""},{"id":"minecraft:nether_wart","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1287,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Vish Shroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magic mushrooms whoooo!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizard","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":5,"Damage":5,"OreDict":""}]}]},{"questID":1288,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemHops","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hops, the source of beer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't want pure alcohol, but beer, get some hops by crossbreeding IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemHops","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinFarmerI","Count":6,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1289,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":223,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lHV Bender","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV Bender is going to be 4x faster than your LV Bender, but it also opens up an important recipe - Tin cans! \n\nWith this bender you can turn Tin Casings into Tin Cans. Using the Tin Cans with food in a Canner (LV is fine) will make Canned Food. This can stack up to 64, and will fully restore your shanks - no need to rotate food types any more! You will eat as much as you need with one click. One drawback is you will no longer get the Well Fed buff with its slight health regen bonus. Also, these cans don't fit in the lunch bag or lunch box so you don't need those any more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":223,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemTinCanFilled","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1290,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Imma chargin' my...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Charged certus quartz is one of the basic components for a lot of AE recipes. Just mix some certus quartz and redstone dust to get charged certus quartz dust.\nUse the autoclave to make crystals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":"dustRedstone"},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2516,"OreDict":"dustCertusQuartz"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1516,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":810,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1291,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockEnergyCell","Count":1,"tag":{"internalMaxPower":200000,"internalCurrentPower":200000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping your Network Happy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Helps with fluctuating power. Energy cells store up to 200,000 AE. They do not accept power directly but are used to buffer some power in an already existing ME network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockEnergyCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":9,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1292,"preRequisites":[184,183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockDrive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Storing your ME data","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A block designed to do one thing, store storage cells. This block holds 10 storage cells so you can tightly pack your storage into a very small space. ME drives show their contents and the storage cell status on the front of the drive face. Red - Indicates the storage cell is full. Orange - Indicates the storage cell cannot hold any more types, but it can store more items. Green - Indicates the cell can hold more types, or more items. Black - Indicates there is no channel, or power is offline. It's important to note, that without an ME Network this block does nothing. It's only useful when combined with a way to input, and output items, and requires 2 AE/t power to function, and additional power for each storage cell stored inside it. The ME drive requires a channel to function."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockDrive","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1293,"preRequisites":[1292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:hardmedrive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Safety first!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This storage cell housing is blast proof and stores only 3 cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:hardmedrive","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1294,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockQuartzGrowthAccelerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speeding up growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Used to accelerate the process of purifying crystals, which allows you to create pure certus quartz crystal, pure nether quartz crystal and pure fluix crystal. Must be powered by an ME Network via the top or bottom, and consumes a steady 8 ae/t while plugged in. Crystal Seeds must be in an adjacent water block to be affected - the seeds will shimmer more rapidly when in the presence of a powered crystal growth accelerator. Can only connect to cables, or other networked machines on the top and bottom of the machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockQuartzGrowthAccelerator","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":1200},"Damage":1200,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1295,"preRequisites":[1294],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ae2stuff:Grower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Perfecting Crystal Growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The crystal growth chamber is used for fast crystal growth, and it is possible to increase its speed by installing an acceleration card in an upgrade slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ae2stuff:Grower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":1200},"Damage":1200,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1296,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purifying the impure","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Purified versions of nether, certus and fluix crystals"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":48,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2522,"OreDict":"dustNetherQuartz"},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2516,"OreDict":"dustCertusQuartz"},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":8,"OreDict":"dustFluix"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":1200},"Damage":1200,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":10,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8523,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1297,"preRequisites":[400],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:essence","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Dragon essense","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need some Dragon essense? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1298,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSecurity","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wireless Setup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Allows you to configure which users, and what permissions the users have with the ME System. By existing it enforces permissions on the usage of the system.\n\nThe security system does not prevent destructive tampering, removing cables / machines or breaking of drives. If you need to protect your system from physical vandalism you will need another form of physical security. This block provides network level security.\n\nThe player who places the ME security terminal has full control over the network and cannot exclude himself any rights. By adding a blank biometric card you define a default behavior for every player who has no biometric card registered.\n\nIn addition to security on the software layer, you can link up your wireless terminal with the network and access it wirelessly.\n\n\nAllows wireless access via a wireless terminal. Range and power usage is determined based on the number of wireless boosters installed into the ME wireless access point. A network can have any number of ME wireless access point with any number of wireless boosters in each one, allowing you to optimize power usage and range by altering your setup. Requires a channel to be operational."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSecurity","Count":1,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:tile.BlockWireless","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":32,"Damage":140,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":{}}]},{"questID":1299,"preRequisites":[1291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockDenseEnergyCell","Count":1,"tag":{"internalMaxPower":1600000,"internalCurrentPower":1600000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense boys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Giving your network even more stability. Dense energy cells store AE energy up to 1.6 million units. They do not accept power directly but are used to buffer power in an already existing ME Network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockDenseEnergyCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1300,"preRequisites":[1298,1299],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ToolWirelessTerminal","Count":1,"tag":{"internalMaxPower":1600000,"internalCurrentPower":1600000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME in the Ether","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you linked up the wireless terminal in the ME security terminal, it grants a portable access to the ME network. Put it into a charger to recharge it.\n\nHolds 1.6m AE in its battery and drains 1 AE/t for each block you are away from the nearest ME wireless access point."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ToolWirelessTerminal","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1301,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Annihilation and Formation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Formation Core - a component which can convert energy back into matter.\nAnnihilation Core - a component which can convert matter into energy.\nGates all network I/O."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":44,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":1,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1302,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":440,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Machines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME Interface is the only component which can be used as a part, or as a Block. Crafting an ME interface in either form by itself produces the other form. The thin form is useful if you want to provide several different interfaces in a single block of physical space, but each will need its own channel. The block form lets multiple other blocks connect to a single ME interface, using only one channel for the interface. The ME Interface acts as an in between when working with pipes, tubes, networks, or machines from other mods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":440,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1303,"preRequisites":[1302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":220,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Inventories","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME storage bus, when attached to another inventory block in the world lets you access that inventory via networked functions. This allows you to use chests, barrels, or other types of item storage in your networks.\n\nThe storage via the ME storage bus is bi-directional, it can both insert, or extract items from the inventory block it is attached to as long as the ME storage bus has its required channel.\n\nThe UI allows you to control which items are selected as storable items, this selection has no effect on what items can be extracted once they are in the storage.\n\nThe storage bus will function with nearly any inventory block, including ME Interface, Minefactory Reloaded DSUs, Factorization barrels, JABBA Barrels, and Better Storage crates. They can also be used to route items passively into Buildcraft pipes.\n\nIf you place a storage bus on an ME Interface the storage bus will be able to interact with the full conents of the target network, unless that interface is configured to store items inside itself, in which case it will see those stored items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":220,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11085,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1304,"preRequisites":[1303],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Storage bus for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1305,"preRequisites":[1302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"For Fluid Recipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ME interface for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1306,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":260,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Extracting Items From the Network","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME export bus extracts items from the ME network's networked storage and places them into the inventory it faces. You must configure which items it will insert, leaving the configuration blank will result in nothing. The ME export bus will try to export any of the items on its list skipping over those it cannot fit into the destination. The ME export bus requires a channel to function. This is the functional opposite of the ME import bus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":260,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1307,"preRequisites":[1297],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Dragon essense II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need some Dragon essense? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":320,"Damage":0,"OreDict":""}]}]},{"questID":1308,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":240,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inserting Items Into the Network","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pulls items from the inventory it is pointed at and places them into the ME network's networked storage. You can specify which items it will pull out via the UI, else it tries to pull out any item in the adjacent inventory. The ME import bus will attempt to import any possible options, even if 1 or more of the configured items cannot be stored. The ME import bus requires a channel to function. This is the functional opposite of the ME export bus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":240,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1309,"preRequisites":[1308],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Emptying Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Import Bus for Fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1310,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":39,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Something to put your Components in","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An empty storage container, you can insert any of the various storage cell parts into it to create a usable storage cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":39,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1311,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main processor for 1K and 4K cells.\n\nAs alternatives to storing items in ME, you can use a storage bus connected to other blocks. A common tactic is to connect to a bank of Compressed Chests or even a Drawer Controller in this way. This can help reduce the power requirements in your AE system."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":22,"OreDict":""},{"id":"dreamcraft:item.GoldCoreChip","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1312,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automating Crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Is a component of the crafting CPU. This particular block provides the CPU with no additional features, but can be used as a \"filler\" block and as a crafting ingredient for the crafting storage, monitor and co-processing units."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1313,"preRequisites":[1314,1310],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.1k","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lowest tier storage cell, which can contain 1,024 bytes of storage. 1,024 bytes of storage can hold 127 stacks of a single item, or 65 stacks, while holding 63 different items. The 1k storage cell uses 8 bytes of data to store a single type. When placed inside a drive or chest will consume 0.5 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 1k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand. The settings can be changed in the cell workbench."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.1k","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1314,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":35,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smallest storage component, used to make 1k ME storage cell, or can be upgraded to make 4k ME storage component. Can be recovered from a crafted 1k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1315,"preRequisites":[1314,1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 1024 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1316,"preRequisites":[1317,1313],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.4k","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second tier storage cell, which can contain 4,096 bytes of storage. 4,096 bytes of storage can hold 508 stacks of a single item, or 260 stacks, while holding 63 different items. The 4k storage cell uses 32 bytes of data to store a single type. When placed inside a drive or chest will consume 1.0 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 4k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.4k","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1317,"preRequisites":[1314],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second smallest storage component, used to make 4k ME storage cell, or can be upgraded to make 16k ME storage component. Can be recovered from a crafted 4k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1318,"preRequisites":[1317,1315],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 4,096 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1319,"preRequisites":[1317],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main processor for 16k and 64k cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":24,"OreDict":""},{"id":"dreamcraft:item.DiamondCoreChip","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1320,"preRequisites":[731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":242,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV compressor is twice as fast as the LV one but uses 4x the power. I suggest crafting 4 MV compressors for the new biomass processing line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":242,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1321,"preRequisites":[732],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":302,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV macerator is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":302,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1322,"preRequisites":[732],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":362,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV centrifuge is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":362,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1323,"preRequisites":[733,734,735],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellEmpty","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§6§lBiomass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chose the IC2 or the gregtech way to make biomass. Water and BioChaff is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1324,"preRequisites":[848,717,1544],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":512,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAdvanced Fluid Extractor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV fluid extractor is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":512,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1325,"preRequisites":[409],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:daggerOfSacrifice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dagger of Sacrifice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get more blood. Mobs are a good source for more blood. Transform your knife of sacrifice in your tier 2 altar into a dagger of sacrifice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:daggerOfSacrifice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1326,"preRequisites":[1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Co-Processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides additional item delivery from the CPU to the ME Interface for crafting.\n\nThis can be used to make more assemblers active in parallel for the job, and thus increase overall crafting speed. These only help if your setup has steps properly separated so the system can run multiple tasks in parallel, or even split the same pattern across multiple interfaces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1327,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":52,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Recipe Patterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A blank pattern, once encoded as an encoded pattern, is used to control crafting by inserting them into molecular assemblers and ME interfaces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":52,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1328,"preRequisites":[1327],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pattern Terminal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A specialized version of the ME crafting terminal designed to encode blank patterns into encoded patterns.\n\nLets you browse the contents of your network like other terminals, but also contains an area for designing patterns. There are two modes for pattern encoding. Crafting patterns, and processing patterns. Processing patterns are designed for use with machines that do not use standard crafting recipes - such as furnaces, or other machines. To select between modes, click the button to the right of the interface: when it shows a standard crafting table, it will create crafting patterns, and when it shows a furnace, it will create processing patterns.\n\nFor crafting patterns (\"Crafts...\"), you specify the input crafting materials on a standard 3x3 crafting grid, and the output materials are determined automatically.\n\nFor processing patterns (\"Creates...\"), you specify the input materials and output materials, including quantity, by placing stacks of items in the interface. If a processing operation is not guaranteed to succeed (such as secondary products from some machines), it will not work correctly as a processing pattern.\n\nWhen designing crafting patterns you can click the output to extract a crafted item as long as you have the materials required to craft the item.\nDon't forget to enable oredict substitution where needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17522,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1329,"preRequisites":[1300],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ae2stuff:Wireless","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME in your Cleanroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wireless connector is a close range quantum bridge alternative.\nConnections are point-to-point - you can't connect more than 2 blocks together. Each block will use 10 + distance^2 AE/t. Does not work across dimensions. Power needs to be provided on only one side. Up to 32 channels can be transferred through the connection. Can connect directly to dense cables. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ae2stuff:WirelessKit","Count":1,"Damage":0,"OreDict":""},{"id":"ae2stuff:Wireless","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":10,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1330,"preRequisites":[1306],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ore Dictionary Output","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME ore dictionary export bus will attempt to push the configured item/fluid [From the same ore dictionary] from the ME network into a machine or other input inventory. To configure an item/liquid, type in the item's name [e.g. if you want to export all ores put \"ore*\"]. The rate of export is very fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1331,"preRequisites":[203],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ToolMemoryCard","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"To Link P2P Busses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A small item, that can be used to store, copy, and paste settings. Shift + right click on a configurable object to save the settings onto the memory card, then right click on any other block of the same type to paste the settings. They are also used to link the input P2P tunnel to the corresponding output P2P tunnels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ToolMemoryCard","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1332,"preRequisites":[237,935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Solar LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The power of the sun x10. This solar panel works like 10 regular ones, but costs only 9. How is this possible? Magic! NOTE: They give out GT EU. NO TRANSFORMER NEEDED!"}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":8,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.ReinforcedAluminiumIronPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1333,"preRequisites":[240,238,88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Potentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aren't you tired of voiding all that useless potentia essentia? Well here's the solution:\nA generator that consumes potentia and outputs GT EU NO TRANSFORMER NEEDED!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"potentia"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemAdvBat","Count":3,"Damage":26,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32681,"OreDict":""}]}]},{"questID":1334,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Auram","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Generator is quite tricky. It requires Auram Essentia, that isn't that common, but its output is nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"auram"}]},"Damage":1,"OreDict":""}]}]},{"questID":1335,"preRequisites":[241,1332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused Solars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Compressed Solar Panels can be infused with Aspects for certain additional features. Check them out and choose one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemEssence","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:BlockJarFilledItem","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1336,"preRequisites":[1332,261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double Compressed Solar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"100EU/t for 72x1EU/t Solars? Sounds like a good deal. Get one of these. They can be Infused as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockGenerator","Count":5,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""}]}]},{"questID":1337,"preRequisites":[1335,1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Even more Infused","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can infuse double or triple compressed solars as well."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1338,"preRequisites":[1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Full power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triple Compressed Solars. Yes, that's right. They are a bit more expensive than their lower counterparts, 576 Solars in total. But they give out 1,000 GT EU per tick and have no need to be cleaned. How so? Magic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EMT:EMTSolars","Count":1,"Damage":4,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":10,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":13,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":7,"OreDict":""},{"id":"EMT:EMTSolars2","Count":1,"Damage":0,"OreDict":""},{"id":"EMT:EMTSolars2","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1339,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So, you got rid of the Potentia, maybe you don't want Ignis, but Potentia? Get this one to be able to burn Ignis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"ignis"}]},"Damage":1,"OreDict":""}]}]},{"questID":1340,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Arbor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When using magical plants to get Praecantatio Essentia, you'll end up with a couple dozen of Arbor Essentia jars. But no worries! This generator runs on Arbor! Awesome!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"arbor"}]},"Damage":1,"OreDict":""}]}]},{"questID":1341,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcanes to power...? This generator runs on Aer Essentia, it might not be as powerful as it's counterparts, but it's fuel is cheap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"aer"}]},"Damage":1,"OreDict":""}]}]},{"questID":1342,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Lucrum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This highly-warped, high-power Essentia generator is a lifesaver, when you run out of energy. Just toss some gold into your Arcane Furnace and burn the Lucrum you get."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"lucrum"}]},"Damage":1,"OreDict":""}]}]},{"questID":1343,"preRequisites":[645,230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:FeatherWing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Works like in anime!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want to fly. Badly. So go and ductape wings!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:FeatherWing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1344,"preRequisites":[1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ThaumiumWing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since you have access to better materials than cardboard now, you wanted to make wings. Angel wings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ThaumiumWing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1345,"preRequisites":[1344,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanosuitWing","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secret-Angel-Assasin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Infusing your Wings with Nano-Technologies seems to be the next step, to further improve them and combine magic and technology."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanosuitWing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1346,"preRequisites":[1364],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dropped in Asgard, fallen to earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've heared rumors of a mighty weapon, dropped in Asgard and fallen to earth. Could this be the mystical Item?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1347,"preRequisites":[1346,1361,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:Mjolnir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Repaired it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sadly enough, the hammer was broken. But you have the skills and the knowledge to repair it, don't you?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":2,"Damage":6,"OreDict":""},{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemSwordElemental","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemBatCrystal","Count":2,"Damage":26,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17880,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EMT:Mjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1348,"preRequisites":[1347],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:SuperchargedMjolnir","Count":1,"tag":{"charge":2000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Super-Mjollnir","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Addidional tweaks to your Mjollnir have changed it. Now you can summon Guardian Snowman to help you out!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:SuperchargedMjolnir","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":12,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1349,"preRequisites":[226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricGogglesRevealing","Count":1,"tag":{"charge":100000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electrogoggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you wander with your Goggles of Revealing you noticed that they tend to break easy. So craft yourself some electric ones that just need to be charged again!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricGogglesRevealing","Count":1,"Damage":165,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1350,"preRequisites":[1349,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanosuitGogglesRevealing","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nano Goggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The #1 product for spies and wanna-be-spies. Nano-Goggles. Don't you want one of these too? But they are sold out? Craft some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanosuitGogglesRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1351,"preRequisites":[1350,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumGogglesRevealing","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Goggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you continue to progress, you notice that your black goggles don't match your nice white and shiny armor. You decide to get a pair of white ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumGogglesRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":5,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1352,"preRequisites":[1351,1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:SolarHelmetRevealing","Count":1,"tag":{"charge":20000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Goggles > 9000","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This special pair of goggles recharges itself while you wander in sunlight. How convinient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:SolarHelmetRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":1353,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:electricCloud","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sparking Nitor...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"YELLOW! What an ugly color! I want PURPLE Nitor! Get me some and you'll receive something nice in exchange."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"EMT:electricCloud","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCandle","Count":16,"Damage":10,"OreDict":""},{"id":"Thaumcraft:blockWoodenDevice","Count":4,"tag":{"color":10},"Damage":8,"OreDict":""},{"id":"TConstruct:slime.gel","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1354,"preRequisites":[1096,789],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricScribingTools","Count":1,"tag":{"charge":400},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rechargeable Scribing Tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you tired of getting all the Ink for your scribing and you don't want to use your blood either? Get this Hi-Tech Scribing Device which will make your life much easier! Treat it like an LV machine - charge in any LV machine's battery slot, or in an LV battery buffer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricScribingTools","Count":1,"Damage":400,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemBatCrystal","Count":1,"Damage":26,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemInkwell","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1355,"preRequisites":[1345,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumWing","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings - Ultra Force!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"From ore to ingot, from nano to quantum, as you progress, your technology level increases, so should your wings as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumWing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"IC2:itemOreIridium","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1356,"preRequisites":[1355,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:itemArmorQuantumChestplate","Count":1,"tag":{"charge":20000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings - Combine!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last step is to combine the quantum armor with your quantum wings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:itemArmorQuantumChestplate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1357,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricHoeGrowth","Count":1,"tag":{"charge":200000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric Hoe-ing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the Hoe of Growth breaks easily, we have a fix for you! Get this one and simply recharge it, when it's empty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricHoeGrowth","Count":1,"Damage":1561,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1358,"preRequisites":[1333,215,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTMachines","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"EU->VIS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This device allows you to charge your wands using EU, but it costs 10kEU per Vis restored."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTMachines","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":1,"Damage":52,"OreDict":""}]}]},{"questID":1359,"preRequisites":[238,79],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ShieldFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Press and hold the B button to block!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Focus allows you to block any incoming damage. Sneak away if you're fighting an enemy too strong for you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ShieldFocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1360,"preRequisites":[1359],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ShieldBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reactor Shielding 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Shield Blocks - explosion proof - single use. Get a couple of these to shield your reactor!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ShieldBlock","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemOreIridium","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1361,"preRequisites":[1365],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What the Heck...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You found a yellow-ish glowing ball. It might be useful later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1362,"preRequisites":[1363],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:BaseBaubles","Count":1,"tag":{"warp":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The One Ring.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So you found it. The One Ring, forged by a mighty Dark Wizard. A strange feeling tells you to put it on. The Ring seems to whisper to you as well..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:BaseBaubles","Count":1,"tag":{"warp":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1363,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Ring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:BaseBaubles","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1364,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Mjolnir","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1365,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Ballthingy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1366,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]},"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ocean Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Ocean Bees? Since some servers don't provide ocean biomes, buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beePrincessGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""}]}]},{"questID":1367,"preRequisites":[486,995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgrade your Forestry Backpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your woven silk you can upgrade your Forestry backpacks. Each Pack has 45 slots.\nYou need a carpenter, your old backpack and a bit of seed oil.\n\nIf the recipe is not working, put the bag in a crafting grid to reset additional nbt data."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":18,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:diggerBagT2","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:minerBagT2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:craftingMaterial","Count":9,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1368,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Lost in the Twilight Forest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stay in the Twilight Forest and your portal gets broken, you are stuck. Every 24h you are able to exchange some materials to get a new portal crystal to escape."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.tfFeather","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFFirefly","Count":4,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.torchberries","Count":16,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFLog","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1369,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Time to find some Amber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every Thaumcraft Infused Stone vein has a bit of amber ore in it. Go and find some amber ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":514,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1370,"preRequisites":[1369],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Light it up!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The arcane lamp creates additional light sources which acts like a Torch in a sphere with a radius of 16 blocks centered on it. This will include caves or other areas behind walls. That might be useful... One downside, it might put a light where one isn't wanted, like inside an EBF. \n\nWhen attached to the base of an arcane bore, the arcane lamp gains an additional ability: It will light up the tunnel that the bore digs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCosmeticOpaque","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1371,"preRequisites":[827],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.canisterPartialLOX","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"LOX and Bagels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LOX canister is an alternate solution to refilling your oxygen tanks.\nTo make liquid oxygen you need 1 oxygen cells.\nPut this in the HV powered vacuum freeezer to get 1 cell of liquid oxygen.\nTransfer this liquid oxygen into a tank, and then into a LOX canister.\nTo refill your oxygen tanks just put the tank and the LOX canister in the crafting grid to transfer oxygen.\nEach LOX canister can fill 4 Heavy Oxygen Tanks, 6 Medium Oxygen Tanks, or 12 Light Oxygen Tanks. With a full stack you won't need to bring oxygen equipment with you.\n\nSo much Greggy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":1,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.canisterPartialLOX","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":900,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1372,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Fire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Fire is a basic wand focus. When equipped to a wand, it will be able to spew a short-range cone of fire by holding down the right mouse button. Its base vis cost is 0.1 ignis per second.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusFire","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1373,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusExcavation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Excavation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Excavation when equipped to a wand, will emit a green beam of light that will mine blocks of any hardness (except for blocks like Bedrock) from a distance.\nIts base vis cost is 0.15 terra per tick that it mines a block. It is also used in operating the Arcane Bore.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusExcavation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1374,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Shock","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Shock when equipped to a wand will shoot a bolt of lightning when the right mouse button is pressed. It homes in slightly to the nearest mob/player from where it is aimed. Its base vis cost is 0.25 air per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1375,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Equal Trade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Equal Trade is a wand focus added by Thaumcraft 4. It is used to switch out blocks in the world with blocks in the player's inventory. Shift right-clicking on a block with it equipped will attune the focus to the block, making it the substitute block. Left-clicking on another block will replace it with the substitute block. Right-clicking will transform a 3x3 area of blocks that the player can see (the focus will not affect blocks behind those). This range can be extended by using a Focal Manipulator. Each use costs 0.05 ordo 0.05 perditio and 0.05 terra.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1376,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusFrost","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Frost","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Frost when equipped to a wand will launch a ball of ice that can bounce off of blocks and mobs if their hardness is high enough. It will inflict Slowness on mobs, freeze water and solidify lava. Its base vis cost is 0.05 aqua 0.02 ignis and 0.02 perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusFrost","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1377,"preRequisites":[1373,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusWarding","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Warding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Warding can be used to make blocks invincible. To ward a block, right click on it with a wand or staff with this focus on it. This will make the block invincible until it is unwarded by right clicking it again with the wand. Take note that only the player who warded the block can unward it. \n\nWarded Blocks are completely indestructible and will produce particle effects similiar to runic shielding when the owner or another player tries to break it. Also, blocks that are affected by gravity(such as sand and gravel) will not fall when warded. Warded blocks cannot be affected by any outside influence such as redstone and pistons. If you attempt to ward glass, it will break the glass instead. There is a block known as warded glass available within the warded arcana research. The only way to break the warded block is via the owner right clicking with a wand in hand. Warding a block costs 0.1 aqua, 0.25 ordo and 0.25 terra.\n\nSpecial Note: Warded blocks emit light.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusWarding","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1378,"preRequisites":[1375,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPortableHole","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Portable Hole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Portable Hole when equipped to a wand will create a temporary 3x3 hole centered on the targeted block that will go 32 blocks. Some blocks cannot be passed through, such as Bedrock. Its base vis cost is air 0.1 and perditio 0.1 per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPortableHole","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1379,"preRequisites":[1182,1180],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart with Chunkloader","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When transporting oil from long distances, a train is going to need a chunk loader. Craft one, and I'll give you a second one for free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChunkloaderTierI","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1380,"preRequisites":[234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPech","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Pech's Curse","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Pech's Curse is a rare wand focus which cannot be crafted by the player. It can only be obtained from a Pech Thaumaturge -- either by trading, or by killing it for the drop. (If attacked, the Pech will use it against you!) Its vis cost per shot is 0.1 Perditio, 0.1 Terra and 0.1 Aqua.\n\nThe focus fires a small ball of energy with a bright bluish-green trail. This missile is affected by gravity, so the shots need to be \"arced\" to hit distant targets. When the shot hits a mob, it does one heart of damage and randomly inflicts one of several effects on the target: Poison, Weakness, or Slowness. A 5th-level upgrade to the focus can make it give all the effects at once.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPech","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1381,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Primal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Primal will hurl an orb of primal energy while holding right-click with it equipped. The orb explodes on impact, and has a small chance to cause other effects, such as creating taint, or a node at the impact site. Its base vis cost changes every tick.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1382,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pimp your Wand Focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Manipulator requires both XP levels and centi-vis in order to upgrade foci. Each Focus can be upgraded a total of five times, with the level and vis cost increasing by 8 for each upgrade. Some upgrades can be applied only at certain levels (often only at level 3), and others have prerequisite upgrades. Some upgrades like Frugal and Potency can be applied multiple times. All upgrades are permanent, and there is currently no way to remove them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1383,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Node Stabilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced node stabilizer acts like a normal node stabilizer but with key differences. It will still stop the node it affects from being drained but the node can now drain from other lesser nodes. It also has a higher chance to improve fading and unstable nodes. The downside is that any nodes it affects will have their recharge rates effectively reduced to nothing. They will recharge at an extremely reduced rate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1384,"preRequisites":[234,1373],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusSmelt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Efreet's Flame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Efreet's Flame is a Wand Focus that smelts blocks like a Furnace would when pointed and fired at them. It shoots a beam similar to the Wand Focus: Excavation. Each usage consumes 0.45 Ignis and 0.12 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusSmelt","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1385,"preRequisites":[1375,238,1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusDislocation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Dislocation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Dislocation allows the user to take and place any blocks, even Tile Entities and things usually unobtainable, like Aura Nodes and their energized counterparts.\nIt uses:\n5 Ordo + 5 Perditio + 1 Terra to take any solid block. \n25 Ordo + 25 Perditio + 5 Terra to take any block with tile entities (such as Chest). \n100 Ordo + 100 Perditio + 20 Terra to take Mob Spawner.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusDislocation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1386,"preRequisites":[1380,238,1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusHeal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Mending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Mending is a wand focus that will slowly mend the Caster's wounds by expending Vis. The Focus consumes 0.45 Aqua and 0.45 Terra per cast, healing half a heart (1 health).\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusHeal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1387,"preRequisites":[1384,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Uprising","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Uprising is a wand focus that propels the player in the direction they're facing. When used, the focus consumes 0.15 Aer per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1388,"preRequisites":[1387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusDeflect","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Disorientation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Distortion can be equipped on any wand. It protects the caster from \"ordinary\" projectiles such as arrows, snowballs, and potions. The focus can be enabled by cycling through the foci currently in the player's inventory, which is done with the F-key. The focus consumes 0.04 Aer and 0.08 Ordo per tick from the Vis stored in the wand while in use.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusDeflect","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1389,"preRequisites":[1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusEnderChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Ender Rift","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Ender Rift is a Wand Focus that opens the vanilla Ender Chest remotely when the player right-clicks with it. When used, the focus consumes 0.9 Ordo + 0.9 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusEnderChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1390,"preRequisites":[238,1387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:xpTalisman","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Telekinesis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Telekinesis is a wand focus that can move nearby objects such as dropped items, arrows etc. where you are pointing with the wand or towards you, if you hold Shift key while using it. Consumes 0.05 Aer + 0.05 Perditio per tick used.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusTelekinesis","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1391,"preRequisites":[238,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Experience Drain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Experience Drain will drain the player's experience at a rate of 15 xp per tick, restoring vis at a rather fast rate.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusXPDrain","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1392,"preRequisites":[238,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusShadowbeam","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Shadow Beam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Shadowbeam shoots a beam of energy that is reflected by any block and damages everything it passes through. The beam travels a rather short distance though. Consumes 0.15 Aer + 0.25 Ordo + 0.25 Perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusShadowbeam","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1393,"preRequisites":[1380,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTaint","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Tainted Storm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Tainted Storm can be equipped on any wand and will emit a stream of tainted particles which will damage anything in a short distance and inflict Taint Poison for 5 seconds. The focus will also debuff the caster with Flux Flu III for 10 seconds unless enchanted with Antibody. The foci can be enchanted with Frugal, Potency, Enlarge, Antibody and Corrosive. Each cast costs 0.1 Aqua + 0.1 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTaint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1394,"preRequisites":[1393],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTaintedBlast","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Tainted Shockwave","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Tainted Shockwave will release a powerful shockwave around the caster which travels 15-20 blocks and will damage all mobs in the radius and push them back the same as a Knockback II enchantment. After using this foci the caster will be unable to use any other magic for 15 seconds. The foci can be enchanted with Frugal and Enlarge, each level of Enlarge will add 1 block to the shockwave radius. Each cast costs 10 Aqua + 5 Ordo + 10 Terra + 10 Perditio.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTaintedBlast","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1395,"preRequisites":[243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusVisShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Vis Shard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Vis Shard can be equipped on any wand. While equipped, it can be right-clicked to cast a homing projectile which deals 2-5 damage points. This projectile can bounce off of solid blocks. If the target is not hit in 10 seconds, the projectile disappears. This focus can be enchanted with Frugal, Potency and Persistent.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusVisShard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1396,"preRequisites":[320,284,1378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusEldritch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Dark Matter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Dark Matter allows the player to cast the projectiles Eldritch Guardians cast. Can be upgraded with Potency, Frugal, Sanity, Diffusion and Corrosive. For each projectile cast the player will get Temporary Warp. This will not happen if the focus is enchanted with Sanity. Enchanting the focus with Diffusion will change its firing mode from single projectiles to short-range black gas which acts as a flamethrower.\n\nEach cast costs 0.2 Ignis + 0.2 Perditio. With Corrosive each cast will cost additionally 0.2 Aqua + 0.3 Ignis\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusEldritch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1397,"preRequisites":[320,284,1396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTime","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Time can be equipped by any wand. When used during day, will set the time to dusk. When used during night, will set the time to sunrise. Each cast costs 10 of all primal aspects and will make the player unable to use any other foci for 30 seconds.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTime","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1398,"preRequisites":[320,284,1396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusMeteorology","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Meteorology","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Meteorology can be equipped by any wand. When used during rain will stop rain, when used during sunny weather, will start rain. Each cast costs 10 of each primal aspect and will make the caster unable to use any other foci for 30 seconds.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusMeteorology","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1399,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusMageMace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Mage's Mace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Mage's Mace can be equipped by any wand and will boost attack damage up to 15 hearts. It can be enchanted with Frugal, Potency and Bloodlust. Each attack with this focus costs 0.5 Perditio.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusMageMace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1400,"preRequisites":[1378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:BlinkFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Blink","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Blink is a very powerful focus allowing to teleport whenever you click, as long as the destination is less then 50 blocks away from you. But, as there is no teleport cooldown, you can travel extremely fast with it. Consumes 3 Perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:BlinkFocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1401,"preRequisites":[1382],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusShock","Count":1,"tag":{"upgrade":[{"id":0},{"id":-1},{"id":-1},{"id":-1},{"id":-1}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infuse your Focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Try to add Potency to your Shock Focus. At Level 3 you can add Chain Lightning or Shock Wave."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusShock","Count":1,"tag":{"upgrade":[{"id":0},{"id":-1},{"id":-1},{"id":-1},{"id":-1}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1402,"preRequisites":[274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27084,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iridium screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chrome screws are nice, but they seem to break if too much vis channels through them. Get some Iridium screws."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27084,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1403,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1122,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Steam Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to use steam in HV tier then it's time to build a steam turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1122,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1404,"preRequisites":[81,78,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2320,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSuperconductors 128 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 128 EU MV Wires ? Pentacadmiummagnesiumhexaoxide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix cadmium, magnesium and oxygen in a mv mixer. Next te base dust needs an EBF with Kanthal Coils. A vacuum freezer is also required to cool it down. Make some MV Superconductor base Wires and use an assembler to combine these wires with Helium, Stainless Steel pipes and HV pumps to get your 128 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2055,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2018,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2987,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11987,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2200,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2200,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5140,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32611,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2320,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1405,"preRequisites":[79,860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSuperconductors 512 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 512 EU HV Wires ? Titaniumonabariumdecacoppereikosaoxide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix titanium, barium, copper and oxygen in an HV mixer. Next the base needs an EBF with Nichrome Coils. A vacuum freezer is also required to cool it down. Make some HV Superconductor base Wires and use an assembler to combine these wires with Helium, Titanium pipes and EV pumps to get your 512 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":1028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":27,"Damage":1063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":1035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":2988,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11988,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2220,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2220,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":5150,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2340,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1406,"preRequisites":[1245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":214,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV asembler is required to make some lapotron crystals. Other recipes are twice faster than with an HV assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":214,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1407,"preRequisites":[806,1246],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":594,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§k§r§a§lEV Laser Engraver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV precision laser is required to make quantum crystals. Other recipes are twice as fast than with an HV precision laser."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":594,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11085,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1408,"preRequisites":[861,1243,86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lSuperconductors 2048 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 2048 EU EV Wires ? Uraniumtriplatinide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix uranium 238 and platinum in an HV mixer. Next the base needs an EBF with Tungstensteel Coils. A vacuum freezer is also required to cool it down. Make some EV Superconductor base Wires and use an assembler to combine these wires with Nitrogen, Helium, Tungstensteel pipes and IV pumps to get your 2048 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2098,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2989,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11989,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2240,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5160,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32613,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1409,"preRequisites":[475,1522,1005],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2380,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSuperconductors 8192 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 8192 EU IV wires? Vanadiumtriindinide is a superconductor wire and will transfer your energy without any loss. Every voltage now has superconductor wires and a base wire with only a very small EU/t loss.\n\nMix vanadium and indium in a HV mixer. Now you have the base dust, which needs an EBF with HSS-G coils, and a vacuum freezer to cool it down.\n\nMake some IV superconductor base wires and use an assembler to combine these wires with nitrogen, helium and niobiumtitanium pipes and an IV pump to get your 8192 EU/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2029,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2056,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2990,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11990,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2260,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2260,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5180,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32614,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2380,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1410,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":585,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Mixer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An IV mixer is required to mixe niobiumtitanium and vanadiumgallium dust. Other recipes are twice faster than with an EV mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":585,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11047,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11037,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1411,"preRequisites":[854,851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2241,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSome rare high tier metals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Small piles of Platinum, Palladium, Iridium and Osmium can be extracted with a chemical reaction with using nitric acid. You don't have the technology to process it right now but later on you need large amounts of them. You can start now to collect some dust and process it later.\n\n§4A chemical bath also extracts Platinum from Nickel ore. Time to head back to the Twilight Forest!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30653,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6855,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6909,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2241,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":85,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":84,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":83,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30659,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6855,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1412,"preRequisites":[1890,1707],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAssembling Line","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The assembling line (short form 'Ass Line') is a multiblock and important for high tier Components in LuV tier and above for Motors, Pistons, Robot Arms, Pumps and many more.\n\nThe machine can be 5-16 blocks long. The minimum length required depends on the number of components and fluids required by the recipe it's crafting. A length of 11 blocks will fit 80 percent of all recipes in GTNH.\nThe bottom layer must have on one outer side all the Input Hatches for fluids (4), in the bottom middle layer Input Busses for items(10), and on the end 1 Output Bus. Also on the bottom outer layer must be one Maintainance Hatch. The rest is Solid Steel Machine Casings.\n\nThe second layer on the outer sides left and right are Reinforced Glass and in the middle center Assembling Line Casing.\n\nThe third layer has on the left and right Grate Machine Casings and in the middle Assembler Machine Casings (Note the name change!). The Assembling Line control block and Data Access Hatch are on the opposite edge from the Input Hatches - not at the end with the Output Bus.\n\nThe fourth layer is a single line of Solid Steel Machine Casings in the middle(11), with two Energy Hatches for power. Once you have it built, you can replace the two IV energy hatches with 1 LuV energy hatch.\n\nAutomating the assline is God tier GTNH endgame. While it can be done with Enderio, it's easier to use SFM or OpenComputers.\n\nFor more details on using the Assembly Line, check out the wiki page https://tinyurl.com/GTNH-Assline"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":39,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":55,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":10,"Damage":75,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":85,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockAlloyGlass","Count":22,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":11,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":45,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":145,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":20,"Damage":10,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":15,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:paper","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"squidink","Amount":1000}},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1413,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYou gonna hate this 1-4 in IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in IV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32614,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32644,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32634,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1414,"preRequisites":[1539,1538],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYou gonna hate this 5 and 6 in IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32684,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1415,"preRequisites":[188,187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lPure Uranium Ores","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want pure uranium ores, you'll need to visit Deimos or Phobos to fetch it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":922,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":98,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1416,"preRequisites":[1243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMallard Rust Smelly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or is it Alloy Blast Smelter? Well, that makes more sense. This multiblock creates the higher tier alloys needed for the more advanced GT++ multiblocks. It directly smelts into liquids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":16,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":13,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"miscutils:itemDustIncoloy020","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:itemDustIncoloyMA956","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:itemDustInconel625","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1417,"preRequisites":[1494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":758,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCough cough - Something needs to be done about the smell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Birds falling out of the sky, fish dead and floating belly up in the rivers, acid rain melting the ground...Time to start picking up the trash and cleaning up the air. Small steel turbines should be fine for now. You'll need two amps of steady power to keep the scrubber working."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":756,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:itemAirFilter","Count":11,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":170,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":759,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"miscutils:itemAirFilter","Count":2,"tag":{"AirFilter":{"Damage":0}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1418,"preRequisites":[1416,861],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":812,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§9§a§lEU packets flowing everywhere...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...in my dreams. What if instead of having battery packs on every generator, we could centralize all the generation in one location? Put it away from the well travelled parts of the the base? Out in the country somewhere? Let the animals deal with the pollution. Anyways, let's start working on a Power Sub-Station to store EU and deliver it to our base. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":19,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":80,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":812,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1419,"preRequisites":[779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":892,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who cares about a little cancer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when it means you don't have to strip naked to recharge your nanosuit? \nThe Wireless Charger will keep your armor and tools charged up without having to put them into a battery buffer. \n\nIt will charge armor and tools at the tier and below.\n\nYou didn't want kids anyways..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":892,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":1600000},"Damage":32538,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1420,"preRequisites":[1164,1521],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":840,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lShake that booty...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...out of the purified ores. Anyways, a Large Sifter will increase your sifting rate significantly. What will you do with all these gems??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":18,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":47,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":840,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:diamond_ore","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":502,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":501,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":503,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":514,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":542,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":543,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":541,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":540,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":545,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":544,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1421,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":797,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hulk Smash!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mass destruction! Or at least, lots and lots of crushed ores. Build a maceration statck to keep up with all the ores you are getting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":26,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":797,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4873,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1422,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":850,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The rocks in the washer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...go round and round, all the live long day. A large orewashing plant gets your rocks nice and clean."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":70,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":850,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":944,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":526,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1423,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":849,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dancing in circles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spinning around, getting hot - sounds like a dance. Or a thermal centrifuge. Build a large thermal refinery to get the most out of your ores.\n\nYou can use Noise Hazard Signs instead of Thermal Processing Casings, as long as you have at least 8 Thermal Processing Casings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":4,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":849,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1424,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Ilmenite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ilmenite will give a better amount of Titanium per Ore than Bauxite.\nThis Vein can be found on moon at Y Level 10-70."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":918,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":825,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":842,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":925,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1425,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Calculation processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some printed calculation circuits? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":23,"OreDict":""}]}]},{"questID":1426,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find some Meteoric Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach tier two planets like Mars or its moons Phobos and Deimos you need a better rocket. Your next goal is Tier two rocket plates which need meteoric Iron. \n\nYou will find small meteoric iron ore under the surface. Use a high tier miner or multiblock miner to get extra fortune on small ores. Small meteoric iron is only from Y=50-70, so try to find tall hills.\n\nMine the fallen meteors on the surface. Use your ears to listen to their impacts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":3340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":5340,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronRaw","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1427,"preRequisites":[80,1430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 10 tier 2 heavy duty plates out of tier 1 plates and meteoric iron plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":10,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":17340,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":32463,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":10,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17340,"OreDict":""},{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1428,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The tier 2 rocket uses an elite circuit, a heavy duty plate tier 2, and the data stick in a ev circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":2},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1429,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of hard work and tons of stacks of iTNT your second rocket is finally ready. But before you can go to Mars you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":10,"Damage":3,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1430,"preRequisites":[80,1428],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Recycle your rocket and save the Environment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why not recycle your old Tier 1 rocket to get componets for your new tier 2 rocket? Put your old rocket in an arc furnace or plasma arc furnace to get back lots of materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":32462,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"IC2:blockITNT","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1431,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.engine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Booster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The distance between Mars and Earth is much larger than to the Moon and so the rocket needsboosters to reach it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.meteoricIronIngot","Count":6,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1432,"preRequisites":[1427,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mars Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Mars lander is required for a soft landing.\nPut the Moon lander on a Parachute and surround it with airbags - that will do the trick. You hope.\n\nHint: Some times you can't loot or break the lander. Try to retrieve the contents with a hopper underneath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.canvas","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1433,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.moonBlock","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While looking for the meteoric iron you will find a moon dungeon. Look for a deep hole that is not a crater with a bottom that is not moon rock - it will show you the way to the dungeon. Go and fight a few mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 2 rockets.\n\nKill the Boss Monster again in a different dungeon if you want an extra tier 2 schematic to exchange for a moon buggy schematic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":16,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1434,"preRequisites":[1435],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.buggy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Patrol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Moving faster on the Moon or other planets surface will be fun. I'm sure it will be totally safe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":11,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":5,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.buggy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1435,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Buggy Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The moon buggy needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The moon buggy circuit uses a EV-tiercircuit, a heavy duty plate tier 1, and the data stick in a ev circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":100},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1436,"preRequisites":[1434],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.landingPad","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fueling your Buggy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The moon buggy needs gasoline to work. Build a 3x3 fueling pad, connect it with a fuel loader, and place the buggy on top."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":9,"Damage":9,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":9,"Damage":0,"OreDict":""},{"id":"Railcraft:cube","Count":9,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.landingPad","Count":9,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1437,"preRequisites":[1426],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankMedFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bigger Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Medium oxygen tank is an oxygen storage tank that can hold up to 1800 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank. I recommend making the medium tanks and using the light tanks as spares to return to base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":14,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankMedFull","Count":2,"Damage":1800,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1438,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Me glass cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ME glass cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":24,"Damage":16,"OreDict":""}]}]},{"questID":1439,"preRequisites":[1371,1440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumcraftneiplugin:Aspect","Count":1,"tag":{"Aspects":[{"amount":2,"key":"aer"}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Permanent Oxygen Systems","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You decided to have a longer stay on the moon and look for a permanent oxygen setup to refill your outdoor gear and building a small Base.\n\nDon't forget to bring repair stuff for your tools and armor! Dream 2018!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":128,"Damage":0,"OreDict":""},{"id":"minecraft:glass","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":10,"Damage":0,"OreDict":""},{"id":"minecraft:leaves","Count":64,"Damage":0,"OreDict":"treeLeaves"},{"id":"minecraft:log","Count":16,"Damage":0,"OreDict":"logWood"},{"id":"gregtech:gt.metaitem.01","Count":2,"tag":{"GT.ItemCharge":1600000},"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1440,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Bubble Distributer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Oxygen Bubble Distributor takes oxygen from the Oxygen Collector, and makes an oxygen bubble providing an area to safely breathe in without needing Oxygen Gear. The bubble is a sphere surrounding the distributor and will go through walls (or any block). Alternatively, you can use an Oxygen Sealer (need compressed Desh Plates) to contain oxygen inside a room."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:leaves","Count":512,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1441,"preRequisites":[1445],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.glowstoneTorch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Space torches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Normal torches won't work in space, only in the area within the oxygen bubble.\nOne solution is glowstone torches. You can also use other mods' lights and lamps. You'll probably want 3-5 stacks for mining veins.\nAnother is to use nightvision and a magnum torch or GregTech monster repellator to keep mobs away. These do not work on the official servers, instead claim and unclaim chunks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.glowstoneTorch","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"FloodLights:electricIncandescentLightBulb","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":23010,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1442,"preRequisites":[692,80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Steel Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed steel armor has more durability than the steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":24,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftCore:item.steel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:tnt","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1443,"preRequisites":[1442,186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.deshChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Desh Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed desh armor has more durability than the compressed steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":24,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftMars:item.deshHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1444,"preRequisites":[1442,162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.titanium_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Titan Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed titan armor has more durability than the compressed steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftMars:item.titanium_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1445,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:clock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Day and Night time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon's day-night cycle is 2h 40min long, equaling 8 Overworld days and it is linked to the Moon phases seen on the Overworld. The daytime on the moon lasts from a full moon to the next new moon (4 Overworld days, equaling 1h 20min) and, logically, the nighttime lasts from the new moon to the next full moon.\n\nSince the 1st Overworld night is full moon, you can safely land within the 1st 4 Overworld days, and then the next 4 Overworld days are more dangerous since hostile mobs will be able to spawn in the dark, and so on. If you miscount, the moon phases can tell you when it is daytime or nighttime on the moon. Full moon is the start of the moon day, new (or dark) moon is the start of the moon night.\n\nDuring the nighttime, the environment light levels go very low, allowing hostile mobs to spawn on the surface."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1446,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.mars","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mars Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours you will find a Mars dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 3 rockets.\nIf you need the schematics for the astro miner or the cargo rocket, kill another Boss Monster and exchange the schematics.\nBefore you journey home make sure you fulfill the quest requirements in the EV tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.mars","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":16,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1447,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The astro miner needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The astro miner circuit uses a EV-tier circuit and a heavy duty plate tier 3 and the data stick."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":102},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1448,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The third tier schematic circuit uses an elite circuit and a heavy duty plate tier 3 and the data stick in a iv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":3},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1449,"preRequisites":[1446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cargo Rocket Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cargo Rocket has the capability to transport solid items between dimensions, and is a perfect way to transport items between dimensions without relying on Enderchests.\n\nThis rocket can be loaded with 2000 fuel points or 2 buckets of Rocket Fuel. The safe fuel level is 80 percent. \n\nYou can fill up the right slots with chests to increase the storage space to 36 and 54 slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":101},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1450,"preRequisites":[1447],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemAstroMiner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Astro Miner is an automatic mining vehicle which moves around, making tunnels and mining up everything it finds, and brings it all back to a base station where it docks. It is not player-rideable* so do not try and climb inside it!\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.orionDrive","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32603,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.beamReceiver","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemAstroMiner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11884,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1451,"preRequisites":[1450],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.minerBase","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner Base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To construct the dock, place 8 Astro Miner Base blocks in a cube, 2 blocks high, 2 blocks wide and 2 blocks deep. When the last of the base blocks is placed, it should automatically convert into an Astro Miner Base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4177,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":8,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":2,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.machineTiered","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.minerBase","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11081,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1452,"preRequisites":[205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Launch Controler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To use the Cargo Rocket at full capacity it is necessary to equip a Rocket Launch Pad, to send items, with:\n\nFuel Loader\nLaunch Controller\nCargo Loader\nAnd the receiving side with:\n\nFuel Loader\nLaunch Controller\nCargo Unloader\n\nIt is also possible to use Buildcraft pipes to transfer items into the Cargo loaders. Next step is to set up the Frequencies in both Launch Controllers (i.e. Set: A to target B, B to target A). Have a look at Launch Controller to setup the automated launch. The first time you have to right-click the Cargo rocket and press launch at the top right corner."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.fuelLoader","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:tile.marsMachine","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1453,"preRequisites":[80,1446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 42 tier 3 heavy duty plates out of tier 2 plates and desh plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":42,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":168,"Damage":17884,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":32464,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":42,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17884,"OreDict":""},{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1454,"preRequisites":[1453,1457,1448,1456,1458,1459,1460,1473],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After days of hard work and a hundred tons of stacks of iTNT your third rocket is finally ready. But before you can go to the Asteroids, Ceres or Jupiter Moons you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":3,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":12,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":2,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":96,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1455,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Fluix crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some fluix crystals? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":24,"Damage":7,"OreDict":""}]}]},{"questID":1456,"preRequisites":[176,1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Tier 3 or Deep Space lander is required for a soft landing.\nPut the Mars lander in a desh cage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":6,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1457,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Nose Cone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone. Tier 3 rocket needs a heavy nose cone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1458,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. A heavy one is needed in the tier 3 rocket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":5,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1459,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Fins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins. Tier 3 rockets need heavy ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1460,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.MediumFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Medium Fuel Canister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 3 rocket you need to craft two small and two medium canisters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DeshDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.TitaniumDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":4,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1461,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4884,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Desh is a very important material for high tier rockets and used by many recipes in Galacticraft and Galaxy space. Go and find a desh vein on Mars at Y 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4841,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1462,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thermal Cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thermal Padding is a suite of garments made out of an advanced insulating material. The garments are able to keep a player from freezing to death in the cold environments of Outer Space. They are also able to keep the player from suffering heat exhaustion in an overly hot environment.\n\nThe temperature indicator on the Life Support HUD will show if the player is becoming too hot or too cold - as the temperature approaches dangerous levels, an \"Invalid Thermal Protection\" warning will be shown. On Mars and the Asteroids, simply wearing a full set of Thermal Padding should be enough to fix this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":24,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":96,"Damage":29019,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":96,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":2,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11340,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1463,"preRequisites":[1454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sleeping in Space","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cryogenic Chamber is used to sleep on other planets and skip long nighttimes. It can be used at any time, even during the daytime, and in any dimension, including the Overworld.\n\nUsing the chamber during the daytime will skip the time to the next sunrise, except on the Asteroids dimension where the Sun is always locked on West.\n\nOnce the player has used the Cryogenic Chamber, there is a 300 seconds cool-down time before he can use the chamber again. Breaking and placing back the chamber or trying to use different chamber will not reset the cool-down time, unless by dying.\n\nThe chamber does not require energy to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":2,"OreDict":""},{"id":"CarpentersBlocks:itemCarpentersBed","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":3,"OreDict":""},{"id":"minecraft:clock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1464,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.arclamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arc Lamp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Arc Lamp is a very bright lamp. It is directional - meaning the light it casts is brighter in the direction it is facing. Its facing can be rotated using a Standard Wrench.\n\nIncluding the Arc Lamp the brightness of blocks which are close to light sources is:\n\nRedstone Torch: 3-6\nTorch: 9-12\nBlock of Glowstone: 10-13\nArc Lamp: 13-14\n\nThe Arc Lamp can light up a fairly large area - for example a whole room - at light level 14: it is almost as bright as full sunlight.\n\nThe Arc Lamp also has the interesting property of actively repelling mobs. Not only does its light prevent mobs from spawning nearby, but it is so bright that if a mob comes close to the Arc Lamp the mob will turn around and walk away again. This mob repellant effect is confirmed to work on : Zombies, Skeletons, Creepers, Evolved Zombies, Evolved Skeletons, Evolved Creepers. It may also work on other types of mobs (confirmation required). But it has no effect on Spiders (they are not afraid of sunlight either) or boss mobs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":112,"Damage":5,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":16,"Damage":16,"OreDict":""},{"id":"GalacticraftCore:item.battery","Count":16,"tag":{"electricity":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.arclamp","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1465,"preRequisites":[1467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.airLockFrame","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Air Lock","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Air Lock is an airtight door used to provide a passage between enclosed rooms and between an enclosed room and outer space. It is made from Air Lock Frames and one Air Lock Controller.\n\nThe air lock will keep air inside the room while it is closed. But when the air lock is open, the room is no longer sealed and oxygen gear must be worn until the air lock is closed. In environments with extreme temperatures, Thermal Padding must also be worn."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.airLockFrame","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:tile.airLockFrame","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1466,"preRequisites":[1467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":20,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Temperature Control","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ambient Thermal Controller is an item for use in the Oxygen Sealer to provide thermal protection in sealed spaces.\n\nAmbient Thermal Controller is useful in the dimensions too cold or too hot for players to survive without Thermal Padding.\n\nIt can be placed in the 3rd slot next to the energy and oxygen slots in a working Oxygen Sealer. Once the Ambient Thermal Controller is in the sealer, it will heat or cool the output oxygen according to the local environment, and then the player can safely take the thermal padding off in the sealed room."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":10,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1467,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.sealer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Sealer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Oxygen Sealer is a machine that fills a room with oxygen (although the oxygen is generally not visible) up to around 800-1000 blocks (amount stacks with multiple sealers within close proximity) allowing the user to breathe without Oxygen Gear. Unlike the Oxygen Bubble Distributor, the Oxygen Sealer confines the oxygen to the room it is in. The sealer must be supplied with power and sufficient oxygen. See Oxygen Collector for supplying oxygen.\n\nThe sealer will only work in a room that is completely sealed off from outer space. This can be achieved with either a completely closed off room, or with an Air Lock. The sealer must have nothing above it to block its vents. It is designed to check for a proper seal about every 5 seconds, so be sure to give it time to seal.\n\nEach sealer requires at least 320 air points per second to work continuously or it will fail."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.sealer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":{},"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":6,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1468,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankHeavyFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Large oxygen tank is an oxygen storage tank that can hold up to 2700 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":14,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32406,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankHeavyFull","Count":2,"Damage":2700,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1469,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.sludge","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bacterial Sludge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bacterial Sludge is a fluid block that generates naturally on Mars.\n\nIt generates in the giant underground caves in Mars and floods over almost the whole cavern floor.\n\nCollect it to produce mutagen for bees mutation in gendustry."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":256,"tag":{"Fluid":{"FluidName":"bacterialsludge","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:shears","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1470,"preRequisites":[1469],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.cavernVines","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cavernous Vine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cavernous Vine is a poisonous plant that grows naturally in the Mars underground. It grows from the ceiling down to the floor in the huge caves flooded with Bacterial Sludge, emits light and can trap mobs in it.\n\nAny mob that touches this plant will be poisoned, dragged up and lose health down to 1 health point (half a heart) while trapped in this plant. Mobs that are immune to poison, like Zombies and Skeletons, will not lose health.\n\nThey grow from the bottom face of a solid block down to 1 block away from the floor.\n\nCavernous vines can be broken by hand without taking damage or being poisoned but they will drop nothing. They can be obtained as an item using shears. Even picks with Silk Touch enchant will not obtain anything.\n\nOnce obtained, they can be replanted elsewhere and regrow, like cactus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.cavernVines","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":6,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1471,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Slimeling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slimeling is a utility mob that spawns from Slimeling Eggs found on Mars surface. It shares some features from vanilla wolves and mules: it can be tamable and attacks mobs that threaten its owners, and can be equipped with a special chest to transport items.\n\nAs an allied mob, Slimelings will actively help and follow the player-owner and will attempt to protect them. They can also have a neutral behavior, that is, they can attack if provoked or hurt by non-owners.\n\nItems that you can feed Slimelings with:\n\nBoat\nCooked fish\nGunpowder\nGold ingot\nRedstone repeater\nWooden door\n\nSlimelings can be equipped by their owners with a Slimeling Inventory Bag to transport items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:boat","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_fished","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:repeater","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1472,"preRequisites":[1462],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.grapple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Grapple","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Grapple is a grappling hook and rope which can be thrown by a player, and then used to swing the player in the direction it was thrown. Useful for reaching places that are otherwise too high to jump to, or traveling around the Asteroids.\n\nRight-click to aim the Grapple at a block you want to reach, similar to aiming a Bow. Release the right-click - similar to firing an arrow from a bow - to grapple yourself in that direction.\n\nFor best results, aim the Grapple at a point 1 or 2 blocks higher than the point you want to reach.\nIf there is no safe platform to land at that point, you can fall back down and you will take fall damage, so it takes some skill to use the Grapple safely.\nTake care using the Grapple near a Nether Portal, End Portal or at a low height (less than y = 30) on a Space Station. There can be strange consequences if it crosses into another dimension."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":14341,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.grapple","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.battery","Count":16,"tag":{"electricity":0},"Damage":100,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11341,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1473,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nice and comfortable - in space!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These thermal clothes will keep you nice and warm even in the coldest depths of outer space."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.TungstenString","Count":96,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":96,"Damage":29028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ThermalClothT2","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":1,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":2,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":16,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1474,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:drum","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWant to join a band?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or at least play with drums? If you have extra Meteoric Iron after building your rocket and thermal padding, turn it into Meteoric Steel and use it to make some drums. These drums can hold 256 buckets even after breaking."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17305,"OreDict":"plateSteel"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28341,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5134,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ExtraUtilities:drum","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:drum","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1475,"preRequisites":[10],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":34,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCows are supposed to Moo!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What the? You noticed sometimes when you kill something, even a cow or chicken, that it explodes! What madness! To stop it, use a proper GregTech Knife or Butchery Knife. Craft a flint GregTech knife with a stick and a piece of flint (last NEI page) and I will give you an old iron one to use once it wears out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"Iron","MaxDamage":25600,"SecondaryMaterial":"Iron","Damage":2800}},"Damage":34,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:porkchop","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1476,"preRequisites":[492],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":16},{"lvl":2,"id":21}],"GT.ToolStats":{"PrimaryMaterial":"Iron","MaxDamage":25600,"SecondaryMaterial":"Iron"}},"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAll the finest cuts of meat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This knife is not going to work for slaughtering the hundreds of animals you will need for food and materials. Make yourself a GregTech Butchery Knife. It stops the explosions, and kills the cows much faster. Later when you get Stainless Steel, you can make a new one that will kill cows in one hit.\n\nNote: GT Tool damage is based on mining level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":21}]},"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"minecraft:leather","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:beef","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1477,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #6 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sixth item you'll need a lot of. For the scanner and the seismic prospector."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":29501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1478,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #5 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fifth item you'll need a lot of. For the microwave, the scanner, the precision laser engraver, etc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1479,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Ring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber rings? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":28880,"OreDict":""}]}]},{"questID":1480,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:dustRadium226","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRadon Decay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Radon is used for quantum eyes, quantum stars and emitters and sensors in the EV machines. Try to find a Uranite vein first. \n\nYour washed Uranium 238 ore goes to the sifter and you get a small chance of Radon 226. It needs up to 4500 ticks or 75 mins to decay. So get used to your hazamit suit around base or sit and enjoy a few sunsets. Make sure to send it out for cleaning after you are done. After decaying you can electrolyze radon gas out of it.\n\n§4This Vein can be found on Phobos, Deimos or Ceres."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:itemDustDecayedRadium226","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1481,"preRequisites":[198],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXQuad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§l4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1482,"preRequisites":[1477],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.detrav.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":1000,"SecondaryMaterial":"Steel"}},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lPortable prospecting tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have some tech, you've discovered a way to prospect for ores. This tool only has a chance at finding the ores in a chunk. If you are clever, you can use it to locate ores.\n\nUnfortunately, the tech to make it repairable or rechargeable doesn't work yet, so you'll have to make a new one each time it breaks. It does work better at higher tiers and lasts longer with better materials.\n\nAnd since it doesn't make a convenient book like the seismic prospector, you'll have to keep track on your own where the ores are found.\n\nIt can be hard to choose a good material for the Basic Prospector. Here are some good choices for you, the size searched, and their durability:\n\nArdite 5x5 - 4500\nDamascus 3x3 - 5600\nVanadiumsteel 3x3 - 8400\nVibrant Alloy 5x5 - 17700\nShadow 5x5 - 36000\n\nEach chunk successfully scanned costs 100 durability. Each failed chunk costs 25. The average for MV is ~55 per chunk when scanning a large area.\n\nGood luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1483,"preRequisites":[1410,1584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MalformedSlush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Really op food","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You hear about Dezil's Marshmallow a really OP food which can be found from time to time in chests. What about I show you a way to cook this stuff yourself?\n\nAfter you mastered the flowing spirit in the dream dimension put a bit of flour, sugar, salis mundus and draconium dust in your IV Mixer. \nThe recipe starts when you give flowing spirit to it and gives you malformed slush, a very stinky and disgusting piece of...something. \n\nBe careful you'll get blindness II when holding it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2881,"OreDict":"foodFlour"},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":14,"OreDict":""},{"id":"minecraft:sugar","Count":2,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":2,"Damage":0,"OreDict":"dustDraconium"},{"id":"witchery:bucketspirit","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MalformedSlush","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:bucketspirit","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1484,"preRequisites":[1483],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Uncooked Slush","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to form this slush a bit. Use a Mashmallows form and press it with your iv forming press. Remember to sterilize it after using.\n\nBe careful you'll get bindness and hunger II."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MalformedSlush","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MarshmallowFormMold","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MarshmallowForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1485,"preRequisites":[1150,539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Carbon"},"Damage":1503,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBrittle but hits like a sledgehammer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Carbon crossbow limb is 1/3 the durability of the magnalium limb, but hits a lot harder and shoots a little faster. But you'll want to carry around a tinker table and extra ingots to repair it constantly, and watch that you don't break it in the middle of combat!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Carbon"},"Damage":1503,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1486,"preRequisites":[1484],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowing Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is heating up your Marshmallow in a Electrc Blast Furnace at 4500k whit some radon gas and make it glow.\n\nNow you get a Paralysis II effect in addition to the others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""},{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6098,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1487,"preRequisites":[1486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cooling your Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In the next step you cool your glowing Mashmallows in an HV Vacuum Freezer to make it more stable.\n\nYou still get Weakness II and Nausea II."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:epicbaconItem","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1488,"preRequisites":[1487],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dezil's Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In the last step you need to infuse your Marshmallow with some epic food in the thaumcraft infusion altar. Before you can do it you need to unlock the research.\nWarp will be added."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:epicbaconItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:deluxechickencurryItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1489,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32655,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lNow you realy gonna hate this 1-4 in LuV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in LuV. Go and craft one of each with your new Assembly Line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32655,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1490,"preRequisites":[1489],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32695,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lNow you realy gonna hate this 5 and 6 in LuV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32695,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1491,"preRequisites":[86,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lHSSG","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make Tungsten Steel upgrade your Electric Blast Furnace with new Coils you are able to make HSS-G Ingots. This ingot becomes very important in LuV tier.\n\n§4HSS-G is made out of tungstensteel, chrome, molydenum and vanadium dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1492,"preRequisites":[942,97,1549],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:MU-metatool.01","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plunger 2.0 The Hand Pump Replacement","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What? Lost your hand pump already? Well here is a replacement. Well sure it costs a few coins too, don't be such a fumble fingers next time! What do you think I am, a hardware store?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1493,"preRequisites":[213,1412,215,1491,1413,1414],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lTier 7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"LuV-Level. You will need chrome for machines. Suggested planets and moons to visit: Jupiter's Moon Io, Venus and Mercury. Machine parts will now require an Assembling Line - Check Multiblock Goals for details."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:venusblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1494,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lStainless taking too long?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time for a second blast furnace! \n\nYou can make ingots faster 3 ways - better coils, higher tier energy hatches, or adding more furnaces. It's probably time to add a second EBF to your base. EBFs can share walls and input/output hatches, but not mufflers or energy hatches.\n\nRemember pollution will be very high with two EBFs active at once!\nWatch out for high pollution effects. Use the best mufflers available and don't place the EBFs in the same chunk as farmland or other high pollution machines like pyrolyze ovens and large boilers.\n\nYou can use whatever coils you have lying around, but you might want to start searching for Mica if you haven't found any yet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":92,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32529,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":172,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1495,"preRequisites":[1204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:command_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lAll alone in the night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are playing single player survival, updates mean having to reload default quests. Use this block to do it for you without having to enter creative mode - you don't lose progress, but you'll have new quests to complete!\n\nSorry, no rewards, other than the satisfaction of knowing it's you versus the world. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1496,"preRequisites":[28],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lHow the heck do I find ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GregTech ore generation is based on veins. Veins are centered on orecenters, based on the chunk number. To find the chunk number, hit F3. In the X and Z lines you will see numbers like\nc: 3 (14)\nc: -2 (1)\n\nThe 3,-2 is the chunk's address. Ignore the negative sign. Now, the orecenters are located at 3N+1 chunks. So, 4,7 is an orecenter. 10,16. -22,19. Etc. \n\nProtip: to find out if a number is divisible by 3, add the digits and see if the sum is divisible by 3. So 86 = 8+6 = 14. So you need to go down 1 chunk or up 2 chunks so that you are on a 3N+1 chunk.\n\nFor reading all the way, I'll give you an ingot of iron."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1497,"preRequisites":[1496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:gold_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lDigging deeper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you know where to dig, dig all the way down to bedrock to find if there is a vein located there.\n\nNow, what if you know what you want but not where to find it? Our fancy bartimausnek developer has added a nifty feature to NEI that shows you where to find ores! Simply look for the oreblock in NEI, and click on it for info on where to find that ore.\n\nMake sure you look for the Gregtech variety of the ore."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"amount":1,"rewardID":"bq_standard:xp","isLevels":1,"index":0}]},{"questID":1498,"preRequisites":[1497],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:coal_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA dimension by any other name...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use this table to decode dimension names\n\nOW - Overworld\nNe - Nether\nTF - Twilight Forest\nEN - End\nVA - Vanilla End Asteroids\nEA - End Asteroids\nMo - Moon\nMa - Mars\nAs - Mars Asteroids\nBC - Barnard C\nBE - Barnard E\nBF - Barnard F\nCa - Callisto\nCA - Centauri A\nCe - Ceres\nDe - Deimos\nEn - Enceladus\nEu - Europa\nGa - Ganymeade\nHa - Haumea\nIo - Io\nKB - Kuiper Belt\nMM - Makemake\nMe - Mercury\nMi - Miranda\nOb - Oberon\nPh - Phobos\nPl - Pluto\nPr - Proteus\nTE - Tau Ceti E\nTi - Titan\nTr - Triton\nVB - Vega B\nVe - Venus\nDD - Deep Dark/Underdark\n"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1499,"preRequisites":[91,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":541,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChemical bath","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wait, what? You want more byproducts from your ores? A cheaper way to make paper? Well, the chemical bath is perfect for you! \n\nYou'll have to provide liquids like mercury to extract different products like nickel, silver, copper, and platinum from ores. \n\nFor paper you'll only need some water and wood pulp. Maybe you'll find more uses for it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":541,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1500,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"questbook:ItemQuestBook","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBetter Questing?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For quests to save properly, you must be online and logged into your Mojang account. Sorry, it's a limitation of Better Questing."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1501,"preRequisites":[1500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:blockCampFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBackup your stuff...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Single player? Please install your preferred backup mod, or use the command line to backup your game. Not sure which to use? §6AromaBackup for 1.7.10 §rworks pretty well.\n\nRemember though Journeymap and Thaumcraft Node Tracker information isn't included with AromaBackup, so you should backup your journeymap and tcnodetracker directories after exploration."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1502,"preRequisites":[166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockWirelessCharger","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTesla would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of sticking your EnderIO items in the capacitor bank to charge it? Time to make a wireless charger."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockWirelessCharger","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1503,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lNobody wants an explosion...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...right? So when building multiblocks, make sure you\n\n1. Don't cross chunk boundaries with the multiblock.\n\n2. Don't rely on resources coming from outside the chunk to prevent explosions. In other words, make sure you source your water locally.\n\nGood luck."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1504,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ifu:ifu_buildingKit","Count":1,"tag":{},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§e§k§l§r§3§2§lDivine rod of the gods?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ore finder rod takes some of the tedium out of finding an ore. You'll need to find some first to make it, but once you have it you can use ore blocks to find more ore. It only tells you if that specific ore is nearby. Later you will want to return with better digging tools and check every spot.\n\n§4Be sure to use your NEI skills to figure out which ore block is the best choice for your needs.\n\n§4Other basic ore blocks can be purchased from the Coins tab.\n\nTo use, shift click when looking at the ground to open inventory and put the ore block into the slot.\n\n§rAs you get close, you will see and hear a response from the ore finder tool. You will see the durability bar change when it discovers a match. Watch out - it will respond to small ores as well as normal ores so Lapis and Redstone you will want to wait for large signal before digging. If it detects a large quantity of the ore you're looking for the wand will flip upside down completely and fill the durability bar. If you play with your sound on you will hear an obvious sound to notify you as well. The wand works in both your inventory and hotbar and you don't need to be actively holding it, though you get style points if you are holding it.\n\n§4Also, because of the magical nature of the wand, the ore is stored with the player, not the wand. If you want to give the wand to someone else, please remove the ore first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"woodStick"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},{"id":"minecraft:redstone","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"ifu:ifu_buildingKit","Count":1,"tag":{},"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":1,"Damage":35,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":937,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":870,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":834,"OreDict":""},{"id":"minecraft:clay","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1505,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNot enough items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More like too many items!\n\nHere are some tips for using NEI.\n\nWhen you have your inventory open, you can type the search terms in the text bar. Make sure your GUI size is set correctly, or you won't be able to see it. Double-click the bar to highlight any matching items in your inventory. Handy for searching that obsidian chest!\n\nEven better, you can use T to search nearby inventories, which will emit some particles. We have also provided the special Y command to look for a machine in the world, in case you've forgotten where you placed that Advanced Circuit Assembler.\n\nO will make the NEI information hide."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1506,"preRequisites":[1505],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNEI is more powerful than you imagine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"NEI has some really nice advanced features too.\n\nClick on an item to see the recipe to create it, and press Backspace to go back to the previous recipe. \n\nHold Shift to stop the oredict toggling items, and to show the oredict entries for the current item under your cursor.\n\nSearch using #oredict to find items that match that oredict; for example, #dyewhite will list all white dyes.\n\nSearch using @mod. to find all items from that mod; for example, @mod.gt++ will list all GT++ blocks.\n\nUse * (asterisk) as a wild card. For example large * fluid pipe will show you all the large fluid pipes.\n\nIt has more advanced features, you should check the web for details."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1507,"preRequisites":[36,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:item.BiblioClipboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lMaking a list, checking it twice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As your base grows, you're going to have a dozen different long term goals each with many steps. Build a clipboard to keep track of what you need to do."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.BiblioClipboard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1508,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:CraftingStation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA better crafting table","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of your stuff falling out of your crafting table every time you walk away? This fancy table from Tinker's Construct has slots to hold the items in your recipe. \n\nYou can use it to upgrade tools with 8 modifiers at a time. Very handy for additional speed or looting!\n\nWhen it is placed next to a vanilla chest, it will even show the chest's inventory in the crafting window. Single or double vanilla chests only please.\n\nCut it again for a sleek, low profile version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:CraftingStation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"harvestcraft:plumjellysandwichItem","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1509,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemTravelStaff","Count":1,"tag":{"Energy":250000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTravelocity!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A staff of traveling can get you really moving around your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemTravelStaff","Count":1,"tag":{"Energy":0},"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1510,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"naturescompass:NaturesCompass","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBiomes everywhere, but not the one you want?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of searching all over the map for that Bamboo Forest or Tropical rainforest? Desperate for clay dust and need to find a Canyon biome?\n\n§4Nature's compass will lead you to the biome you are looking for, if it is within range."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"naturescompass:NaturesCompass","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1511,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:habitatLocator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Humid and warm?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stop guessing what the humidity and temperature are for your biome. Use the habitat locator to get a reading on your current climate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:habitatLocator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1512,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Put the drones in a jar and shake it up","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you get good effects from your bees, instead of just trashing the excessive drones, you can put them in collector's jars to get the effects anywhere in your base.\n\nHealing? XP? Poison?\n\nThe collector's jars can even be piped or connected to a conveyor so that drones last a long time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1513,"preRequisites":[1114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameMagic","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alternatively, you can try going through the Apimancy tree of your Thauminomicon to make Magic Frames. They're the core of magically endowed frames. They also have a special ability - no maximum production chance. Normal frames are ineffective once you reach 10x production but with magic frames you can keep going - just watch out, above 16x you'll be working your bees so hard they have a chance to degenerate into ignoble, or die outright. Frames to lower genetic decay will lower chances of this happening."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameMagic","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:frameMagic","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":1514,"preRequisites":[1114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.cocoa","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chocolate frame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The chocolate frame can be used to increase production, but reduces lifetime. A shrewd beekeeper can use this to speed up mutation by using 3 in an apiary to kill off queens quickly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:hiveFrame.cocoa","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.cocoa","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":26,"OreDict":""}]}]},{"questID":1515,"preRequisites":[1514],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.soul","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are the bees buzzing, or screaming?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Soul frames don't shorten the life of the bee as much as chocolate frames, but they greatly increase the chances of a mutation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:hiveFrame.soul","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.soul","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":1516,"preRequisites":[1513],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameOblivion","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bees buzzing beyond the dark","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If even the soul frame takes too long for your taste, the oblivion frame will destroy a bee in a single bee tick (27s). Be careful using more than one, there are rumors it might harm your princesses..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameOblivion","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":1517,"preRequisites":[932],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"avaritiaddons:CompressedChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNeed a place for all those ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about a compressed chest from Avaritia? This 243 slot chest will hold contents when broken, so no need for slow-inducing dolly!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"avaritiaddons:CompressedChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1518,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:sprinkler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll the crops you could want","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of applying bonemeal or fertilizer by hand? A sprinkler can take water and boost your crop growth rate. Bonemeal or fertilizer will make it work even faster.\n\n§4Note that this sprinkler does not work with IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:fertilizerCompound","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"OpenBlocks:sprinkler","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11364,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1519,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32405,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lPortable tanks too small?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about large steel fluid cells instead? Each holds 8, and they can stack to 64. Unfortunately, you have to load and unload them using GT machines, but hey, 512 buckets in a single slot is pretty good!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32405,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1520,"preRequisites":[1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLarge Aluminium Fluid Cells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"512 buckets in a stack not cutting it? Aluminium cells can hold 32 buckets per cell, and stack to 64. 2,048 buckets in a single stack? That's half a supertank!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1521,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":643,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSeparating gems from the dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sifter runs so slow, you should make an HV sifter to get gems faster. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":643,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1522,"preRequisites":[86,1410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNiobium-Titanium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Niobium-Titanium becomes more important in LuV Tier. It needs a EV Mixer to mix and an Electric Blast Furnace with Tungsten Steel heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2047,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11360,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1523,"preRequisites":[1504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ifu:ifu_buildingKit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Can't find those ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having trouble locating some of the basic ores? Trade in some coins for oreblocks to use in the Ore Finder Wand.\n\nIf you are clever, you can use one oreblock to find a vein containing another oreblock to use to find another vein. For example, if you choose Redstone, you can use that to find Cinnabar, which can be used to find Thaumcraft Aspect Shard ores in the Twilight Forest. Experiment and find some combos!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":60,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":1,"Damage":937,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":35,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":870,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":834,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":500,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":526,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":530,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":523,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":535,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":57,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":936,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":935,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":838,"OreDict":""}]}]},{"questID":1524,"preRequisites":[951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1650}},"Damage":1602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are in MV and have an EBF, you can make new bolts with vanadiumsteel-tipped magnalium. Your enemies will tremble at your might.\n\nCheck \"fletching\" under NEI for fletching options.\n\nGood hunting!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11371,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1650}},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1525,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1573}},"Damage":1635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBest bolts?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That meteoric iron you found on the moon, when sent through the EBF, turns into this amazing meteoric steel, able to keep a fine edge. Put some on an Energetic Alloy tool rod to make an awesome bolt. Your next bolt you'll have to figure out yourself.\n\nFletching left as an exercise for the reader."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1573}},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1526,"preRequisites":[990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§k§r§9§m§l§r§m§n§o§r§9§lBest crossbow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic alloy has proven to be an amazing material. It's light weight and high stiffness makes it perfect for a crossbow limb. It is slightly slower to draw but still has amazing stopping power with its very high bolt speed. Durability is much improved over a carbon limb. \n\nThe material would also make an excellent bolt body. Perhaps you will find a suitable tip to match?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":52,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1527,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockReinforcedObsidian","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCaging a demon - Wither killing chamber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever wanted to trap a wither but the only option was non moveable bedrock? Now that you made dark steel you can get reinforced obsidian which is wither-proof. Useful for hand killing and even automation once you get a powered spawner supplying you with wither skeleton skulls.\n\n§4Hint: Unlike vanilla obsidian reinforced obsidian CAN be moved by pistons which might come in handy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockReinforcedObsidian","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1528,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPersonal Chunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's craft some personal chunkloaders. 3x3 chunks are loaded. You need coins or ender pearls to power the chunkloader. \nEnder pearls power personal anchors for 4 hours per pearl, and 1 hour in passive anchors . Personal anchors can also be powered with ender fragments for 1h. \n\nPersonal anchors are loaded once the owner visits, and stays loaded while the player is logged in. \nPassive anchors are loaded once the owner visits, and stays loaded until the server resets.\n\nIf you are playing single player or on a private server, you can cheat in admin anchors or use FTB Utilities to control chunkloading."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1529,"preRequisites":[770],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your hv assembler you can craft a world anchor.\n3x3 chunks are loaded. You need coins to power the chunkloader. \nPersonal anchors can be powered with ender pearls for 4 hours per pearl, passive anchors 1 hour per pearl. \n\n§4World anchors are always loaded, even after a server reset."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChunkloaderTierII","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1530,"preRequisites":[1454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:ceresblocks","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ceres Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours and hours you will find a Ceres dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 4 rockets.\n\nThis will open the Planets Venus and Mercury and the Jupiter Moon Io."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ceresblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier4Key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1531,"preRequisites":[1532],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The fourth tier schematic circuit uses an elite circuit and a heavy duty plate tier 4 and the data stick in a iv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier4","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":4},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1532,"preRequisites":[80,1530,1533,1534],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 12 tier 4 heavy duty plates out of tier 3 plates and compressed ice plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":12,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceCompressedPlate","Count":66,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyAlloyIngotT4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceCompressedPlate","Count":12,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1533,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":389,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCallisto Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Callisto Ice is the material you need for Tier 4 Rockets. Look at Y 40-60."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Callisto","range":-1,"index":0,"dimension":45,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":389,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1534,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":390,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§b§lEuropa Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ledox is the material you need for Tier 4 Rockets which can be find on Europa. Look at Y 55-65."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Europa","range":-1,"index":0,"dimension":35,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":390,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1535,"preRequisites":[1532,1531,1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After weeks of hard work and a thousand stacks of iTNT your fourth rocket is finally ready. But before you can go to Io, Venus or Mercury you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":6,"Damage":2,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":128,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1536,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:ingredient","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lI ain't afraid of no ghost!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've found a use for the Ectoplasm you can collect from spirits of the dead.\nIt makes a very useful glass that you can walk on, but mobs cannot. However, they think they can! So you can use this to create a moat around your base that drops mobs to the death in various ways, or just to shuttle them off somewhere else. Separate babies from mothers? Use it in a mob farm? Capture pigmen walking into the Overworld from you Nether portal? So many possibilities!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:ingredient","Count":1,"Damage":3,"OreDict":""},{"id":"minecraft:glass","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"RandomThings:spectreGlass","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"harvestcraft:stuffedeggplantItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1537,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":65536000,"SecondaryMaterial":"Neutronium"}},"Damage":120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBlack and Decker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of having to replace tools all the time? Now that stainless steel is available, it's time to make some electric versions of the screwdriver and wrench! Charge them up like a battery, and they will last much longer than normal versions of the tools.\n\n§4You can use lithium batteries, or if you are on a budget cadmium batteries instead. \n\nLater Vibrant Alloy will make excellent tools with great durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":120,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":150,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32518,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1538,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":828,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCeres Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sheldonite, Platinum and Palladium you can found on Ceres. Look at Y 5-30.\nYou can get also Iridium out of a high tier material you need later."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Ceres","range":-1,"index":0,"dimension":42,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":828,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":85,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":52,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1539,"preRequisites":[1413],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32725,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Star","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The emitter and the sensor in iv need a quantum star to craft. Put your netherstar in a hv chemical bath and infuse it with radon gas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:nether_star","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32725,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":9,"Damage":1,"OreDict":""},{"id":"miscutils:dustRadium226","Count":8,"tag":{"TickableItem":{"maxTick":90000,"CreationDate":422439,"Tick":0,"isActive":1}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1540,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":908,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnesite the source of Magnesium can be found in Twilight Forest at Y 10-40. Fullers Earth can be found on the Overworld at Y 50-70. Marble dust can be used for magnesium dust also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":908,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":928,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1541,"preRequisites":[721,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCropnalyzer","Count":1,"tag":{"uid":-73442049,"charge":100000,"Items":{}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyze your crops","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The cropnalyzer is a powered tool used to analyze IC2 crop seedbags. Charge it by placing it in an MV machine; recommended to put an MV battery in it as well to keep it full. To fully analyze a seed bag, you will need to put it through the cropnalyzer four times. If the crop is already planted, it is better to analyze it with the portable scanner instead of breaking it just to scan it - you have a chance of losing the seed every time you break it.\n\nThe cropnalyzer also has a feature called the IC2 Crop Calculator, where you can find the mix of outputs of breeding together any crops. To access the calculator, hit the IC2 side inventory key while holding the cropnalyzer. You can select any crop available and discover which crossbreeds have high chances.\n\nYou can choose up to four crops to breed together. Then click \"process\" and the bottom row will show the possible crossbreeding outputs, and their weights. You can use the + and - gui buttons to scroll through the row(s) of crops. You can also use a button in the GUI to sort the rows by tier or weight. You can invert the sorting by hitting the sorting button while holding shift.\n\nWhen trying to get a specific crop, you generally want to maximize its weight. But more specifically, you want to maximize the proportion of its weight out of all the weights. To determine the best crops to breed, look at their attributes. Parent crops that share more attributes with a crossbreed increase its chances. This means there are no benefits to breeding 3 or 4 identical crops together instead of 2, since all weights are increased evenly. \n\nUse the crops guide at https://tinyurl.com/GTNH-Crops for more details.\n\nTry a variety of combinations to get the crops you want. Often, breeding together two of the same crop is a surprisingly good option or even the best one. A large field of stickreeds has a good chance at making lots of valuable crosses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropnalyzer","Count":1,"tag":{},"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":4,"tag":{"owner":"berriespp","name":"Glowflower","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":200000},"Damage":32529,"OreDict":""}]}]},{"questID":1542,"preRequisites":[721,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crop automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crop-Matron is a LV machine that will monitor crops in a 9x9x3 area and automatically apply fertilizer, Weed-EX, and Water as needed. Water can be pumped in directly or use IC2 Universal water cells, normal cells aren't returned when they are used.\n\nThe Crop-Matron is rainproof, but make sure you cover up your power supply (you might find a fancy way to do this), or use an LV battery. A Lithium Ion will last about 2 hours.\n\nUse Weed-EX sparingly, since overuse will affect crops negatively. \n\nTilled dirt still requires a nearby water block to be hydrated as the Matron will only water the crop, not the soil. Try putting a lily pad on top so it isn't annoying to walk on, or using Garden Soil instead.\n\nYou'll need Stainless Steel to make the Crop Harvester.\n\nAs an alternative to the Crop Matron and Crop Harvester, you can make the Forestry Multifarm. It can also pick crops from cropsticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":2,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMachine2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemWeedEx","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemFertilizer","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1543,"preRequisites":[1273,1542],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeedEx","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed Ex","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weed-EX is used to prevent the growth of Weeds on empty Crop blocks at the cost of crop quality. Damage to the crop's quality is permanent and cannot be reversed, aside from complete removal.\n\nUsage:\nWhile holding Weed-Ex, right-click on a Crop to apply it. It can also be placed in a Crop-Matron to automatically apply it to your crops. Overuse will reduce crop quality, capping their stats at 10."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemWeedEx","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spider_eye","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32402,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1544,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fish","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFish Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make some bio diesel you need seed oil or fish oil and mix that with ethanol or methanol. Seeds give seed oil and fish produce fish oil when placed in a fluid extractor. \n\n§4There are rumors of a weird crop in the shape of a fish...\n\nOtherwise look under Fishing Farming Cooking tab for fish catching options. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30711,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1545,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1158,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to ore drill!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Auto Miners are nice but you're going to reach a point where you will want MOOOOOOOOOOOOORE ores. This multiblock will help with that. It will also pre-macerate your ores and give you a little bonus crushed ores as well.\n\nHigher tiers of power will drill faster. You need to upgrade the energy hatch corresponding to the power tier. \n\nLater you can upgrade the ore drilling plant so it extracts from more than a 48 block radius. Each tier of the controller also gives 5 bonus fortune for small ores. At tier 3 you'll want to spread the wealth to multiple compressed chests!\n\nYou need mining pipes in the machine block and drilling fluid in the fluid hatch.\n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1158,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":15,"Damage":4401,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":72,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":82,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_drillingfluid","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1546,"preRequisites":[1504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRare ores","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you look for days to find Diamonds, Redstone, Tantalite, Certus Quartz or Mica?\n \nWell for a few mixes you can use different ores like Coal for Diamond Vein or Quarzite Ore for Certus Quartz Vein. Mica ore mix can be found if you have Cassiterite Ore (not the sand).\n\n§4Tetrahedrite in the nether can be found with copper ore."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1547,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPress all the things in MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the mv forming press you can make aluminiun iron plates for solar panels and a few rotors blades for turbines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1548,"preRequisites":[739],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Input chest for Ghetto ME System","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To be able to put items into the Ghetto ME system you need just a few additional pipes.\nThe Extraction pipe should be connected to the chest you want to take items from.\nInside the Extraction pipe you need to put the Item Extraction chip, and configure it to blacklist if you want it to take all items from the chest.\n\nThe Routed Junction pipe is needed so the items inside the pipes know which direction to take, without this they will just fly around inside the pipes without knowing where to go.\nYou might also need some additional item transport pipes depending on your setup."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1549,"preRequisites":[942,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"miscutils:MU-metatool.01","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPlunger 2.0 The Hand Pump","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The new hand pump can remove fluids out of your machine input slots. The old plunger removes the fluid - only the hand pump can store it and drain it to a tank.\n\nUse your items in an LV assembler to craft your pump token, and then again to make the hand pump.\n\nWhen you tier up your assembler, you can make better hand pumps, up to EV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32700,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1550,"preRequisites":[109],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More seed types","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This fancy addon allows your cart to plant/harvest more seed types. If you got an MV+ centrifuge you might want to look at glow flowers for some free redstone and gold."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1551,"preRequisites":[112,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockRubSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More tree types","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The standard wood cutter can only chop down (and replant) vanilla trees. If you want to use saplings from other mods however this addon will come in handy. Who knows - maybe you are tired of clicking rubber trees with a treetap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":88,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1552,"preRequisites":[108],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockDistributor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Further automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to load and unload a lot of different items from your cargo manager the pipes can get quite messy. The external distributor is a block you can place next to your cargo manager and it will help you to access different slots which you can specify in its GUI. Quite handy for pumping items in and out!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockDistributor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1553,"preRequisites":[108],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockAdvDetector","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced detector rail","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a cargo manager you need a specific rail so that your cart can interact with it. Just place it next to the cargo manager, depending on the color of the side it is on you will have to adjust settings in the cargo manager GUI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockAdvDetector","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1554,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Exhale of the horned one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Exhale of the Horned One is an ingredient used in many recipes. It is acquired with a random chance when burning Oak saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1555,"preRequisites":[334],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutate your saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mutandis is a mutagen that is used by witches and warlocks to mutate plants into other species. Simply use Mutandis on small plants, grass, flowers, saplings, etc. and it will be randomly converted to another plant. Mutandis cannot mutate multi-stage plants like wheat and cactus.\n\nMutating plants is the only way to acquire Rowan, Hawthorn and Alder saplings.\n\nMutandis has another interesting property when crafted with raw meat. It seems to mutate it into another type of raw meat. It even seems to have an effect on Rotten Flesh.\n\nSome recipes require Mutandis as an ingredient.\n\nMutandis can be upgraded to Mutandis Extremis to have an effect on a wider variety of plants.\n\nMutandis is made in a Witches' Cauldron using Mandrake Root, Exhale of the Horned One and an Egg."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:egg","Count":8,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":22,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":48,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1556,"preRequisites":[1554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":32,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Use some Mouthwash of Olympus!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Breath of the Goddess is an ingredient used in many recipes. It is acquired with a random chance when burning Birch saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":32,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1557,"preRequisites":[1555],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchsapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutated saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rowan saplings grow into Rowan trees when planted. Rowan trees can be harvested for Rowan logs and Rowan leaves (which yield more Rowan saplings). Rowan saplings cooked in an oven yield Wood Ash, and have a chance of producing a Whiff of Magic.\n\nRowan saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random it may take a few goes before Rowan saplings appear.\n\nHawthorn saplings grow into Hawthorn trees when planted. Hawthorn trees can be harvested for Hawthorn logs and Hawthorn leaves (which yield more Hawthorn saplings). Hawthorn saplings cooked in an oven yield Wood Ash, and have a chance of producing Odour of Purity.\n\nHawthorn saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random it may take a few goes before Hawthorn saplings appear.\n\nAlder saplings grow into Alder trees when planted. Alder trees can be harvested for Alder logs and Alder leaves (which yield more Alder saplings). Alder saplings cooked in an oven yield Wood Ash, and have a chance of producing Reek of Misfortune.\n\nAlder saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random, it may take a few goes before Alder saplings appear."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:witchsapling","Count":1,"Damage":2,"OreDict":""},{"id":"witchery:witchsapling","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":16,"Damage":14,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1558,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Whiff of Magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Whiff of Magic is an ingredient used in many recipes. It is acquired with a random chance when burning Rowan saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1559,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Odour of Purity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Odour of Purity is an ingredient used in many recipes. It is acquired with a random chance when burning Hawthorn saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1560,"preRequisites":[483],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:seedsbelladonna","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Witchery Seeds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Witchery seeds, use a hoe on grass blocks away from water. To open the rest of the questline, you will need to do Thaumcraft quests and research the Witchery tab in the Thaumonomicon.\n\nAccording to the legend, when the root of the Mandrake plant is dug up it screams and kills all who hear it. This is only partially true. A fully grown Mandrake may scream causing immense discomfort to those around. This is why it is best to harvest the Mandrake root at night when the plant is more likely to be dormant. Mandrake is grown from Mandrake Seeds which may be obtained by breaking tall grass, or by breaking a partially (or fully) grown Mandrake plant.\n\nBreaking a fully grown Mandrake plant will either yield Mandrake Root or the Mandrake may awaken and cause all sorts of mischief (and pain to the ears!).\n\nBelladonna seeds can be planted and eventually grow into the multistage belladonna plant. The fully grown belladonna plant can be harvested to obtain more Belladonna seeds and a Belladonna flower.\n\nSnowbell seeds can be planted and eventually grow into the multistage snowbell plant. The fully grown snowbell plant can be harvested to obtain more Snowbell seeds, snowballs and occasionally a Icy Needle.\n\nWater Artichoke seeds can be planted and eventually grow into the multistage Water Artichoke plant. The fully grown Water Artichoke plant can be harvested to obtain more Water Artichoke seeds and a Water Artichoke Globe.\n\nWater Artichoke seeds can only be planted on still water blocks.\n\nGarlic is a plantable crop that can be used to make tasty food, and to deal with vampires. Garlic can be obtained by breaking tall grass, although it has a very low drop chance. It may be planted on tilled farm land, and will grow in five stages. When full grown the plant may be harvested for up to three dropped garlic bulbs. Which may either be replanted, or used in a crafting recipe.\n\nGarlic bulbs can be used to make meaty stew, a particularly nourishing meal. It is also the main ingredient in making a Garlic Garland, a useful tool in warding off vampires. Finally, garlic can be used by witches in a Witches' Cauldron to make a vampire Weakening brew, and by Witch Hunters, to make vampire resistant armor.\n\nWolfsbane seeds can be planted and eventually grow into the multistage Wolfsbane plant. The fully grown Wolfsbane plant can be harvested to obtain more Wolfsbane seeds and the Wolfsbane flower.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:seedsmandrake","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedsbelladonna","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedssnowbell","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedsartichoke","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:garlic","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedswolfsbane","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:wheat_seeds","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1561,"preRequisites":[1559],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purified Milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Purified Milk is an antidote in a similar way to normal milk, although it only has a chance of working and will only remove a single status effect. It is advantageous because it can stack to 64 items.\n\nPurified Milk is an ingredient in the Brew of Sleeping."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},{"id":"witchery:ingredient","Count":3,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":31,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":34,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":36,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1562,"preRequisites":[336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":3,"Damage":75,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Brew of love","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Love is a throwable potion that causes farm animals and villagers to get their luvin' on. When used on animals the effect is the same as if all hit animals were fed and their breeding cooldown is reset.\n\nIn the case of villagers, two (or more) must be hit by the same brew.\n\nThe Brew of Love may be thrown at a group of two or more enthralled zombies (created with a Brew of Raising or enthralled with the Infernal Infusion power), which will cause pairs of them to produce a baby zombie. It will also cause them to become a zombie villagers. Zombie villagers can be turned back to villagers either using the normal method, or by casting a Rite of Fertility.\n\nThe Brew of Love is created in a kettle using the recipe found in the book Witchcraft: Brews & Infusions. Into the pot, throw a Rose, a Golden Carrot, Whiff of Magic, a Lily Pad, a Water Artichoke Globe and Cocoa Beans.\n\nWear a Witches Hat (and/or robes) while brewing to get more brews than just three."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":3,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":75,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1563,"preRequisites":[1562],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sleep well!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Sleeping is the normal way for a Witch to enter the Spirit World. \n\nNeedless to say an unprepared witch will almost always experience a nightmare when they head to the spirit world this way. \nThe witch must drink the brew and then will fall into a deep sleep, leaving their body and items behind and entering the world of spirits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":75,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":105,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""},{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1564,"preRequisites":[1563],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Spirit world nightmare","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The spirit world is an alternate reality that mirrors the Overworld in topography. When people dream they often end up in the spirit world without realizing it (often appearing as one of its many denizens). Powerful witches can create Brews of Sleeping that allow them to pass their awake consciousness into the Spirit World, leaving their bodies and gear behind.\n\nThe Spirit World is the only source of Wispy Cotton, Disturbed Cotton, and Mellifluous Hunger - the materials needed to make Dream Weavers. Also Brews of Flowing Spirit can only be made in the Spirit World.\n\nVery few things can pass into, or return from the Spirit World - keep this in mind when heading there (Icy Needle always stay in the inventory). Wispy Cotton, Disturbed Cotton, Mellifluous Hunger and Brews of Flowing Spirit can pass from the Spirit World to the Real World but not the other way.\n\nTwo important things to note: Circle magic does not function in the Spirit World; and Endermen cannot enter the Spirit World."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""}]}]},{"questID":1565,"preRequisites":[1106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nights not dark anymore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hardcore darkness is a pain but now the night will be bright. Be careful the mobs are the same."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":16,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:nether_wart","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1566,"preRequisites":[1564],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:grave","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Early bird gets the...nightmare?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You wake up very early because of the nightmares following you in this dimension.\n\nYou weren't prepared for it. Let get some stuff first and enter a second time to get some wispy/disturbed cotton.\n\nIf you haven't unlocked your Brewing stand yet, you have to do it first. Look in the Novice Thaumaturge tab for the quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":78,"OreDict":""},{"id":"minecraft:potion","Count":4,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:alchemyFlask","Count":1,"tag":{"CustomFlaskEffects":[{"durationFactor":2,"concentration":0,"potionID":104,"tickDuration":1200}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1567,"preRequisites":[1566],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":99,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wake up early","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your second visit was much more relaxing I guess. With night vision and flight potion you found a few wispy/disturbed cotton already. \n\nDisturbed Cotton can be spun into Tormented Twine. It cannot be replanted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8262,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1568,"preRequisites":[1558],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Attuned stone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An attuned stone, is a diamond that has been infused with natural magic in a fiery medium. Attuned stones can be used to link non-magical devices to the magical currents present in the world, and are one of the main ingredients in crafting distilleries, kettles, altar foci and poppet shelves.\n\nThe other main use of attuned stones is to act as a portable power source for circle magic rites, when a nearby altar is not available. To act in such a way, the attuned stone must first be charged with a Rite of Charging."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1569,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":35,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reek of Misfortune","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reek of Misfortune is an ingredient used in many recipes. It is acquired with a random chance when burning Alder saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":1,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1570,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tormented Twine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tormented Twine is spun from Disturbed Cotton using a Spinning Wheel. It is an ingredient used to make Dream Catchers.\n\nIt is made in a Spinning Wheel using Disturbed Cotton, String and Reek of Misfortune.\n\nAn Altar must be nearby to power the spinning wheel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":3,"Damage":35,"OreDict":""},{"id":"witchery:ingredient","Count":12,"Damage":99,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1571,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:distilleryidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Distillery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A distillery used by a witch is a construct used for distilling magical ingredients. It is unlike a normal distillery, because it heats itself using energy obtained from a nearby altar. The distillery must be within about 14 - 16 blocks of an altar to draw power from it - a small icon is shown in the interface if no power is available.\n\nOne or two ingredients are distilled together and will result in up to four resulting materials. A supply of clay jars is also needed to capture the some or all of the distillates.\n\nA distillery is crafted using Iron Ingots, Gold Ingots, an Attuned Stone and Clay jars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:distilleryidle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1572,"preRequisites":[1570,1574],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nightmare protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Nightmares has two effects, firstly it will add a short weakness effect to a player when they wake up from a good nights sleep. Secondly, it will corrupt all other nearby dream weavers so that they have the opposite effect. If the dream weaver is itself corrupted by another nearby Dream Weaver of Nightmares, it will add a short blindness effect instead of nausea.\n\nThe Dream Weaver of Nightmares can also be used to fend off nightmares when a Brew of Sleeping is drunk. Having the Dream Weaver nearby will reduce the chance of a nightmare to 50 percent (this can be decreased further by other means!)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":101,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16454,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16452,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1573,"preRequisites":[1571],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":30,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oil of vitriol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oil of Vitriol is an ingredient produced in a distillery by using Foul Fume and Quicklime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":28,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":16,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":24,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1574,"preRequisites":[1573],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diamond Vapor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond vapor is an ingredient made by distilling diamond in a distillery according to the recipe in the book, Witchcraft: Distilling, using a Diamond and Oil of Vitriol."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":30,"OreDict":""},{"id":"witchery:ingredient","Count":6,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1575,"preRequisites":[1556],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Foul Fume","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A foul fume (commonly known as sulfur dioxide) is an ingredient used in many recipes. It is acquired with a random chance when cooking vanilla food items (such as bread or raw meats) or jungle saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1576,"preRequisites":[1572],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Spirit world daytime","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing your Dream Weaver of Nightmares close to where you sleep and entering the Dream World again, you have a 50% chance now that it be will be Daylight. Try a few times if necessary."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Dream World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""}]}]},{"questID":1577,"preRequisites":[1576],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:somniancotton","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wake up later","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your third visit was much more relaxing I guess. In the daytime you can find a few wispy cotton, which are needed for futher progression. \n\nIt can be collected and replanted, but will only spread if planted in the Spirit World, on Dirt or Grass that is next to a pool of Flowing Spirit.\n\nPlanting Wispy Cotton nearby when using a Brew of Sleeping near to a Dream Weaver of Nightmares will further reduce the chance of a nightmare by 10 percent for each cotton plant (up to 2).\n\nWispy Cotton will remain in a players inventory when they return from the Spirit World.\n\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8229,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1578,"preRequisites":[1577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fanciful Thread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fanciful Thread is spun from Wispy Cotton using a Spinning Wheel. It is an ingredient used to make Dream Catchers.\n\nIt is made in a Spinning Wheel using Wispy Cotton, String and Odour of Purity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":36,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1579,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better Nightmare Protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Charm of Fanciful Thinking is the only way to protect oneself from some of the worst effects a nightmare can throw at you. It just needs to be in a player's inventory for it to function.\n\nA Charm of Fanciful Thinking is crafted using Sticks and Fanciful Thread."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},{"id":"minecraft:stick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1580,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Digging faster!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Iron Arm will add a mining speed boost to a player when they wake up from a good nights sleep. If the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a mining speed slowdown effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16456,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16457,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1581,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moving faster!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Fleet Foot will add a speed boost to a player when they wake up from a good night's sleep. \n\nIf the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a slowdown effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16458,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16450,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1582,"preRequisites":[1583],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hunger no more!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Fasting will add a boost to the saturation of a player when they wake up from a good nights sleep, essentially meaning they will not get hungry for the duration of the effect. If the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a hunger effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16421,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1583,"preRequisites":[1579],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mellifluous Hunger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mellifluous Hunger is an ingredient used in other recipes. It is dropped when a Nightmare is killed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8258,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1584,"preRequisites":[1593,1595],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":96,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion of flowing spirit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Flowing Spirit captures the essence of the Spirit World in liquid form. It can only be brewed in the Spirit World!\n\nThe Brew can be thrown at the ground and the liquid will burst out (the source block can later be picked up in a bucket). Standing in the liquid will have a minor healing effect for most creatures. Demonic or undead creatures will be weakened. Nightmares standing in the liquid will lose their invulnerability effect!\n\nHaving a pool of flowing spirit near a Dream Weaver of Nightmares will decrease the chance of a nightmare by 10 percent for each source block (up to 3)."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},{"id":"witchery:spanishmoss","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":22,"OreDict":""},{"id":"witchery:glintweed","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":96,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1585,"preRequisites":[338],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We need another oven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First of all you can't visit any other dim to get materials. Not the Twilight Forest, not the Nether or the End. Lets start with crafting a new oven and a stack of jars to start with some basic ingredients. For 500 Coins you can tranfer it to the Spirit Dim."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1586,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"More coins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second goal is to have a cauldron to make some mutandis but you need more coins anyways. \nYou have two options here - killing a few nightmares to get coins or selling some wispy cotton.\nYou need to switch a few times between dimensions to compress the coins first."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1587,"preRequisites":[1586],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Another Cauldron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After we have enough coins we can craft the cauldron and transfer it with 1000 coins to the spirit world."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1588,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSwordElemental","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Nightmares","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need more coins? Killing a few nightmares to get coins. "}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":100,"Name":"generic.maxHealth"},{"Base":1,"Name":"generic.knockbackResistance"},{"Base":0.35,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":100,"id":"witchery.nightmare","Victim":"","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":3847374037349003000,"Health":100,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":36378736087929,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"witchery.nightmare","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1589,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:somniancotton","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Wispy Cotton","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need more coins? Selling wispy cotton for coins."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"witchery:somniancotton","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1590,"preRequisites":[1587],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Dreaming mutandis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Go and find some chicken and eggs, brew some Exhale of the Horned One in your oven and plant some mandrake. Make a stack of mutadis to get some witchery tree saplings. Gravel hoes are good enough for planting stuff."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":55,"index":0,"dimension":0,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:egg","Count":10,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":10,"Damage":22,"OreDict":""},{"id":"witchery:ingredient","Count":10,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":60,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1591,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Exhale of the dreaming horned one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For later use do a few Exhale of the Horned One."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1592,"preRequisites":[1593],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Offerings in your dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For all your offerings you'll need an altar too. The spinning wheel needs it also.\n2000 coins are needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:arthana","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1593,"preRequisites":[1587],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kettle for the Spirit World","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A kettle is needed in the spirit world too. For a fee of 1500 coins you can transfer it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1594,"preRequisites":[1592],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"spinning your dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need the spinning wheel for the fanciful thread to finally make the Potion of Flowing Spirit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1595,"preRequisites":[1594],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fanciful Thread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fanciful Thread is spun from Wispy Cotton using a Spinning Wheel. It is an ingredient used to make the Potion of Flowing Spirit. This can be brewed only in the spirit world."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":36,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:ingredient","Count":32,"Damage":14,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:shears","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1596,"preRequisites":[1590],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Odour of Purity in dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For later use do a few Odour of Purity."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":64,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1597,"preRequisites":[1584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More Power now!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Intensity has two effects, firstly it will add a very short night vision effect (or blindness if corrupted by a nightmare) to a player when they wake up from a good nights sleep. Secondly, it will intensify all other nearby dream weavers so that they have either a stronger (but shorter lasting) effect or their duration is increased."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":96,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":104,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":8,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1598,"preRequisites":[897,895],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAvengers, assemble! 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to make the MV variant of the assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":1,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":212,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1599,"preRequisites":[114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:nodeUpgrade","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNode upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nodes can take many upgrades. For now, try building a World Interaction Upgrade. With it, you can setup simple autocrafting. \n\nPut a WIU in a transfer node attached to a crafting table. On the other side of the table, the 3x3 area is now treated as a crafting grid. Place items in inventories on the other side and if they make a valid recipe, the WIU will craft it. To speed it up, you will need to wait until HV for stainless steel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:nodeUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:BabyChest","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1600,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:reeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reed and resin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the first useful crops you'll get is Stickreed. It's fast growing, and can produce sticky resin and sugarcane (harvest before it reaches full maturity). It's also great for crossing with other crops to raise their stats.\n\nI'll trade you some fertilizer for 2 stacks of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:reeds","Count":128,"Damage":0,"OreDict":""},{"id":"IC2:itemHarz","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"stickreed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1601,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32530,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Metals from the Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With higher tier crops you can even increase your ore production. Mixing these fibers and leaves with crushed ores can quadruple your output, or you can convert them directly to tiny dusts. Later you can mix these materials to make purified ore with some UU matter.\n\nShow me your ability to get these metal crops and I'll give you some more fertilizer and some decent stat seedbags of rarer crops. Good source crops are essence berries or any of the oreberries.\n\nYou will need the proper oreblock beneath the crop to reach 100 percent maturity. For best growing conditions use dirt in between the oreblock and the crop.\n\nFor Ferru and Aurelia you will have to use a block of metal instead of a GT oreblock - a vanilla oreblock automined from the Twilight Forest will work. WAILA will tell you if the crop will accept the block you are using."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32530,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32527,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32540,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32528,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32503,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"aurelia","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Argentia","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Pyrolusium","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1602,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellHydrant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Water water everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Even though you have to plant crops near the water, they don't actually get any hydration unless you apply water manually. Make a hydration cell and use it on your crops to increase their growth speed. \n\nYou can recycle empty cells in a centrifuge."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellHydrant","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellHydrant","Count":2,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1603,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Feeling a little like a noob...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So could you grow me some essence berries so I can level up? You can plant the ones you get from the bushes, or breed up some.\n\nAs a reward, I'll give you a silly seed a friend of mine came up with. It will definitely keep you on your toes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TConstruct:oreBerries","Count":64,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Essence Berry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Goldfish Plant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1604,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32557,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I prefer to call it Canola","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This crop is a great source of seed oil for your biodiesel needs.\n\nYou can try getting it from dandelions, cocoa, potatoes or lemons."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Rape","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":35,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1605,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTerraWart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better than milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I haven't been feeling well lately. Would you grow me some Terrawarts? They are better than milk, since they only remove negative effects, and stack to 64. Really nice when fighting that Alchemist infernal!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"terraWart","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemTerraWart","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1606,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:foodBerries","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sweet tooth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcane or Reed not keeping up with your sugary needs? Sugar beets give 8 sugar per beet. Potatoes or carrots should easily give you sugar beets.\n\nHmm, now I want some candy. Give me some sugar from your beets. I'll share some with you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Sugar Beet","scan":4},"Damage":0,"OreDict":""},{"id":"berriespp:foodBerries","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:sugar","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:jellyBabies","Count":64,"Damage":0,"OreDict":""},{"id":"harvestcraft:honeycombchocolatebarItem","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1607,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":40,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Swipe swipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you get some large fields, collecting the crops can be a real hassle. Make yourself the GT scythe, Sense, to make it 5x5 = 25 times easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":40,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1608,"preRequisites":[103,1172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1386,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Annealead Copper Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some annealead copper cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1386,"OreDict":""}]}]},{"questID":1609,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1426,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Gold Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some gold cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1426,"OreDict":""}]}]},{"questID":1610,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1341,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Cupronickel 2x Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some cupronickel wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1341,"OreDict":""}]}]},{"questID":1611,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1442,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Electrum 4x Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some electrum wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1442,"OreDict":""}]}]},{"questID":1612,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":67,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Bastnasite, Monazita and Neodymium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A lot of EV machine parts need Neodymium. Rare Earth is a good source but on the Moon you can find a vein with pure Neodymium ore.\n\n§4The Bastnasite is a great source of fluorine as well.\n\nThe vein can be found on moon at Y Level 20-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":905,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":520,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":67,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1613,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":906,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSource of Nickel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Garnierite, Nickel, Cobaltite, and Pentlandite, sources of Nickel, can be found in the Twilight Forest at Y 10-40. In MV you'll need tons of Nickel for Cupronickel.\n\nFind a Greatwood and Silverwood to unlock the Tier 0 quest What is That...? to open the Novice Thaumaturge tab and start your Twilight Forest adventure.\n\n§4Note: You can find small quantities of Pentlandite ore in the Overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":906,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":827,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":909,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:epicbaconItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1614,"preRequisites":[897],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":911,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lChemical Dehydrator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dehydrate your grapes to raisins. Or make some Styrene, Benzene or Ethylene at MV. Either way, this device is a nice to have."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":911,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1615,"preRequisites":[766,943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"lightlysteamcracked.naphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSynthetic Rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some synthetic rubber like styrene-butadine rubber?\nI'll show you a way you can get it. All you need is an Oil Cracker and a Distillation Tower. There are different ways to do it and this quest is only an example of how you can make it.\n\nFist step is to cracking your Naphtha with steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":30739,"OreDict":""},{"id":"IC2:itemFluidCell","Count":40,"tag":{"Fluid":{"FluidName":"steam","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":40,"tag":{"Fluid":{"FluidName":"lightlysteamcracked.naphtha","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1616,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1467,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Silver 2x Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some silver cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1467,"OreDict":""}]}]},{"questID":1617,"preRequisites":[1615,768],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30646,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Distillation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next steps you need a few fluids/gases like Benzene, Ethylene and Butadiene. Run your distillation tower a few cycles to get it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30739,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1618,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1386,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Copper Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some copper cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1366,"OreDict":""}]}]},{"questID":1619,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber sheets? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""}]}]},{"questID":1620,"preRequisites":[1621],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30637,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lStyrene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Styrene you can use the chemical dehydrator or your large chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:Ethylbenzene","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30637,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30686,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1621,"preRequisites":[1617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:Ethylbenzene","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEthylbenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Putting Benzene and Ethylene in the Chemical Reactor gives you Ethylbenzene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:Ethylbenzene","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1622,"preRequisites":[1620],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2634,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRaw Styrene-Butadiene-Ruber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is Raw Styrene-Butadiene Rubber. Mix your Butadiene, Styrene and Air (you can use oxygen as well) to make the dust. \n\n§4An HV chemical reactor is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30637,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30646,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":30,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":2634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30637,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1623,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Let's get some pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First we're gonna need some pipes to connect everything. Do not use these pipes in junctions or the items will choose which path to go at random and you don't want that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass_pane","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1624,"preRequisites":[1623],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Junctions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So how do we deal with junctions then? We use these pipes. They are smart and they will send everything where it needs to go, so if you make a junction make sure you put this pipe there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30645,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1625,"preRequisites":[1624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interacting with stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That's all nice and all, but none of these pipes connect to chests and machines. What am I supposed to do with them?\n\nI'm glad you asked. You are going to need a special pipe for that. This is a pipe you need to use to connect to machines and chests. You'll have to set it up with chips that we'll make soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17086,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":308,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1626,"preRequisites":[1625],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you need to make some chips to use in those interface pipes. These ones do not do anything but are needed as a material for crafting the others.\n\nNow would be a good time to look into IC2 crops to get all the dyes you will need for your advanced chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1627,"preRequisites":[1626],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item responder chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip also stores items in connected invetory. It designates a storage for items that are set in the filter of this chip. They do not actively request for items they only serve as a destination for items to go. You can open up the menu by rightclicking the chip. There you can set which items should it accept and the priority. Items will go to item responders with higher priority first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1628,"preRequisites":[1626],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item overflow chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip stores the items in connecting inventory. It designates a storage for items that have no other place to go. It is strongly recomended to have a default storage for items in every pipe system, otherwise bad stuff can happen. Best used with some large chest (diamond one for example).\n\nIt seems to have some bugs though, so don't craft more than one without testing it first.\n\nYou might have to just use a normal item responder and add the items you want routed back to you overflow spot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1629,"preRequisites":[1627],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dynamic item responder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dynamic item responder chip behaves exatly like an item responder chip, but instead of you setting up which items it should accept, it looks in the chest what items are there and those items it will accept."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1630,"preRequisites":[1627,1628],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item extractor chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip will extract items from the connecting inventory. The extracted items then look for pipes with item responder chips where there's a free space they could go. If they don't find any they will go to the overflow default storage chest.\n\nIf you want it to extract everything leave the filter empty and set it to blacklist."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1631,"preRequisites":[1630],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item broadcaster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Item broadcaster is a chip that tells everyone in the pipe system what items it has in the connecting inventory and if anyone needs anything it will send it to them. Right click it to set the items it will transmit. If you leave it empty and set to blacklist it will transmit everything.\n\nDefinitely use one in combination with an item overflow chip on your default storage chest. That way overflow will end up in the chest, but will be useable by the rest of your system."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1632,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item stock keeper chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Item stock keeper looks at the connecting inventory and keeps item stocked in there. If the item is missing it will keep bothering item broadcasters every few seconds if they have the item and if they can send it. It's basically like an annoying child. \n\nIt is really useful though. Want a chest that will always have 64 cobble and dirt in it and if you take them they will get replaced? This guy is perfect for that job. It's great for keeping machines stocked. When stocking GT machines, the top left slot of the 3x3 is equal to the left slot of the machine. Want a chemical reactor that keeps 3 hydrogen cells ready to go to make ammonia, just add nitrogen? This is the chip for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1633,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crafting chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting chip does exactly what it says. It's not just for default crafting. You can use it with GT machines. Just put in the matrix that it should insert and the output is what it should extract. Great use for them is in combination with fluid canners or super tanks for filling cells. I would strongly recommend not overusing them. Wait untill you have access to AE2 for autocrafting stuff."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1634,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Request pipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This pipe let's you request stuff from the system. It shows all items that are avaible thanks to broadcast chips and even stuff that can be crafted thanks to crafting chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":32,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1635,"preRequisites":[1634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple storage system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to build a simple system to store your stuff. Place down the drawer controller and place the drawers around it. Connect the interface pipe to the drawer controller and put the dynamic item responder and broadcaster chips inside. Don't forget to set the broadcaster to transmit everything by leaving the filter empty and setting it to blacklist. Now you can request stuff from your storage and if you have a chest with a pipe and extractor chip everything you put inside will be sorted into the storage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1636,"preRequisites":[1632,1633],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:bucketOil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Desulfuring oil automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This quest line will show you how to automate desulfuring of oil products. Return here once you have unlocked the LV distillery quest and have some polyethylene plates."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1637,"preRequisites":[1636,547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Storing the fluids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First we should make some place to store all the fluids we'll use. 2 super tanks are required for this quest but you'll need one more later so it's better to build 3 right now.\n\nIf you're interested what they'll be used for:\n1 for oxygen\n1 for hydrogen\n1 for sulfuric acid"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":130,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1638,"preRequisites":[1637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:flowing_water","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electrolyzing water","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now let's automate electrolyzing water into oxygen and hydrogen. You'll need hydrogen for tons of stuff including desulfurization, obtaining tungsten, and nitric acid production. Oxygen is also useful as I'm sure you noticed when making steel.\n\nHow to set it up:\n\nPlace the electrolyzer down and connect it to water and electricity. Place the 2 super tanks nearby. Set the electrolyzer to produce hydrogen gas and oxygen cells. Use normal GT fluid pipes to output the hydrogen gas into one super tank. That is now your hydrogen storage. Now connect interface pipes to all 3 machines.\n\nFor the electrolyzer put in item stock keeper set to keep 2 empty cells stored. Also put in extractor set to extract oxygen cells.\n\nNow for the oxygen storage put it item responder chip set to accept oxygen cells and extractor set to extract empty cells.\n\nNow put some empty cells inside your default storage chest and don't forget to have a broadcaster there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":2,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1639,"preRequisites":[1638],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30737,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Desulfuring the oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it's time to start the actual desulfurization. Use a chemical reactor of your choice, fill it with sulfuric light fuel and hook it to power. Now connect an interface pipe to it. Put an item stock keeper inside set to store 4 hydrogen cells. Then put in item extractor set to extract Hydrogen sulfide and empty cell.\n\nGo to your hydrogen storage super tank and put in a crafting chip set to make one hydrogen cell from one empty cell.\n\nAnd that's all."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1640,"preRequisites":[1639],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30460,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dealing with H2S","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now let's convert all that H2S into sulfuric acid. Hook up a chemical reactor to electricity, water and interface pipe. Put inside an item responder chip set to accept H2S cells and extract empty cells. Distill that diluted sulfuric acid in distillery and store it in super tank.\n\nCongratulations. You now have a completely automatic desulfuring of oil, automatic production of hydrogen and oxygen and you also store all that sulfuric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1641,"preRequisites":[1632],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Small reward","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Here's a small reward for making all those chips."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":28,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":24,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":20,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":32,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":33,"OreDict":""}]}]},{"questID":1642,"preRequisites":[1640],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reward for desulfuring automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The greatest reward is having your stuff automated if you've done everything correctly, but here's a reward for making it this far.\n\nSome other setups to look at automating are making polyethylene and nitric acid. \n\nWith stock keeper chips you can always keep a set amount on-hand and when you pull out the cells to use elsewhere, your setup will automatically make more."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":28,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":24,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":20,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":32,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":33,"OreDict":""}]}]},{"questID":1643,"preRequisites":[1527],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThere can be only one...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...so make them lose their heads. \n\nMake yourself a Cleaver with your tool forge and collect some wither skeleton skulls.\n\n§4If you have problems finding wither skeletons, once you get to HV you can put a powered skeleton spawner in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartLargeSwordBlade","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":3,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1644,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Salt for your salty mouth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Modpack too easy? Tired of all the quests making the game trivial? Hateposting in github about the noobs making steam too powerful? Well here's a quest for you to turn all those OP coins into salt."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":500,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2817,"OreDict":""}]}]},{"questID":1645,"preRequisites":[333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Now I feel bad...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...that I know creepers have hearts. Extract a few with your Arthana. You might want to add a few levels of Looting to get more drops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":21}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1646,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rumplestiltskin!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spinning hay into gold sounds like a fairy tale, but with your new magical spinning wheel you too can try tricking a queen into giving you their first born child.\n\nYou will need three for your witchwear, and can turn extra into gold nuggets in a furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":2,"Damage":102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":102,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1647,"preRequisites":[1574],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":72,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Leather goddess of Robe-us","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make appropriate witchwear, you'll need to make some impregnated leather with your diamond vapor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":12,"Damage":72,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":4,"Damage":72,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1648,"preRequisites":[1646,1645,1647],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The witch is back...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...and you're going to be in trouble. \n\nDress for success in your new Witches Hat and Robes. A girl has to look her best, so I'll give you a nice bag as reward.\n\nCheck NEI uses for impregnated leather for other accessories to your outfit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":102,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":11,"Damage":72,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:witchrobe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:brewbag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1649,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Books are for nerds...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...And sexy male librarians. And also smart witches who want to learn their way around. Craft the first group of Witchery books."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":81,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":106,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":127,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":46,"OreDict":""},{"id":"witchery:cauldronbook","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1650,"preRequisites":[1649],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":107,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Going to need a big hat...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...to fit all this knowledge. Get some more books!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":107,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":47,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":48,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":49,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1651,"preRequisites":[1650],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BloodArsenal:vampire_cape","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A dark path to travel down...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...but a path laden with power beyond imagination. Behold mortal, and be terrified!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:vampirebook","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BloodArsenal:vampire_cape","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1652,"preRequisites":[768],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of a jet engine...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Large Gas Turbine lets you burn gaseous fuels like hydrogen, methane, or benzene. You'll have plenty to turn into EV EU with your new distillation tower.\nJust like the Large Steam Turbine, the LGT uses turbine rotors. Use a fluid regulator to optimize the flow of gases into the turbine - not enough or too much will cause its output to drop.\n\nMake sure your dynamo hatch is rated for the amount of EU your rotor will make!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]}]},{"questID":1653,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trading_post","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAkihabra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of talking one by one with every villager to determine their trades? A trading post will show you all available trades from villagers in the area. You'll need an Assembler to finish it up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17501,"OreDict":""},{"id":"minecraft:glass_pane","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trading_post","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:emerald","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1654,"preRequisites":[784,1740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32730,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomating power on/off","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you have a GT boiler or Large Combusion Engine with a faster startup time, you can automate it to produce power on-demand. Use a machine controller cover on the controller (protip: You can put it on the bottom, or on the side next to a casing, casings will transmit redstone signal). \nWith a machine controller cover, you can use redstone to turn the machine on and off. This is handy if you don't want to use a soft hammer to disable a machine.\n \nThe best way to do that is with an RS latch. One input will turn the machine on, and one input will turn the machine off.\nUse a comparator attached to a valve to measure the steam level in your multiblock Iron or Steel Tank. Invert the signal to turn on your boiler when the steam level is low. When the steam level signal is high, turn your boiler off. Use a trail of redstone to lower the signal strength. Because of boiler/turbine warmup, try to set the ON strength to 30 percent of capacity and OFF strength to about 90 percent.\n\nRed alloy wire will hold a redstone signal for a longer distance.\n\nYou can use a Energy Detector Cover in Normal Electrical Storage (including batteries) mode to monitor the power in a battery buffer and use it to enable/disable generators in a similar way. Change mode using a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32730,"OreDict":""},{"id":"ProjRed|Integration:projectred.integration.gate","Count":1,"Damage":12,"OreDict":""},{"id":"ProjRed|Integration:projectred.integration.gate","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"ProjRed|Transmission:projectred.transmission.wire","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32734,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":4,"OreDict":""}]}]},{"questID":1655,"preRequisites":[1233,940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lOne Dragon Egg is not enough Mr Bond","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dragon eggs are very rare and only drop after a dragon's death. How about I show you a way to recreate this powerful item out of a monster spawn egg?\n\nLets start with step one. Using a mob spawn egg, growth medium, and bacteria to create a bigger egg. This process needs one hour. \n\nBe sure your cleanroom is 100 percent clean or you will risk loosing the item.\n\nIf you have not been on Mars yet you have to wait until you can make mutagen for the next step. It is on the EV tab after visiting Mars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:spawn_egg","Count":1,"Damage":32767,"OreDict":""},{"id":"Genetics:misc","Count":64,"Damage":4,"OreDict":""},{"id":"gregtech:gt.Volumetric_Flask","Count":1,"tag":{"Capacity":1000,"Fluid":{"FluidName":"binnie.bacteria","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1656,"preRequisites":[940,186,1655],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEgg mutation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you found a way to make bacterial sludge stronger and research mutagen try soaking your bigger egg in it. You need to wait a bit (up to one hour).\n\nNext use your bigger egg, a stack of uranium 238 (be sure you wear your hazamuit suit), and mutagen. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemUran238","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"mutagen","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1657,"preRequisites":[1656],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEnder Egg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step you must infuse your egg with endium dust and molten ender to get a ender egg. This process needs 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2770,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"ender","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"HardcoreEnderExpansion:spawn_eggs","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1658,"preRequisites":[1657],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDraconium Egg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to add draconium and ender goo to the ender egg to get a draconium egg. This process takes 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":"dustDraconium"},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"endergoo","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":301,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":25,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1659,"preRequisites":[1658],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDragon Egg Omlet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last step to create you dragon egg is to add enderium and a dragon heart to the draconium egg. This process takes 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"enderium.molten","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":64,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1660,"preRequisites":[1622],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lStyrene-Butadine Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we add a bit sulfur to the raw dust and get molten styrene-butadiene rubber. Use a Plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":2634,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2022,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":17635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30646,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1661,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30664,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSilicone Rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some synthetic rubber like Silicone Rubber?\nThere are different ways to do it and this quest is only an example of how you can make it.\n\nFirst step you need Chloromethane. \n\nYou can use 2 Chlorine and 1 Methane per Chloromethane in your chemical reactor.\n\nAlternatively you can use Methanol and Hydrochloric Acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30664,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30683,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1662,"preRequisites":[1661],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30663,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimethyldichlorosilane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next steps you need Chloromethane and Silicon Dust. Finally you get Dimethyldichlorosilane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30664,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":2020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":30663,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30673,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1663,"preRequisites":[1662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2633,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPolydimethylsiloxane Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put Dimethyldichlorosilane and Water into the chemical reactor and get Polydimethylsiloxane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":30663,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":21,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2633,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2633,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1664,"preRequisites":[1663],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17471,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSilicone Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we add a bit of sulfur to the polydimethylsiloxane dust and get molten silicone rubber. Use a Plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2633,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":2022,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":17471,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30664,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1665,"preRequisites":[1491],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11374,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lHSS-S","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have HSS-G, it's time to make HSS-S. This new alloy is an important part of a lot of IV, LuV and ZPM recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11374,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1666,"preRequisites":[1491],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30024,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§b§lArgon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process some of the new ingots you will find, you need argon. Your first source will come from air, in small amounts.\n\n§4Hint: Use compresed air in a vacuum freezer and get liquid air. This will be a source of argon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30024,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1667,"preRequisites":[1666,1538],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11324,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On Ceres you can find small naquadah ores. Now that you have the dust and argon, you can make some naquadah ingots.\nYour EBF needs HSS-G heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11324,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1668,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"HSSG","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make Tungsten Steel and may upgrade your Electric Blastfurnace with new Coils you are able to make HSS-G Ingots. This ingot becomes very important in LuV tier.\nHss-g is made out of tungstensteel, chrome, molydenum and vanadium dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1669,"preRequisites":[1414],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1184,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The IV circuit assembler will let you make easier MV circuits, as well as single step EV circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1184,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1670,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Doped Monocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make the most advanced wafers, you need to make naquadah dopped monocrystalline silicon first. The process takes 750 seconds and requires silicon blocks and a naquadah ingot in the Electric Blast Furnace. You can make 64 wafers out of every boule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30024,"OreDict":""},{"id":"gregtech:gt.blockmetal6","Count":64,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11324,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32032,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmetal6","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2324,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1671,"preRequisites":[1670],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32035,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Doped Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some naquadah doped silicon wafers, place the monocrystalline naquadah doped silicon boule in a cutting machine. An HV cutting machine is needed for future advanced wafers and chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32035,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1672,"preRequisites":[1671,1006,1697],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun at EV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the EV one. It generates 2048 EU/t max. Most GregTech machines can use them as covers. First you need to produce quadruple sunnarium plate. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":20318,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17362,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17100,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32051,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":19020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32706,"OreDict":"circuitMaster"},{"id":"dreamcraft:item.IrradiantReinforcedTungstenSteelPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":6,"Damage":2380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":11318,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1673,"preRequisites":[1669,1671,1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32047,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSoC - System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make Lv and MV circuits much cheaper you need soc's. System on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32046,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32047,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24507,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1674,"preRequisites":[1407,1673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCheaper MV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the IV circuit assembler and SoC's you can now make integrated processors for a reduced price."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":26345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32080,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1675,"preRequisites":[1669],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32021,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lGlass Fiber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Glass Fiber is used in Fiber Reinforced Boards for circuits.\nBorax can be extracted out of Salt ores. Electrolyze it to get Boron and mix it with Glass dust.\nThe ingots can be turned into glass fiber in the wiremill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":46,"Damage":2941,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2009,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":56,"Damage":2890,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2611,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11611,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32021,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1676,"preRequisites":[1224,1675,1669],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17610,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§b§lFiber Reinforced Epoxid Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fiber Reinforced Epoxid Sheets are needed for the more advanced circuits. Mix glass fiber with epoxid to get your sheets. Alternatively you can use raw carbon fiber. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32021,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":64,"Damage":470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17610,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1677,"preRequisites":[1676],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lEmpty Fiber Reinforced Glass Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fiber Reinforced circuit boards require fiber reinforced epoxid resin sheets, copper foil and sulfuric acid to make an empty board. By adding annealed copper foil and Iron(III) Chloride or Sodium Persulfate you can craft a More Advanced Circuit Board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":29035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":29345,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":5,"Damage":32103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29345,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17610,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1678,"preRequisites":[1679,1249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32085,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSingle step EV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantumprocessors are your first chance to make EV circuits in a single craft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32057,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32085,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1679,"preRequisites":[1677,1249,1247],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32056,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQbit Wafer and Chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Qbit Wafer is made out ofa Nano CPU Wafer and quantum eyes. Cut it for Qbit processor chips.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32056,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32057,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30093,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2980,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1680,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32675,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lThought emitters were bad enough?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field generators are a big part of lategame crafts, and yes they always suck to make."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32675,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1681,"preRequisites":[202],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the ender quarry on its own with speed upgrade is good, why not speed it up a little bit more?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1682,"preRequisites":[1681],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things III","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If Speed upgrade II is to slow craft a speed upgrade III."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1683,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1185,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lLuV Circuits Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV circuit assembler is a nice one, giving you both cheaper HV circuits, as well as IV-UV circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1185,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1684,"preRequisites":[1685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCheaper HV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can make nanocircuits in a single simple step. They cost a new wafer, the ASoC wafer. They get more useful in zpm to make cheaper EV circuits as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":256,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":26085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32082,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1685,"preRequisites":[1671,1407,1683],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32049,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lASoc Advanced System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make HV and EV circuits much cheaper you need ASoCs. Advanced system on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32048,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32049,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24507,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1686,"preRequisites":[1683,1249,1522,1687,1688],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32089,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you're this far into LuV, you can make easier IV circuits, as well as your first UV circuit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32070,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32089,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1687,"preRequisites":[1689],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32070,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystal Chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make these chips you need Europium, as well as an HV Autoclave in the Asteroid Field dimension to achieve \"low gravity\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":30501,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":70,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32069,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17501,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32069,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32713,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32070,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32074,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":2,"Damage":70,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1688,"preRequisites":[1677,1683],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32104,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lElite Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elite circuit boards require a fiber reinforced board, platinum foil and sulfuric acid to make an multilayer reinforced board. By adding again platinum foil and Iron(III) Chloride or Sodium Persulfate you can craft an elite circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32712,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32720,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1689,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10930,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§c§lLuV Laser Engraver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV laser engraver is an important part of lategame circuit production. You need to make crystal CPU's for both wetwares, and crystalprocessors, the cheaper IV circuit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10930,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1690,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 6 > Tier 7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 6 lootbags give a better one = Tier 7."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":1691,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30605,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPolybenzimidazole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polybenzimidazole is a synthetic fiber used in ZPM Hulls and in high tier solar panels. It has many steps to produce it. Let's start with the bas eingredients.\n\nFirst we make some chlorobenzene out of benzene and chlorine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":384,"Damage":30023,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":192,"Damage":30686,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":192,"Damage":30605,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1692,"preRequisites":[1691],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30628,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNitration mixture","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We also need nitration mixture. We can do it out of nitric acid and sulfuric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30628,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1693,"preRequisites":[1691,1692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30592,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l2-Nitrochlorobenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to mixing the nitration mixture with your chlorbenzene in the hv chemical reactor to get 2-nitrochlorobenzene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30628,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30605,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30592,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1694,"preRequisites":[1693],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30596,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§b§l3,3 Dichlorobenzidine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing 2-nitrochlorbenzene with tiny copper dust gives you 3,3 Dichlorobenzidine in an EV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30592,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30596,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1695,"preRequisites":[1694],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30597,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l3,3 Diaminobenzidine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing 3,3 Dichlorobenzidine with Ammonia and Zinc in an IV Chemical Reactor gives you 3,3 Diaminobenzidine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30596,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2036,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30597,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1696,"preRequisites":[176,186,861,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":425,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lChemical reactions at IV level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High tier chemical recipes need a high tier IV chemical reactor.\n\nAlternativly you can use your Large Chemical Rector with two EV or one IV energy hatch."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1697,"preRequisites":[1695,1698],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17599,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPolybenzimidazole finally","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"3,3 Diaminobenzidine and Diphenyl Isophtalate will finally give you molten Polybenzimidazole. Use a plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30597,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30598,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17599,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1698,"preRequisites":[1699,1700],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30598,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lDiphenyl Isophtalate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mix Sulfuric Acid, Phtalic acid and Phenol to get Diphenyl Isophtalate. An IV Chemical Reactor is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30595,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30598,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1699,"preRequisites":[1691],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30687,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Phenol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can get Phenol in different ways, but why not try using your chlorobenzene and some water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30605,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":128,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1700,"preRequisites":[1701,1702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30595,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPhtalic acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Phtalic acid you need mix Dimethylbenzene, tiny piles of Potassium Dichromate and Oxygen in an EV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30593,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":594,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30595,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1701,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30593,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lDimethylbenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dimethylbenzene can be distilled from Wood Tar or using Benzene and Methane gas in a Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30593,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1702,"preRequisites":[1704,1703],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2594,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPotassium Dichromate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potassium Dichromate is made out of Potassium Nitrade and Chromium Dioxide in an HV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2591,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2590,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2594,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1703,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2590,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPotassium Nitrate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potassium Nitrade is made out of potassium and nitric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2025,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2590,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1704,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lChromium Trioxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chromiumtroxide is be made out of chrome and oxygen in two steps. First you make chromiumoxide and then chromiumtrioxide."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2361,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2591,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1705,"preRequisites":[1678],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Processor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantumprocessor Assembly is a IV Circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32085,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":96,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32086,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":24,"Damage":32014,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1706,"preRequisites":[1705],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32087,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lMaster Quantum Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Master Quantumcomputer is an LuV Circuit and needs a cleanroom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32086,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":192,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32087,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32043,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1707,"preRequisites":[1706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32088,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Processor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Quantumprocessor Mainframe is the first ZPM circuit you can make."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32087,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":192,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":192,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32088,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1708,"preRequisites":[1686],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32096,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crystal Processor Assembly is a LuV Circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32089,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32096,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19360,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1709,"preRequisites":[1708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32090,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lUltimate Crystal Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Ultimate Crystalcomputer is a ZPM circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32096,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32090,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32041,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1710,"preRequisites":[1709,1711],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32091,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crystalprocessor Mainframe is the first UV circuit you can make. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32090,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":64,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32091,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1711,"preRequisites":[1489,476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2400,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lSuperconductors 32768 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 32768 EU IV wires? Tetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxide is a superconductor wire and will transfer your energy without any loss. Every voltage now has superconductor wires and a base wire with only a very small EU/t loss.\n\nMix indium, tin, barium, tianium, copper and oxygen in an EV mixer. Now you have the base dust, which needs an EBF with Naquadah coils, and a vacuum freezer to cool it down.\n\nMake some LuV superconductor base wires and use an assembler to combine these wires with helium and tiny enderium pipes and an LuV pump to get your 32768 EU/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2056,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2057,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":28,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2991,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11991,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2280,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2280,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":40,"Damage":5190,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1712,"preRequisites":[1673,1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCheaper LV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the IV circuit assembler and SoC's you can now make a microprocessor for a reduced price."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32078,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1713,"preRequisites":[1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32061,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSimple SoC - System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For a replacement for vacuum tubes in simple circuits you'll need simple SoC's. System on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32060,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32061,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24514,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24540,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1714,"preRequisites":[1713],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32075,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§8§9§lCheaper Simple Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The NAND chip is an industrial replacement for the vacuum tubes that is much cheaper. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32061,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32075,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24514,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24540,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1715,"preRequisites":[1538],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOn your way to Tier 4 DIMs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tier 4 Planets are Jupiter's Moon Io where you will find the next dungeon, Venus (needs a SpaceSuit) and Mercury."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Reach asteroid belt","range":-1,"index":0,"dimension":30,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":16,"Damage":1,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:venusblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:venusblocks","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":1,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1716,"preRequisites":[1715],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":84,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIridium Mix","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nickel, Iridium Palladium and Mithril you can find on Io or Venus. Look at Y 15-40.\nYou can get also Osmium out of Iridium Ore for high tier materials you need later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":84,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":331,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1717,"preRequisites":[1715],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":391,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lVenus Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Venus has two ore mixes you really want to find. One mix is the Quantium Mix and the other is Naquadah.\n\nMake sure you are wearing proper protective equipment!\n\n§4Quantium is found at Y 5-25 and Naquadah Y 10-90."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Venus","range":-1,"index":0,"dimension":39,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":391,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":509,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":375,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":128,"Damage":324,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":326,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1718,"preRequisites":[213,86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11358,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYttrium-Barium-Cuprate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yttrium-Barium-Cuperate becomes more important in LuV Tier. It needs an EV Mixer to mix and a Electric Blast furnace with Tungsten Steel heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":11,"Damage":2045,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":22,"Damage":2063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":33,"Damage":2035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2358,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11358,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1719,"preRequisites":[1672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun 1x1 EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 2048 EU panels on a block to make them placeable in the world. Use an IV assembler to combine the panel with an EV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32540,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1720,"preRequisites":[1671,1007,1722],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPower of the Sun at IV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the IV one. It generates 8192 EU/t max. Most GregTech machines can use them as covers. First you need to produce sunnarium alloy out of reinforced iridium and sunnarium. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17358,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17346,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32053,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":18599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":20020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32088,"OreDict":"circuitUltimate"},{"id":"dreamcraft:item.IrradiantReinforcedChromePlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":6,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11318,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1721,"preRequisites":[1720],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"supersolarpanel:SpectralSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPower of the Sun 1x1 IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 8192 EU panels on a block to make them placeable in the world. Use an LuV assembler to combine the panel with an IV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32545,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"supersolarpanel:SpectralSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1722,"preRequisites":[1489],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10780,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lLuV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV assembler is needed for IV Solar Panels and other high tier stuff. Lets build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10780,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1723,"preRequisites":[1535],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:ioblocks","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"IO Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours and hours and endless swimming in lava you will find a Io dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 5 rockets.\n\nThis will open the Moons from Saturn and Uranus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier5Key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1724,"preRequisites":[80,1717,1723],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 60 tier 5 heavy duty plates out of tier 4 plates and compressed quantium plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":60,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":480,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyAlloyIngotT5","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":256,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1725,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in an HV Scanner and put the construction data on a Data Stick. The fourth tier schematic circuit uses an elite circuit and a heavy duty plate tier 5 and the data stick in a LuV circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier5","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":5},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1726,"preRequisites":[1724,1725,1730,1727,1728,1729],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier5Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a month of hard work and ten thousand stacks of iTNT your fifth rocket is finally ready. But before you can go to Saturn and Uranus Moons you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":12,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LargeFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.Tier2Booster","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier5Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":256,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1727,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Nose Cone Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone. Tier 5 rocket needs a heavy nose cone tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.LedoxCompressedPlate","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1728,"preRequisites":[1731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Rocket Engine Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. A heavy one tier 3 is needed in the tier 5 rocket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.Tier2Booster","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LedoxCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":32,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1729,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Rocket Fins Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins. Tier 5 rockets need heavy ones Tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.CompressedSDHD120","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":24,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1730,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LargeFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Fuel Canisters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 5 rocket you need to craft two medium and two large canisters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MediumFuelCanister","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LargeFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LedoxCompressedPlate","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1731,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.Tier2Booster","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Booster Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The distance between Planets and Moons is much larger now so the rocket needs bigger boosters to reach it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LedoxCompressedPlate","Count":12,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.CompressedSDHD120","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Tier2Booster","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11374,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1732,"preRequisites":[1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_jetplate","Count":1,"tag":{"electricity":100000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"EVA equipment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who wants to trudge around on the surface when you can fly? Upgrade your chestplate with a jetpack and fly around Venus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{"charge":30000},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_jetplate","Count":1,"tag":{"electricity":100000},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1733,"preRequisites":[1531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Journey to the bottom of a molten ocean","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Venus is hot, so hot it can melt lead. On top of that the atmosphere is so thick, 90x the Overworld, that it will crush you. Not to mention the Sulfuric Acid! You will need to construct a special suit to survive on Venus without dying instantly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_leg","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1734,"preRequisites":[1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_gravityboots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gravity boots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These boots will help you fall faster in low gravity environments. Or not. Maybe. Give them a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_gravityboots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1735,"preRequisites":[1205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBowl full of spaghetti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or at least factories full of item pipes. With these simple item pipes and conveyors you can take items out of one machine and feed them immediately into a second machine.\n\n§4Later you can make better item pipes. Look for \"item pipe\" in NEI for options."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5590,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spagettiItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1736,"preRequisites":[895],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPipes, pipes everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are in MV, you will want to start automating processes. Polyethylene, O2, N2, H2, rubber, charcoal, etc. Faster item pipes will help with transporting items quickly around your base. For now, use your spiffy new extruder to craft some brass item pipes. \n\nThe reward - restrictive item pipes - allow you to prioritize destinations. Locations on the other side of a restrictive pipe are treated as much further away than locations on the same side of a pipe. Very handy when you want overflow (or non-matching) items to go somewhere else!\n\nFor higher tiers, look up \"* item pipe\" in NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5641,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1737,"preRequisites":[1288],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More Red, less Wheat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When breeding together crops for an output crop, try to get crops that are close in tier to the output crop, and have similar attributes to the output crop. \n\nFor example, Redwheat has \"Red\", \"Wheat\" and \"Redstone\" attributes and is tier 6. Netherwart has \"Red\" and is tier 5. Use the cropnalyzer crop prediction mode to see how many points Redwheat has using two Netherwart. \n\nYou'll also want to make sure the light level is between 5-10 for the cross breeding to occur. \n\nReally though, once you get to MV it's better to make a Glowstone crop and centrifuge it for redstone. Red wheat == Dead wheat"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":2,"tag":{"owner":"IC2","name":"netherWart","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"redwheat","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinFarmerII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1738,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"openglasses:openglasses","Count":1,"Damage":7734,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lWhen all you have is a hammer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...the whole world looks like a nail. When looking for good tool materials, look for the generic tool in NEI and use R to find the recipe. Then use U on the source materials you have to find out their durability options. Tool parts are normally not in NEI, like the drill bit. So use NEI U on plates etc to figure out their recipes. \n\nThe GT tools each have special uses.\n\nScrewdriver - Used on covers to change their behavior.\n\nWrench - Used to change the output direction on a GT machine, or to break it. Can also disconnect/connect pipes or enable their built in shutter.\n\nCrowbar - Remove covers from machines or pipes.\n\nWire cutters - Connecting/disconnecting wires/cables.\n\nSoft mallet - Turning machines on/off.\n\nHammer - Prospecting for ores in a limited way in front of you, and smashing ore blocks into crushed ores."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1739,"preRequisites":[1231,146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockFarmStation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFarming a little easier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of the forestry farms requirements? The Ender IO Farming Station is available to ease your suffering. It just requires EU and can be easily upgraded with capacitors. Most normal crops and trees work with it, but unfortunately IC2 crops do not."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":22378,"OreDict":""},{"id":"EnderIO:itemMaterial","Count":2,"Damage":5,"OreDict":""},{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31365,"OreDict":""},{"id":"EnderIO:itemFrankenSkull","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockFarmStation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:diamond_hoe","Count":1,"tag":{"ench":[{"lvl":3,"id":34},{"lvl":3,"id":35}]},"Damage":0,"OreDict":""},{"id":"minecraft:diamond_axe","Count":1,"tag":{"ench":[{"lvl":3,"id":35},{"lvl":3,"id":34}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1740,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1171,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDo you hear that engine revving?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your old and trusty combustion engines don't quite cut it anymore, not to mention they are polluting the place. If you want to keep burning liquids, you need to build a better engine. This multiblock can produce 1A of EV voltage by default and 3A if you supply it with oxygen. However, this power doesn't come for free - you need to supply the machine with small amounts of lubricant constantly (and oxygen if you want to boost both its efficiency and output).\n\nYou will also require 3 Input Hatches, a Muffler, and a Dynamo Hatch. Their tiers are up to you.\n\nCetane Boosted Diesel and High Octane Gasoline are excellent fuel sources for this engine.\n\nYou will need to keep the area in front of the engine clear so it can pull enough air - not even torches."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1171,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":2,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":8,"Damage":13,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":19,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30998,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":7,"Damage":0,"OreDict":""}]}]},{"questID":1741,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:Natura.netherfood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lNice Nether Trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a few very useful Nether trees out there which gives resources like Redstone, Gunpowder, Bonemeal or Fertilizer.\n\nGo and get a few trees like Bloodwood, Fusewood, Darkwood or Ghostwood out of the Nether.\n\nThese trees can be planted like normal trees, except for Bloodwood. That has to planted on a ceiling and will grow down instead of up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:floraleavesnocolor","Count":16,"Damage":1,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":4,"OreDict":""},{"id":"Natura:tree","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Natura:floraleavesnocolor","Count":16,"Damage":2,"OreDict":""},{"id":"Natura:bloodwood","Count":8,"Damage":0,"OreDict":""},{"id":"Natura:bloodwood","Count":8,"Damage":15,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Natura:Dark Tree","Count":8,"Damage":0,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":6,"OreDict":""},{"id":"Natura:Dark Leaves","Count":16,"Damage":0,"OreDict":""},{"id":"Natura:Natura.netherfood","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"Natura:Dark Tree","Count":8,"Damage":1,"OreDict":""},{"id":"Natura:Dark Leaves","Count":16,"Damage":3,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":2,"OreDict":""},{"id":"EnderIO:itemAlloy","Count":4,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1742,"preRequisites":[765,810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30005,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lHelium 3 and Saltwater on Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon is rich in Helium 3 because the Sun has been embedding it in the upper layer of moon by the solar wind over billions of years. \nSalt water is also available in smaller quantities. You will want plenty of chlorine for processing Rutile to get Titanium. \n\nThere are more planets and moons with gas and fluids underneath the surface. Bring along a multiblock fluid drill to recover these fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30005,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30692,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:blockTank","Count":4,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1743,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30692,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Saltwater and Chlorobenzene on Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mars is rich on saltwater and chlorobenzene. If yu run low on chlorine you can centrifuge the fluids.\n\nMore Fluids and Gases can be found on (This list is subject to change due to balancing at any time!):\n\nSalt water\n\n Moon - v low\n Mars - Low\n Europa - High\n\nHelium3\n\n Moon - V.Low\n Mercury - Low/High\n\nChlorobenzene\n\n Mars - V.Low\n\nNitrogen\n\n Triton - high\n Pluto - high\n\nMethane\n\n Titan - High\n\nEthane\n\n Titan - Low\n\nEthylene\n\n Triton - Low\n\nCallisto\n\n Oxygen - Low\n\nSuper Heavy Oil\n\n Europa - low\n BarnardC - high\n TCetiE - low\n\nMolten Naquadria\n\n BarnardC - Low\n VegaB - high\n\nMolten Naquadha\n\n Venus - V.Low\n Titan - low\n Haumea - high\n\nLiquid air \n\n Callisto- Low\n Charon - Medium\n BarnardE - High"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30692,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"chlorobenzene","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"EnderIO:blockTank","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32708,"OreDict":""},{"id":"minecraft:tnt","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17028,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1744,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lChemical lesson part two","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More advanced recipes need an mv chemical reactor like polyethylen.\n\nHint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1745,"preRequisites":[1598,1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":48,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Welcome to OpenComputers!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hello there, my name is Teirdalin and today we shall embark on one of the most exciting and fun mods; OpenComputers! First things first though, you will need some patience to get through this mod, but it will certainly pay off in the end!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":98,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32007,"OreDict":""}]}]},{"questID":1746,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your First Microchip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Microchips will be used in most things you make, so if possible; I suggest bulk crafting quite a few of these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":4,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1747,"preRequisites":[1754,1751,1750,1753,1756,1755,1760,1762],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"universalsingularities:universal.bigReactors.singularity","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your First Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Place the power converter you gotten earlier near an electircal cable and connect it with your wire cutters. Now place your computer case by the converter and by the magic of technology it shall fuel the computer case! Now take your hard drive, memory and graphics cards and place them inside, place the disk drive next to the computer and insertin the operating system disk. Insert the bios we made into the case and turn it on."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":48,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1748,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":27,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arithmetic Logic Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Arithmetic Logic Circuits are used in numerous parts; mostly in groups of 8-16 upto 64. \nSo make sure to make plenty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1749,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"All Your Card Are Belong To Us","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Card bases are just as you might think they are; they're the base part that each card you make will use to connect onto the motherboard.\n\nI suggest making a handful of these for future cards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1750,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Short Term Memory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gotta get more ram.\n\nMemory, or ramis essentially a temporary storage of data on your computer that can be rapidly accessed via your programs..\nHence the name Rapid Access Memory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":29303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":33,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1751,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Woah Rad Graphics!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"See the digital world.\n\nYour graphics card allows the computer to draw text and other things to the screen. \nThe better graphics card you use the higher resolution, and better features can be drawn.\n\nYou also need a higher tier monitor to display colors or to get touchscreen compatability-\nbut that's something to worry about for another day."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""},{"id":"OpenComputers:item","Count":8,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":2,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32717,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"OpenComputers:screen1","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"OpenComputers:screen2","Count":2,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1752,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Control Units","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So controlling! Strangely enough, this part takes an HV circuit to craft; so here's some to make your first computer parts in exchange for MV circuits in their place. Don't spend them all in one place!"}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32702,"OreDict":"circuitGood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":16,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1753,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What did the data say to the CPU?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cache me outside.\n\nYour CPU will essentially be how fast your computer processes data. \nA stronger CPU == A faster computer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":8,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1754,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:case1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Computer Case","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"100 Percent Waterproof.\n\n\nThe computer base is the HUB of all your computer parts essentially.\nIt takes two memory sticks, a BIOs rom, a CPU, and a hard drive at the very least to run your computer.\n\nThe power converter allows you to power it from your GregTech power grid, and the floppy drive will allow you to install your operating system onto the hard drive. Both parts are essential but both for some strange reason requires the T2 microchips to craft; so here's a starting pair using T1 Microchips instead- Don't lose them!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21019,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:case1","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24890,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":23035,"OreDict":""},{"id":"OpenComputers:item","Count":3,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"OpenComputers:cable","Count":2,"Damage":32767,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":"plateAluminium"},{"id":"OpenComputers:item","Count":2,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:powerConverter","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:diskDrive","Count":1,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1755,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:wrench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"My Little Scrench","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A screwdriver and wrench in one. Not really a necessary tool, but has some purposes; I suggest referring to your computer manual."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"OpenComputers:wrench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":98,"OreDict":""}]}]},{"questID":1756,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"HDD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your hard drive is where all your programs and data is stored..\n\nYou're playing minecraft, you should already know this though."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18019,"OreDict":""},{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""},{"id":"OpenComputers:item","Count":2,"Damage":24,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":"oc:hdd1"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"tag":{"oc":"OpenComputers:openos","display":{"Name":"OpenOS (Operating System)"}},"Damage":4,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1757,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":19,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not Your Average Platter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We'll need these for our hard drives."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24890,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29019,"OreDict":"foilAluminium"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1758,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:eeprom","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BIOS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The rom disks are necessary to get your computer to start, they're also what you use to run a drone off from.\nYour BIOs go onto these little disks, get me a blank and I'll write the basic BIOs onto it for you.\n\nYou can do this later when you make more computers by flashing your existing bios onto new cards or combining a blank with the manual."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"OpenComputers:eeprom","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:eeprom","Count":1,"tag":{"oc":{"oc":"EEPROM (Lua BIOS)"}},"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1759,"preRequisites":[1748,1752,1746,1757,1749,1758],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":54,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Congratulations we have the parts to start making a computer!\n\nLet's start with the basics here."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1760,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Intelligence is the ability to adapt to change.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This block allows our computer to interact with GT machines and everything else. A must have!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"OpenComputers:cable","Count":2,"Damage":32767,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""},{"id":"OpenComputers:adapter","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1761,"preRequisites":[1747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hello World!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First things first, let's install OpenOS to the computer so you don't always need disk in the drive. Type in 'install' and then type 'Y' when asked if you wish to install OpenOS. \nWhen finished, remove the disk and toss it on your wall and reboot the computer. \nType 'df' to display all present file systems and mount points, you'll notice one named OpenOS; this is your hard drives default name after installing the OS. \nLet's change it with 'label set -a OpenOS HDD' -a checks for names starting with what you type after it with that command.\n\nNow for fun, let's make your first program! How about something functional, make a with 'edit startup' this will bring you to an edit page for a new program called startup. Let's just have it do something simple, 'print(\"Hello World!\")' Like that'll never get old.\n\nNow press Ctrl+S to save, and Ctrl+W to get out of that screen. Back in your home root let's now type startup and you'll see it display \"Hello World!\" neat huh?\n\nLet's now make startup actually work on startup. Type 'edit .shrc' .shrc is a mystic file that runs shell commands when booting your PC. So in .shrc type 'startup' save and reboot the computer. Now it should say \"Hello World!\" upon starting. Double neat right?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32002,"OreDict":""}]}]},{"questID":1762,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I love pressing the F5 key.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's so refreshing.\n\nPlace a keyboard facing a screen- or stuck to the back of a screen to make it able to interact with a computer.\nAbsolutely necessary to doing anything on your computer, but can safely be removed once you have an endlessly running program."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone_button","Count":104,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"harvestcraft:colasodaItem","Count":1,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1763,"preRequisites":[1761],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mounting your HDD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alright, you have your computer, it says \"Hello World!\" When you start it, and you feel awesome and capable of world domination. \n\nNow lets setup your HDD. Open .shrc again in the editor, and press ENTER to go down a line after the print, and type in 'cd ../' this will move your viewed directory that's being viewed to- well, the absolute base directory. \n\nNow go down another line and type in 'mount HDD C:' because why not, it's Classic; this mounts the file drive into the folder you're in. Go down another line and type cd 'C:/' save and reboot the computer.\n\nYou'll now start in C:/ nifty! Try typing 'mkdir programs' and now you have a dedicated directory to put your programs in for the sake of organization.\n'cd programs' will then take you to programs, and 'cd ../' will take you back a directory; you can also do things like- lets say you have a folder called apples in C as well but you're in apples, type 'cd ../apples' and it'll take you to apples, .. essentially just means previous directory and this can be stacked; works with copying files and moving them as well, very useful to know. \n\nut right now we're going to do something functional, come over to the next quest and bring your adapter and cables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1764,"preRequisites":[1763],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Power Display","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For this part we will learn how to use our adapter, place it next to- let's say your EBFs battery buffer and connect it to the computer with cables.\nNow lets type in lua while on the computer to open the LUA environment where we can test things without worrying about saving and trying our program.\n\nType in 'component.list()' this will display a table of all of .list from component. What we're looking for is gt_batterybuffer.\nIf you have too many nearby things it may not display and the way to search the entire list of components is too advanced for starters.\n\nSo now assign a variable to it; for example 'a = component.gt_batterybuffer'; now we can call 'a' to see what methods the batteryBuffer has.\nWhat we'll be using in this example is the 'getBatteryCharge' method. So type\n 'a.getBatteryCharge(1)' this will call the method getBatteryCharge from the first inventory slot on the gt_batterybuffer in component.\n\n So if we're using a 2x2 battery buffer; we can type something like- 'for i=1, 4 do print(a.getBatteryCharge(i)) end\nPoof you now see what all the batteries EU values. Now what can we do with this?\n\nTry making a variable called 'batteryCharge = 0', now do 'for i=1, 4 do batteryCharge = batteryCharge + a.getBatteryCharge(i) end'\n\nNow print(batteryCharge) will display the total charge. Here's a program example of this being used.\n\nPlace in your tape drive and type 'install', and follow the promps to install it into C. Then edit it, test it, figure how it works.\n\nI suppose that's enough for now; congrats! Experiment and learn, and don't forget to check google as much as possible! \nThis questline will be updated again in the future; but I figure this is a good ending point for now."}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"tag":{"oc":{"node":{"address":"9147f798-ee2f-44da-b736-b6a30beed8da","visibility":2,"buffer":0},"owners":[{"handles":{},"address":"9fbc465f-657a-437e-9f90-f18aaf9eb423"}],"oc":"PowerDisplay","fs":{"output":{},"input":{},"capacity.used":2045}}},"Damage":4,"OreDict":""}]}]},{"questID":1765,"preRequisites":[1747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:itemGenericToken","Count":16,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Online Shopping - Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey, a use for bitcoins!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1766,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Network Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Network Card for six Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":1767,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":113,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Wireless Network Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Wireless Network Card for 12 Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":113,"OreDict":""}]}]},{"questID":1768,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Memory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a pair of Tier 1 Memory Chips for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""}]}]},{"questID":1769,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Graphics Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Graphics Card for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1770,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":3600,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Graphics Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Graphics Card for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1771,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:cable","Count":8,"Damage":32767,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you 16 cables for two bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""}]}]},{"questID":1772,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:screen1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Screen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Screen for three Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:screen1","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1773,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Hard Drive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Hard Drive for eight Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1774,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Floppy Disk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Floppy Disk for a Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1775,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Keyboard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Keyboard for two Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1776,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Microchip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Microchip for two Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]}]},{"questID":1777,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32009,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Coin Conversion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sell 32 of those Dogecoins for a Bitcoin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32009,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1778,"preRequisites":[231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Warp Warnings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumcraft offers considerable power from its devices and tools. \nBut power comes with a price.... As of version 4.2, that price is represented by Warp: \nA corruption of the characters mind and soul, inflicting progressively more dire effects upon them. \nWhile the effects of warp can range from annoying to deadly, accumulating enough of it can also grant you access to greater power... at the cost of increasing madness, and attention from dark powers.\nAt least, others may call it madness... but is it truly insanity, when the voices in your head grant useful knowledge, and the monsters that appear before you leave remains behind?\n\nWarp Theory add a bunch of new Warp Effects to the Player. Be very carful because you don't want autospawning an Wither in or bside you Base.\nWarp Effects are Trickert by Warp Level.\n\nFake explosion warp effect can happen with 10 Warp\nFake creeper warp effect can happen with 10 Warp\nSpawn bats can happen with 15 Warp\nPoison warp effect can happen with 16 Warp\nJump boost warp effect can happen with 18 Warp\nRain warp effect can happen with 25 Warp\nBlood warp effect can happen with 25 Warp\nNausea warp effect can happen with 25 Warp\nFriendly creeper warp effect can happen with 26 Warp\nLightning warp effect can happen with 30 Warp\nLivestock rain warp effect can happen with 32 Warp\nWind warp effect can happen with 38 Warp\nBlindness warp effect can happen with 43 Warp\nRandom teleport can happen with 45 Warp\nAcceleration warp effect can happen with 50 Warp\nDecay warp effect can happen with 50 Warp\nRandom trees effect can happen with 50 Warp\nChest scramble warp effect can happen with 80 Warp\nSpawn wither warp effect can happen with 80 Warp"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"WarpTheory:item.warptheory.paper","Count":16,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemBathSalts","Count":4,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1779,"preRequisites":[486,49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:pistonBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Step Assistant.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Piston Boots are a bouncy pair of shoes for adventurers.\n\nIt functions as a piece of armor for the foot slot that gives a fun jump boost! They let the wearer jump up to THREE blocks in height and increase run speed. They also grant a Step Up enchantment to allow the wearer to step up a single block without jumping while sprinting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17880,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"adventurebackpack:pistonBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1780,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:pamoliveSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Olives Saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Olive trees can't be find in the overworld so the best way would be to buy some with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:pamoliveSapling","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1781,"preRequisites":[692,102,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Gear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The goggles, wings, shoes, vest, belt and boots it self are not realy special. You can zoom with the googles, have a extra inventory slot with the belt, stepup assistent with the shoe, jump boost with the wings and faster swimming ability with the vest. You get protction like with normal armor too.\nLater on you can upgrade your items to becomes more powerful ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":26303,"OreDict":""},{"id":"harvestcraft:hardenedleatherItem","Count":17,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17804,"OreDict":"plateObsidian"},{"id":"minecraft:diamond_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_boots","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:fletching","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32642,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":6,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Built":1,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelBelt","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:hardenedleatherItem","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17500,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1782,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Night Vision":1,"Built":1,"Moss":3,"Tooltip1":"Night Vision","Tooltip2":"Auto-Repair","Effect2":4,"ModifierTip2":"Moss","Effect1":0,"ModifierTip1":"Night Vision","ModDurability":0,"DamageReduction":0,"Broken":0,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":1,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Goggles upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nightvision is very usefull. If you combining your Goggles with a night vision potion, a golden carrot and a lighter inside the Tinkers Table you get Night Vison Goggles.\n\nHint:\nAutorepair can be added to the goggles aswell.\nEvery Armor have 3 slots for modofication."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Built":1,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Night Vision":1,"Built":1,"Tooltip1":"Night Vision","Effect1":0,"ModifierTip1":"Night Vision","ModDurability":0,"DamageReduction":0,"Broken":0,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""},{"id":"minecraft:potion","Count":2,"Damage":8198,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1783,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"Moss":3,"Tooltip1":"Perfect Dodge","Tooltip2":"Stealth","ModifierTip3":"Moss","Effect2":1,"ModifierTip2":"Stealth","Effect1":0,"ModifierTip1":"Perfect Dodge","Effect3":4,"ModDurability":0,"DamageReduction":0,"Broken":0,"Perfect Dodge":1,"Stealth":1,"Tooltip3":"Auto-Repair","MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Vest upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You vest can be equiped with a few modification like perfect doge and stealth.\nPerfect doge mean you're harder to hit and can be stacked up to 3 times.\nStealth turn you invisible while sneaking.\n\nHint:\nAutorepair can be added to the vest aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"Tooltip1":"Perfect Dodge","Effect1":0,"ModifierTip1":"Perfect Dodge","ModDurability":0,"DamageReduction":0,"Broken":0,"Perfect Dodge":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:potion","Count":2,"Damage":8206,"OreDict":""},{"id":"minecraft:ender_eye","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1784,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Double-Jump":1,"Built":1,"Moss":3,"Tooltip1":"Feather Fall","Tooltip2":"Double-Jump","ModifierTip3":"Moss","Effect2":0,"ModifierTip2":"Double-Jump","Effect1":1,"ModifierTip1":"Feather Fall","Effect3":4,"ModDurability":0,"DamageReduction":0,"Broken":0,"Feather Fall":1,"Tooltip3":"Auto-Repair","MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Wings upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wings can be equiped with a few modification feather falling and double jump.\nFeather fall means allow you to glide down slowly in air.\nDouble Jump means you jump while in the air to jump again.\n\nHint:\nAutorepair can be added to the wings aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Tooltip1":"Feather Fall","Effect1":1,"ModifierTip1":"Feather Fall","ModDurability":0,"DamageReduction":0,"Broken":0,"Feather Fall":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1785,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Tooltip1":"Haste","Effect1":1,"ModifierTip1":"Redstone (500/500)","ModDurability":0,"Broken":0,"Redstone":[500,500,1],"MiningSpeed":500,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":500}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Gloves upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Putting redstone on my weapon makes it faster. So why don't I put it on my hands directly!\nIt will be increases the mining speed.\n\nHint:\nEvery Armor part have 3 Slots for modification.\nGloves have 4."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_block","Count":55,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Tooltip1":"Haste","Effect1":1,"ModifierTip1":"Redstone (500/500)","ModDurability":0,"Broken":0,"Redstone":[500,500,1],"MiningSpeed":500,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":500}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:slime.pad","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1786,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Moss":3,"Tooltip1":"Slimy Soles","Tooltip2":"Water-Walking","ModifierTip3":"Moss","Effect2":1,"ModifierTip2":"WaterWalk","Effect1":3,"ModifierTip1":"Slimy Soles","Effect3":4,"ModDurability":0,"DamageReduction":0,"WaterWalk":1,"Broken":0,"Tooltip3":"Auto-Repair","MaxDefense":6,"Damage":0,"Slimy Soles":1,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Shoes upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You shoes can be equiped with a few modification like water walk, double jump, lead boots or slimy shoes.\nWater walk mean to allows you to walk over water.\nDouble jump means to jump while in the air to jump again.\nLead Boots mean to allows you to walk under water, prevents you from swimming and Blub.\nSlimy Shoes means to dampens the fall impact and reduces fall damage that you taken.\n\nHint:\nAutorepair can be added to the shoes aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Tooltip1":"Water-Walking","Effect1":1,"ModifierTip1":"WaterWalk","ModDurability":0,"DamageReduction":0,"WaterWalk":1,"Broken":0,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:iron_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1787,"preRequisites":[213,1412],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15481,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lData Reader","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Assembly Line recipes are a pain in the A*****.\nScanning the item, printing it and make a book from it is a long process and the book recipe contains only text.\nWhy not using the Data reader from Tec Tech?\nIt shows up the recipe in Nei."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32740,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15481,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1788,"preRequisites":[1116],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unlocking bee breeding lines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No Description"}},"tasks":{},"rewards":{}},{"questID":1789,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_door","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lFactory Iron Door","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new Factory you need iron doors. Well the recipe is realy hard and need steel. \nYou can choose two more doors as reward if you like."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:iron_door","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:iron_door","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stone_button","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1790,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lWooden Door","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new House you need more wooden doors. Well the recipe is realy hard and need iron/copper and a lot of wood. \nYou can choose two more doors as reward if you like."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:planks","Count":4,"Damage":0,"OreDict":"plankWood"},{"id":"minecraft:trapdoor","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:wooden_door","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_pressure_plate","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1791,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":878,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lOilsand or how you get heavy Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oilsand is an other way to get oil, heavy oil. Maybe you lucky and found in a dessert biome a oilsand vein. With your centrifuge ou are able to get heavy oil and sand blocks out of the ore.\nThe veins can be found between Y level 50-80."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":878,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:berryMedley","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberrypieItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:carrotsoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1792,"preRequisites":[531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":321,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lI guess it is an inkjet?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you use the seismic prospector, you'll need a scanner and a printer to create the books full of tasty ores and delicious fluids.\n\nUse ink sacs in a fluid extractor to get squid ink. Move using a tank or universal cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":321,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:dye","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1793,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Ztones:cleanDirt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better dirt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With an Assembler and some seedoil, you can turn dirt and sand into Garden Soil. This optimal soil does not require water nearby and crops do not break when you fall on it. It can turn into dirt if you run on it, so be careful. You might want to investigate the Slow Building Ring in Building Better Bases."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Ztones:cleanDirt","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Ztones:cleanDirt","Count":48,"Damage":0,"OreDict":""}]}]},{"questID":1794,"preRequisites":[1541],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32762,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Even more stats","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the portable scanner, you can get the crop's stats and environmental info while it is still in the ground. Look for the portable scanner quest after the EBF in Multiblock Goals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32762,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Nickelback","scan":4,"growth":5,"resistance":5,"gain":5},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1795,"preRequisites":[1601],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32531,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Metals from the Sky","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can even create metals not found on Earth using crops! You'll need the proper metal block beneath the crop in order for them to fully mature."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32521,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32522,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32531,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32532,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Stargatium","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Quantaria","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"gregtech:gt.blockores","Count":4,"Damage":2317,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1796,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Gallium and Arsenic sources","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of ways to increase your Gallium.\n\n1. Use IC2 crops under the Farming tab to get Galvania leaves, to 4x your zinc and sphalerite crushed ores to purified ores.\n\n2. Use the HV macerator on the centrifuged ores to get a 10 percent chance of a whole Gallium dust.\n\n3. Use plentiful Bauxite ores from the Moon.\n\nFor Arsenic, Cobaltite ore in the Twilight Forest is a great source. It can be multiplied 4x by the IC2 crop Nickelback."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1797,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"New threads","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of killing spiders for string? Grow some flax for an easy non-biting source of string.\n\nYou can also directly place Cotton seeds on cropsticks to grow cotton that way. With some Corium in the next quest, you can get easy tanned leather."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Flax","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1798,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The ground is crying","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need an alternate source of Chlorine? Breed some Tearstalks to get Ghast Tears for making salt water.\n\n;-;\n\nNether warts should yield tearstalks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Tearstalks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ghast_tear","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1799,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blazes too hard to kill?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Then grow some blazereed to save yourself the trouble.\n\nTearstalks should easily yield blazereed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Blazereed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:blaze_rod","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1800,"preRequisites":[1809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A girl's best friend","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need to impress a lady? How about growing diamonds on reeds?!?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Diareed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1801,"preRequisites":[1933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why does my plant bawk like a chicken?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Because it can lay eggs!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Eggplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:feather","Count":512,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1802,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vegan, but still want to eat meat?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Instead of killing animals, just mutate some crazy GMOs into making animal products for you. Science!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corium","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Meatrose","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corpseplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beef","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:fish","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:porkchop","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1803,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemNugget","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magical Metal Berry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"..is obviously the name of my cover band. But also a great crop for Thaumium or Void metals. Requires a block of iron or thaumium to get thaumium, and void metal block to get void metal. Like other ore berries, it only grows in dim light. Any oreberry should have a decent chance of yielding this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Magic Metal Berry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1804,"preRequisites":[1803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Other magic flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Other magical flowers are possible such as shimmerleaf, mandragora, wolf's bane, and more."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1805,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockgranites","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Stonelillies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stone lillies allow you to get dusts without having to look for granites, basalt, or marble. Great renewable way to get calcite, fluorine, or bulk aluminium (and a tiny bit of uranium).\n\nThese require the original block directly beneath them to grow properly.\n\nThere is also a Grey stonelilly for stone dust (who needs more of that??) and a Yellow stonelilly for sand or Endstone dust. Handy for the clever chemist!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Red Stonelilly","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"White Stonelilly","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Black Stonelilly","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Yellow Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1806,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of different glowstone crops - glowflower, glowing earth coral, and glowshrooms. Nether wart is a great source of these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowshroom","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowing Earth Coral","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowflower","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glowstone","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1807,"preRequisites":[1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Leaves of steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, steel leaves anyways. Instead of grinding Twilight Forest for steel leaves, grow a crop in peace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Steeleafranks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2339,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1808,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:fertilizerBio","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plants that make their own fertilizer?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sign me up! This plant will create fertilzer ingredients for you. \n\nDecent plants to cross to get Fertilia are spidernip, venomilia, or zomplant. Watch out for venomilia though, not only is it poisonous, it also promotes weed growth!\n\nYou can make Forestry fertilizer with the drops from this plant in a mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Fertilia","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""}]}]},{"questID":1809,"preRequisites":[1927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:HoneyDrop","Count":1,"Damage":2000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Renewable oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oil from crops? Makes as much sense as oil from bees!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Oilberries","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1810,"preRequisites":[1187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boost your speed v 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High speed transition and booster tracks get your carts moving at really ridiculous speeds. Do not use normal track without several transition tracks or else your cart will explode. Do not try turning at high speed or, you guessed it, your cart will explode."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":8,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.transition"},"Damage":26865,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1811,"preRequisites":[1874,989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":131,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEven LARGER tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"4000 buckets not enough storage? Stockpiling diesel for a lifetime? Try a Super Tank 2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":131,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1812,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30667,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTeflon Don","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make PTFE, aka Teflon, you only need a few steps. \n\nThe first one is hydrofluoric acid. If you have not reached the moon yet, the best sources for fluorine are hammering sandstone for a chance at fluorite and centrifuging stone dust or black granite dust for biotite. You can also get small amounts from Lepidolite in salt veins and Mica. Mix it with some hydrogen to get hydrofluoric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30014,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30667,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":110,"Damage":2848,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1813,"preRequisites":[1812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30668,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChloroform","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next step is to mix methane and chlorine to make chloroform. Make sure you have your circuit set correctly.\n\nNow is probably a good time to look at stockpiling chlorine. Look for salt ores, or lapis veins. You can also make salt water with ghast tears. Better get started with IC2 crops, you will need a lot of chlorine later!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30668,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":944,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1814,"preRequisites":[1813],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11473,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTetrafluoroethylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Liquid hot plastics smell great, don't they? Mix your hydrofluoric acid and chloroform to make tetrafluoroethylene. React the TFE with oxygen to make molten PTFE. Finally a fluid solidifer will make bars for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30667,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30668,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30666,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":11473,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32408,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1815,"preRequisites":[1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":132,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHow much is too much fluid?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There is no limit to how much fluid you might want to store. Make yourself some super tank III's for all your bulk storage needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":132,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":32670,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1816,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":823,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Calcite getting you down?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having a hard time finding that Lapis vein for some calcite? I'll trade you some for your hard earned coins and some stone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":823,"OreDict":""}]}]},{"questID":1817,"preRequisites":[477],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #7: Upgrade tier 8 - Electrum Flux Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the more advanced materials like Cosmic Neutronium, Tritanium and Awakened Draconium you need more than 9000K. Upgrade your EBF to 9900k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1818,"preRequisites":[1333,216],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Essentia Generator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having one Essentia Generator per Essentoia type seeems unpracticable.... Better make a Large Essentia Generator and burn all this Essentia in parallel! As another Bonus, this Generator produces 20x the Energy a Single Block Machine will produce. You might need more Magic Containment Casings than this Quest asks for."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13000,"OreDict":""},{"id":"EMT:EMTMachines","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12988,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":25,"Damage":95,"OreDict":""},{"id":"EMT:EMT_GTBLOCK_CASEING","Count":50,"Damage":1,"OreDict":""},{"id":"EMT:EMT_GTBLOCK_CASEING","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIV","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Avaritia:big_pearl","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32088,"OreDict":""},{"id":"Thaumcraft:blockEssentiaReservoir","Count":32,"Damage":0,"OreDict":""},{"id":"thaumicenergistics:storage.essentia","Count":2,"tag":{},"Damage":3,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":16,"Damage":2,"OreDict":"ingotIchorium"}]}]},{"questID":1819,"preRequisites":[1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCircuit Programmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Circuit Programmer is a useful tool that will enable you to program integrated circuits without having to deal with 24 different crafting recipes. Just charge it, put the Integrated Circuit in it and click on the Number you want it to be programmed to."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.BWCircuitProgrammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1820,"preRequisites":[1241,1480],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":64,"Damage":12600,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lLapotronic Energy Storage Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The L.E.S.U. is one of the oldest Machines that are aviable in Gregtech, its origins are in Minecraft 1.3.X, now its redone to fit into this Modpack. You can add a nearly infinite number of LESU casings to it and you'll have a hughe Energy Storage. You might also live inside your Battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12600,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.blockores","Count":128,"Damage":526,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1821,"preRequisites":[747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12634,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCable Diodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you just need a Diode, either to prevent reflow in your complex Energy System or on Thermos Server's Chunk borders. Make one 4A Diode and get a 2A one for free!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12618,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1822,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_Machinery_Casings","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lManual Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Annoyed by building Chains of transformers? Dont want an Explosion Risk at your base? Want to use these fancy 64A Hatches and Dynamos from TecTech to convert your power? Make a Manual Dynamo and convert it all!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12697,"OreDict":""},{"id":"bartworks:BW_Machinery_Casings","Count":1,"Damage":0,"OreDict":""},{"id":"bartworks:BW_Machinery_Casings","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":44,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":7,"OreDict":""}]}]},{"questID":1823,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:gt.GT2Destructopack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMobile Trash Can","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GT2's Destructorpack is a mobile Trashcan. Might be handy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.GT2Destructopack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1824,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:item.GT_Rockcutter_Item_LV","Count":1,"Damage":37,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRock Cutter LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Rock Cutter is an unbreakable and Silk-touched Mining Device. It will enable you to mine blocks without damaging them, like glass or stone, while it is charged."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:item.GT_Rockcutter_Item_LV","Count":1,"Damage":37,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1825,"preRequisites":[1820],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemDustSmall","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - LV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Adding this much Cells anywhere to your LESU will upgrade it from ULV to LV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemDustSmall","Count":1,"Damage":9,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":4,"OreDict":""},{"id":"IC2:itemToolPainterBlue","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1826,"preRequisites":[1825],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - MV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Adding an additional ammount of Cells will not only cause your storage capacity to rise, but also will enable MV Voltage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":12}},"Damage":12,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1827,"preRequisites":[1826,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPlates","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - HV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV Tier upgrade first needs over a Stack of Casings. More Casings, more Energy, more Capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":96,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32438,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1828,"preRequisites":[1827,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:genericSlab","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - EV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Close to 8 Stacks of LESU Casings, this upgrade enables EV Voltage on your LESU. It's easy until now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":477,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""},{"id":"ThaumicHorizons:focusIllumination","Count":1,"Damage":12,"OreDict":""},{"id":"thaumicbases:genericSlab","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1829,"preRequisites":[1828,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - IV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"24 Stacks of LESU Casings. These do fit in your Inventory, but crafting them is another problem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":1536,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":30,"Mate":{"Chromosomes":[{"UID1":"extrabees.species.lapis","UID0":"extrabees.species.lapis","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.lapis","UID0":"extrabees.species.lapis","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1830,"preRequisites":[1829,1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Avaritia:Singularity","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lL.E.S.U. Upgrade - LuV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach the highest Voltage Tier the LESU can offer, you need to add an additional amount of LESU Casings. 8193 Casings in total (all upgrades below and these additional) enable the LuV Input Voltage. To submit these you'll need to use the Submit Station from the Steam Tab, since your inventory isnt big enough to hold 96 Stacks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":6144,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""},{"id":"supersolarpanel:SingularSolarPanel","Count":1,"Damage":0,"OreDict":""},{"id":"Avaritia:Singularity","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1831,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCircle Shapes give me comfort","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To build a Windmill you will need a Dispenser, but that item is locked behind the next Tier. Go and find one in a Witchery Circle. They look like small versions of Stonehenge.\n\nLook for the main quest in Multiblock Goals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31032,"OreDict":""}]}]},{"questID":1832,"preRequisites":[48,1831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_PaperRotor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lGrinding with Wind","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Windmill is a grinder that uses the force of wind to macerate Items and Blocks. It is pretty slow and won't macerate ores well. You will only get one crushed Ore from it. However it does give you a bonus when you try to macerate other things. That bonus depends on the Item inserted, for example Netherrack has a chance to give two instead of one dust and Wheat will always give one and a quarter flour.\n\nThe dispensers replace a clay block in the walls. Put anything you like in the interior - a bed, stairs, torches, etc.\n\nNormal multiblock rules apply - do not cross chunk boundaries with this multiblock.\n\nIf this is your first Gregtech multiblock, as with all the rest you will need to whack the controller with a softhammer to activate it.\n\nIf you have troubles forming the multiblock, try breaking and replacing the controller block.\n\nThe controller can be fed items via hoppers etc to allow for larger batches. Just don't allow the dispenser to fill up or it will void outputs.\n\nThe rotor blades will run if the controller is disabled or has no recipe. Remove the blades when not in use or else they'll be used up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:brick_block","Count":44,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:hardened_clay","Count":45,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31032,"OreDict":""},{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28032,"OreDict":""},{"id":"bartworks:craftingParts","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"bartworks:BWRotorBlock","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12698,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31032,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:leather","Count":12,"Damage":0,"OreDict":""},{"id":"minecraft:carpet","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:paper","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1833,"preRequisites":[1817],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #8: Upgrade tier 9 - Awakened Draconium Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the most advanced materials like Infinity Catalys or Infinity need more than 9900K. Upgrade your EBF to 10800k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIV","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1834,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mushrooms","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMushroom Biomes ? why there so many?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GNTH pack is made for the rwg worldgen. If you run the vanilla biomes worlgen you get huge Mushroom biomes over the map. Go and generate a new world before you continue this one. If you run a server put this inside your server.properties file.\n\n§5 §5§4§3§2§3§b§4§3§2§3§4§5§l\"level-type=rwg\"."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WitchingGadgets:item.WG_MagicFood","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1835,"preRequisites":[128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":921,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTantalum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tantalum is used in the GT and Ender IO Capacitors and also a source for niobium. It is a cheap essentia source for Thaumcraft later on.\nYou will find Tantalite Mix at Y 20-30 on the Overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":921,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":838,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":943,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":831,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:celerysoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":26080,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1836,"preRequisites":[665,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:mortarandpestleItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kitchenware 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gregtech tools like the knives get used up when crafting foods. Pams Tool like the Cutting Board, Juicer or the Bakeware can last forever.\n \nAfter you reach stainless steel in HV you can make these forever tools."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:juicerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:bakewareItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:mortarandpestleItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:cuttingboardItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:presser","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:churn","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:oven","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:quern","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1837,"preRequisites":[1158],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodPick","Count":1,"tag":{"ench":[{"lvl":1,"id":32}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ardite and Cobalt Mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood is much harder and durable material than you imagined at first. Making Tools and Armor give them very unique features. With a Pick you can mine at cobalt Level which means you can harvest ardite and cobalt without a EBF."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodIngot","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodPick","Count":1,"tag":{"ench":[{"lvl":1,"id":32}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1838,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:tile.TFSapling","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Low on Sticks?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stay in the Twilight Forest you will find the Canopy Tree. This big tree generates a lot of logs for your Coke ovens and some roots when planted which give sticks. Be careful that no building or chest right beside or above the Tree otherwise the Tree replaces it. You might find a use for this, to sinfully get above a ceiling you really shouldn't."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFSapling","Count":16,"Damage":1,"OreDict":""},{"id":"TwilightForest:tile.TFFirefly","Count":4,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFLog","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1839,"preRequisites":[1158,1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodPlate","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood Armor is a magic armor with some special enchants. The Helm gives aqua afinity, the shoes feather falling, the plate and the legs extra protection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodHelm","Count":1,"tag":{"ench":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodPlate","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodLegs","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodBoots","Count":1,"tag":{"ench":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.ironwoodSword","Count":1,"tag":{"ench":[{"lvl":1,"id":19}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodAxe","Count":1,"tag":{"ench":[{"lvl":1,"id":35}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodShovel","Count":1,"tag":{"ench":[{"lvl":1,"id":34}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1840,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:saltItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spice up with some salt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will need massive quantities of chlorine for future plastics. There are underground salt water deposits on the Moon, Mars, and Europa. Use a seismic prospector to locate one and build the Underground Fluid Drill from multiblock goals to extract."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1841,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMoron's Manual for Massacring Monsters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have not noticed, this world is a true hellscape full of Special Mobs and Infernals around every corner. Unlike vanilla, a player has to actually stay aware and pay attention to what they are fighting. Here are some tips.\n\nIf an infernal has Vengeance, don't shoot it with your 56 damage crossbow!\n\nA high health infernal with regeneration is hard to kill. Even worse if it is a witch that can also heal itself. In those cases, run like hell, or bring a soul vial to capture it and throw it into Mount Doom. \n\nWatch out for zombies with fishing poles - they can pull you into them. And zombies with a bow and arrow - they can shoot you back!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1842,"preRequisites":[1841],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gunpowder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCreeping dread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creepers can cause the worst problems. \n\nDrowning Creeper - when it explodes, it surrounds you in a ball of cobble filled with water. Not only do you have to escape, but the cobble is infested with silverfish! And those silverfish are all infernal as well. The best way to deal with it is to first escape up or down. If you have to clear the cobble ball, first clear the water. Surrounding the cobble with a dirt moat will keep the silverfish inside and unable to hide. Put down punjis, quicksand, or lava, and/or spectral glass. Make a wall with a 1x1 window and use that to break the cobbles - fishing silverfish are especially dangerous.\n\nEnder Creeper - Randomly teleports you a short distance - possibly deep underground. "}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1843,"preRequisites":[1842],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCaught in the web","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spiders to watch for...\n\nWitch spiders reflect missile damage back at you. Look for the red X on their back, and draw your melee weapon and prepare for close combat.\n\nMother spiders will spawn a lot of baby spiders, some of which may be infernal.\n\nA flying spider can grab the oblivious flyer.\n\nGhost spiders are partially invisible and can pass through thin walls."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1844,"preRequisites":[1843],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lPorkchops with attitude","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The only zombie pigman to watch out for is the Vampire Pigman. He hardly takes any damage unless you use a wooden sword as a stake or have a magical sword."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:porkchop","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1845,"preRequisites":[1843],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFlaming idiots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Blazes are all infernals, and all nasty. Avoid like the plague. Get awesome weapons, awesome armor, and prepare for a fight. \n\nAlternatively, figure out a way to destroy them with technology.\n\nAlternative to the alternative, figure out another way to get blazepowder and blaze rods."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:blaze_powder","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1846,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:floodGateBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFilling the world with fluids...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need to make a lake? Look no further than the Flood Gate. It will fill the world with any fluid you provide it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BuildCraft|Factory:floodGateBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1847,"preRequisites":[861],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:spectreKey","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPortable hole? How about portable chunk!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With further research, I've discovered a key made of spectral iron can open a portal into a pocket dimension. It's only one chunk wide and quite short, but you can increase the height by adding more ectoplasm to the spectre core in the room. Perfect for retrieving ores from far planets, or as a quiet refuge."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:spectreKey","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1848,"preRequisites":[692,78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:spectreHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor of the Dead","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've found another use for Ectoplasm - making Spectral Iron. An armor made from it is better than diamond and highly enchantable.\n\nIt also will drop healing orbs that will heal the nearest player when picked up. \n\nUnfortunately, a side effect is that you'll become partially transparent. Side effect, I mean bonus feature!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:spectreHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1849,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:oak_stairs","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lTell me when we reach 20","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jumping up and down everywhere is exhausting, and makes you really hungry. To reduce your food depletion, make stairs instead of jumping."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:oak_stairs","Count":8,"Damage":0,"OreDict":"stairWood"},{"id":"minecraft:stone_stairs","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ladder","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""},{"id":"harvestcraft:suaderoItem","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1850,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:fan","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll we are is dust in the wind","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Looking for an alternative to flowing water for your mobfarm? Tired of getting poked walking through your fields of oreberries? Use a fan to blow mobs or items where you want. Apply a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:fan","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1851,"preRequisites":[1831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_SimpleWindMeter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lStick a finger in the air","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But you really do care. Trying to find a good place to locate a windmill? You could just build one and see, or try this fancy windsock.\n\nPaper rotors are great in low winds.\nWool rotors are cheap.\nLeather rotors are durable.\n\nDon't leave the rotors in the windmill when you aren't using it, it will use up durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:BW_SimpleWindMeter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":5,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":4,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1852,"preRequisites":[1851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_LeatherRotor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAround and around she goes...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...But she'll never stop because you'll always have something to grind. You can use a hopper to keep the windmill full of items to process. Just remember to retrieve them from the dispensers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:BW_CombinedRotor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":1,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"minecraft:hopper","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1853,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMoron's Manual for Effective EBFing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to the latest Moron's Manual, Effective EBFing!\nThis manual covers common problems encountered when using the GregTech 1000 Electric Blast Furnace.\n\nSetup\nWhen setting up your EBF, make sure to place it a few chunks away from where you will spend most of your time. Pollution is nobody's friend!\n\nDuring setup, make sure the center of the EBF is hollow. Sometimes things can sneak in there without you noticing, like a Thaumcraft light orb!\n\nMake sure your muffler faces *out*, not *in*. The EBF can't work if it is not spreading those delightful odors!\n\nWhen placing your power hatches, make sure to minimize the distance between any generators and the EBF. Especially at LV, those few meters make a big difference! Every amp of energy travelling over a cable loses a little bit - and you'll need as much as you can get!\n\nOutput hatches and buses will automatically push into tanks and inventories placed next to them. They will also void if they are full, so keep an eye on them!\n\nWhen build multiple EBFs, the GregTech 1000 Electric Blast Furnace can share walls. This can save you on input and output hatches too. Not recommended for energy and maintenance hatches!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2305,"OreDict":""}]}]},{"questID":1854,"preRequisites":[636,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:applejellysandwichItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Just like Mom used to make","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jelly sandwiches are a great food source with decent saturation and easy to make. Almost any fruit can be converted to jelly with sugar and a saucepan. There are a few different nut butters available. Peanuts can be found in Ground Gardens in forest, mountain, or taiga style biomes. Cashews are trees located in jungles or swamps. Chestnuts can be found in warmer forests. Pistachios can be found in jungles. Many of these saplings are also available for trade from villagers.\n\nUse a Forestry Worktable to keep all your recipes together in one spot for easy crafting.\n\nSome sandwiches have better saturation than others, so be sure to check before buying that sapling!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:saucepanItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:applejellyItem","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:bread","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"harvestcraft:applejellysandwichItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cherryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:blackberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:watermelonjellysandwichItem","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1855,"preRequisites":[637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I like big sandwiches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have dough, there are several options for large sandwiches. They offer great saturation restoration and are easy to make.\n\nThe veggie and cheese options aren't quite as good and need more work to produce.\n\nThere are also normal sized varieties of these sandwiches if you need more diet choices."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32565,"OreDict":""},{"id":"minecraft:cooked_porkchop","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32244,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32243,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32241,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32242,"OreDict":""},{"id":"dreamcraft:item.CoinCook","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1856,"preRequisites":[469,444],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:blueberrysmoothieItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lStaying cool in the heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you happen to be near a snowy biome, you can harvest the snow to make delicious smoothies. They are better than eating the berries directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":4,"Damage":1,"OreDict":""},{"id":"minecraft:snowball","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1857,"preRequisites":[637,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:chickenpotpieItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"No chicken escapes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you like pies? I sure do! There are many varieties of pies available for you. The chicken pot pie is one of the easiest to make. Just a chicken, potato, carrot, and some dough. The fruit pies are a little simpler, so don't quite restore as much saturation, but are great for filling tummies while you wait for the best foods to wear off."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:chicken","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32559,"OreDict":""},{"id":"minecraft:apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:chickenpotpieItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:applepieItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:cherrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberrypieItem","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1858,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMagnet","Count":1,"tag":{"Energy":100000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMagnetic personality","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you haven't received one in a lootbag already, you can craft a nice magnet with a vibrant crystal. It doesn't work great on servers if you are moving around too fast, but it makes harvesting crops a lot easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMagnet","Count":1,"tag":{"Energy":0},"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1859,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Need some leather?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some leather with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1860,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Need some wool?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some wool with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wool","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1861,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Buy some eggs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some eggs with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:egg","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1862,"preRequisites":[1542,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine3","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Robotic crop pickers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crop Harvester will pick your crops for you, which is great. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockMachine3","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1863,"preRequisites":[579],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:dropFilter","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThrowing out the trash","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Already have barrels full of cobblestone? The voiding drop filter can be setup to automatically void any item on pickup. Cobble, dirt, arrows, saplings,etc. It's handy for when you don't have much room for junk.\n\nTo use, rightclick the RT item filter in-hand. Put the things you want voided in the item filter list. Rightclick the voiding drop filter, and put the item filter inside."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:dropFilter","Count":1,"tag":{"Inventory":{"Items":{}}},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"berriespp:BppPotions","Count":1,"Damage":8,"OreDict":""},{"id":"RandomThings:filter","Count":1,"tag":{"metadata":1,"oreDict":0},"Damage":1,"OreDict":""}]}]},{"questID":1864,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNo self-healing tools here...yet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Experienced players might be confused by finding the Tinker's Construct Ball of Moss in NEI without a recipe. \n\nIt is possible to craft it, but on this world you have to first gain expertise in Thaumcraft. Go and become a dangerous wizard and you'll gain the power needed to craft the Ball of Moss and make your tools indestructible.\n\nThe Ball of Moss is in the GTNH tab of the Thauminomicon.\n\nIn general, if an item does not have a recipe, it might be gated by Thaumcraft. NEI will not show the recipe until you have unlocked it.\n\nHave a beer to prepare for your long journey."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32119,"OreDict":""}]}]},{"questID":1865,"preRequisites":[97,745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEnderman Smelterman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need enderpearls? Getting them by killing endermen can be dangerous. Instead of doing that, put an enderman into a smeltery with hot fluids and use a gem cast to get guaranteed pearls. \n\nHigher the hit points, the more pearls you get. If you can find a regenerating enderman, or an enderman spawner, you'll have all the pearls you would ever want. Later on with EnderIO you can even create your own powered spawner to make endermen on-demand.\n\nUse a nametag on a regenerating enderman to make sure he doesn't despawn. You'll want to keep him from seeing the sky or else he'll teleport away.\n\nIf you haven't found a regen enderman yet, you can buy enderman spawn eggs to put into your smeltery with coins. Maybe you'll get lucky and get a regenerating one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:name_tag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1866,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lOptions for finding aluminium at this age","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It can be hard to find aluminium gravel ores on old servers, or unlucky world seeds. Alternative to aluminium gravel ores are\n\n- Planting the Aluminium ore berries from the Smeltery quest\n- Searching for Aluminium bars in chests\n- XP buckets\n\nOnce you reach LV, you can electrolyze Sapphires and get tiny dusts from processing various ores. \nAt MV you can use clay dust or red granite dust.\nCheck NEI."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2019,"OreDict":""}]}]},{"questID":1867,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Motor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most machines in MV need a motor as well. If you have not built a polarizer already, go back to Tier 2 Quests and craft one. Motors need magnetic steel rods and alu rods, 2x cupronickel wires and copper cables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23355,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":23019,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1341,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1868,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32063,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUltra Low Power IC","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"MV Energy hatches need ultra low power ICs. Go and craft some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32062,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32063,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24542,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1869,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1116,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHydrogen, methane or some farts... (Natural gas) MV ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some centrifugal processes leave gases behind like hydrogen or methane. Centrifuge some brown and yellow limonite to get hydrogen or dump your unused food in a centrifuge to get methane gas. Wood will even give 60 mb per log. Maybe it's time to build a forestry tree farm. You can also setup a Benzene based operation (see quest to the right). Or you can start refining oil into refinery gas or naphtha to burn.\n\n§4Gas turbines produce half the pollution of combusion generators, but their fuels are generally not as efficient. Choice is up to you which power source you use.\n\nMV Gas Turbines have a 90 percent fuel efficiency."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1116,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30742,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1870,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiesel, oil or maybe creosote? MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably collected a ton of creosote and maybe even have built your first Electric Blast Furnace. Creosote will be a good fuel for the moment. So try to build a few of the combustion generators and use them besides steam as a secondary power source. Small generators will only use fuel if there is EU demand.\n\n§4Advanced Combustion Gnerators have a 90 percent fuel efficiency.\n\nThis will also unlock new quests in the Armors and Jetpacks tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30707,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1871,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32670,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lField Generator I","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field Generators are powerful devices. It will be used in high tier Tanks, Chests, in UU Matter Production or in Teleporters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32670,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17532,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1872,"preRequisites":[847],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30650,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lVinyl Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vinyl Chloride is the base product for making PVC for advanced pipes. These Pipes are needed in LuV machines or the Hermetic Casings for Super Tank II's."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30650,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1873,"preRequisites":[1872],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.99","Count":1,"Damage":649,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lPoly Vinyl Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polyvinyl Chloride is PVC which can be used for the PVC Pipes.\nYou need Vinyl Chloride and Oxygen to make it.\nYou'll also want it for SMD capacitors later.\nDo the recipe twice if you want to clean out your reactor.\nCells carrying molten polyvinyl chloride carry 144L, perfect for 1 ingot or plate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30650,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":62,"Damage":649,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1341,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30023,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1874,"preRequisites":[1873],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17649,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lPVC Sheets","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"PVC Sheets make good item pipes, and can also be used for circuit boards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":17649,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5692,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":16,"Damage":649,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1875,"preRequisites":[1099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:soulBrazier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A soul-ution for warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Soul Brazier from Thaumic Exploration will store your permanent warp. \n\nAs long as it has Ignis centi-vis and Mortuus essentia fed from underneath it will stay active, even while you are in other dimensions. Turning it off or running out of power will dump all that warp back into your body, so watch out.\n\nContaining warp does have a bit of a downside - taint. You'll need to figure out a way to stop that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:soulBrazier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":64,"tag":{"Aspects":[{"amount":8,"key":"mortuus"}]},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1876,"preRequisites":[1906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":473,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lAdvanced Amplifabricator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get UU Amplifier out of you scrap you need an Amplifabricator. You can't make UU Matter before HV so its a good time to start with it now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":473,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30721,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemScrapbox","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1426,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1877,"preRequisites":[1876],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":461,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUU Matter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next you will need a Mass Fabricator to make UU matter. This matter can be used make more things.\n\nThe downside is you can't build an HV one right now. Build an LV one and power it with 8 amps of LV to get your first UU matter. Watch your voltage levels and currents!\n\nIf you do not have a field generator, go do the tetrafluoroethylene quest and build some. \n\nFor now, just stockpile the UU matter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":461,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30721,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"EnderIO:blockTank","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1878,"preRequisites":[1248],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32707,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lData Orbs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Data Orbs are high tier data sticks to replicate materials or used as data storages."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32082,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32707,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32033,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1879,"preRequisites":[1880],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":484,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lCreate new material out of pure energy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Replicate material out of pure energy. Scan your elements first, like Hydrogen, Iron, Gold etc, and save them on a Data Orb. Later on you can use your replicator to copy this item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32707,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":482,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1880,"preRequisites":[1878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32671,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lField Generator II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field Generators are powerful devices. It will be used in high tier Tanks, Chests, in the Matter Production or in Teleporters.\nThe replicator needs it also. If you have not unlocked Tungstensteel go and do that now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32671,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1881,"preRequisites":[21],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:clay_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Clay for pennies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hard to find that clay? Have a stack for some coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1882,"preRequisites":[945],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2879,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Tired of grinding reeds?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I can trade you some chads for coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":50,"Damage":2879,"OreDict":""}]}]},{"questID":1883,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":36000,"globalShare":1,"questLogic":"AND","name":"Glassy eyed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...from all the mortars you have to use to make glass dust? Have some for trade."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2890,"OreDict":""}]}]},{"questID":1884,"preRequisites":[1009],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Shhh, don't tell 0lafe...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But here is a nice quest to get cheap fish catchers!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:cooked_fished","Count":40,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:blockFishTrap","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1885,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockCrop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Wood for sheep?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No thanks! But how about some crop sticks for coins and logs?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":1,"Damage":0,"OreDict":"logWood"},{"id":"dreamcraft:item.CoinAdventure","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1886,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFertilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Manure for fertilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I mean, what else are you going to do with this junk?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:spider_eye","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:rotten_flesh","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:dirt","Count":64,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":128,"Damage":0,"OreDict":""}]}]},{"questID":1887,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectric Furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This quest was suggested by Shawnbyday. If you have a lv machine hull, two circuits and a few cables spare just craft it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":261,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1888,"preRequisites":[534],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":64,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lRepairing your Hazmat Suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Be careful to wearing you hazmat suit all the time. The duarbility is not high. Even just falling a few blocks will damage the boots quickly. \nYou can repair your suit before you can craft a new one in late LV Age using some rubber sheets and a glue bucket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:buckets","Count":4,"Damage":25,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1889,"preRequisites":[160,600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12096000,"globalShare":1,"questLogic":"AND","name":"Healing Axe 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After party loot was limited to one loot per party not everyone can have a healing axe for free.\nGo and buy some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:delightedmealItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:rainbowcurryItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:epicbaconItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1890,"preRequisites":[1413,1705],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":215,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An IV asembler is required to make enriched Sunnarium for HV Solar Pannels . Other recipes are twice faster than with an EV assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":215,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1891,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDesh, Scheelite, Tungstate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is the material you need but first go find some desh scheelite and tungstate mix on Mars. Look at Y 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1892,"preRequisites":[1812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Fluorine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some fluorine? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30014,"OreDict":""}]}]},{"questID":1893,"preRequisites":[783,1894,1200],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32662,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFluid Regulator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Turbines require precise amounts of fluids or else they will explode. Use the fluid regulator on the pipe attached to the input bus to control the rate of fluids into the turbine. To raise the fluid limit, look at the right side of the regulator and:\n\n1L - Right click with an empty hand\n16L - Right click with a screwdriver\n256L - Right click with a screwdriver while sneaking\n\nTo lower the fluid limit, do the same while looking at the left side."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32662,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1894,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGas Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Large Gas Turbine is more fuel-efficient than singleblock turbines and can have lower pollution with upgraded mufflers.\n\nYou will also need a muffler, maintenance hatch, input hatch, and dynamo hatch. Don't forget a fluid regulator. It can be a low tier fluid regulator since the fluid/tick necessary is much less than steam.\n\nSelecting a rotor is pretty easy. Take the EU/t of your dynamo hatch, and select a rotor that has (optimal gas flow * efficiency) that is close. Now, setting up the fluid regulator is hard. The easiest way is to let in 1 L/t and use the hand-scanner to tell you the optimal flow rate. Otherwise divide the optimal gas flow by the EU/L of your gas and round down. \n\nFor example, if we are using a normal vibrant alloy turbine with 1800 EU/t optimal gas flow and 115 percent efficiency with benzene. \n1800/288 = 6.25\nRounded down that is 6L/t. 6 * 288 * 1.15 = 1987, perfect for an EV dynamo.\nOther gases may output slightly higher or lower EU depending on how close to optimal they can reach. For example refinery gas\n1800/160 = 11.25\n11 * 160 * 1.15 = 2024, still OK for an EV dynamo\nHowever hydrogen at 20 EU/L is dangerous because\n1800/20 = 90\n90 * 20 * 1.15 = 2070, above 2048, so BOOOOM. You'll have to use a multi-amp dynamo hatch to prevent an explosion.\n\nOther useful turbine options at EV are normal ardite and galgadorian.\n\nFor additional choices, see the Large Turbine Calculator in Discord."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":29,"Damage":10,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1895,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Manganese Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can't find Manganese ore because its not generated early game and you need to grow your Pyrolusium crop? Buy some Ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":80,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":8,"Damage":31,"OreDict":""}]}]},{"questID":1896,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_Naquadahcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Fuel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to upgrade the Nuclear Reactor with Naquadah Fuel Rods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_Naquadahcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1897,"preRequisites":[1896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_MNqCell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadria Fuel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want MOX like behavior from Naquadah? You have to upgrade it to Naquadria!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_MNqCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1898,"preRequisites":[191],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumDual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDouble the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1899,"preRequisites":[193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDouble the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1900,"preRequisites":[1899],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1901,"preRequisites":[1898],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§l4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1902,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockFusedQuartz","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNo Boom Tomorrow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a nuke, you can cause some real catastrophic damage to your base. You can either place it 20 chunks away, or surround it with blast proof materials. Fused quartz is relatively cheap, and can be converted into a variant that glows, or a variant that blocks light. Make some fused quartz and I'll give you some enlightened fused quartz.\n\n§4Alternatives include Warded Glass from Thaumcraft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockFusedQuartz","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockFusedQuartz","Count":64,"Damage":2,"OreDict":""}]}]},{"questID":1903,"preRequisites":[770],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§e§9§lHV Energy Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV energy hatch is crucial to a fast EBF that can do high tier recipes. You will need to make He coolant cells or NaK coolant cells. Follow NEI to figure out how."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1904,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30004,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHelium is not just for balloons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Higher tier superconducting wires and energy hatches will require helium. Compressing air and liquifying it requires 1802 compressed air cells to get 1 He cell. It is better to make it from Endstone dust or Monazite from the Moon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1905,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1154,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLarge Heat Exchanger - Fermat's Last","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have discovered truly remarkable instructions for this machine which this margin is too small to contain.\n\n\n\n\nInstead, goto https://tinyurl.com/GTNH-LHE and read it there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1154,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1906,"preRequisites":[1014],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":333,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRecycle for the Environment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have too much wood, saplings, netherrack or other garbage recycle it and get scrap. You can use it for uu amplifier to make uu matter cheaper.\n\nCertain items such as cobblestone, stone, and tiny/small dusts are too easy to make and don't give any scrap. But otherwise any excess dusts or garbage you can throw in here to get scrap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":333,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemScrapbox","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1907,"preRequisites":[1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":135,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOne in a million","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or 4? Need to store ludicrous amounts of cobble? Stone dust? Saplings? Super chests are the thing to use. A simple Tier 1 Super Chest can store 4 million items, worry free. You will need to take items out manually 64 at a time, or use conveyors etc to extract them. \n\nSticking so many items in such a small space does come with a price - no more portability. You better be really sure this is where you want those millions of logs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":135,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1908,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:NetherFurnace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLucifer's little helper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With an alloy smelter and some netherrack dust you can make Nether furnaces, which are extremely efficient cooking machines. Very handy for someone needing a lot stuff furnaced in a jiffy.\n\nThe only downside is that iron furnaces can be used in the EBF later on. Nether furnaces cannot. Then again, Nether dust is practically free, so what's the loss? You can always use them to bake stacks of bread!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:NetherFurnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1909,"preRequisites":[1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":137,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHow much is too much cobblestone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A super chest III is just ridiculous. Who would possibly need to store 16 million items? You, that's who."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":137,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":32670,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1910,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":1650,"BaseDurability":32400,"BaseAttack":17,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":1650,"ModDurability":0,"MiningSpeedExtra":1800,"Shoddy":0,"RenderHandle":1650,"Accessory":1650,"MiningSpeed":1800,"Unbreaking":0,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":32400,"MiningSpeed2":1800,"HeadEXP":0,"Head":1650,"Attack":17,"Handle":1650,"Broken":0,"Extra":1650,"RenderAccessory":1650,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"�fVanadiumsteel Hammer"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an MV extruder you can make the next level of Tinker Tools - based on Vanadiumsteel parts with Damascus steel rods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartHammerHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":1,"tag":{"material":"DamascusSteel"},"Damage":1634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TGregworks:tGregToolPartLumberHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""},{"id":"TGregworks:tGregToolPartExcavatorHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":1,"tag":{"material":"DamascusSteel"},"Damage":1634,"OreDict":""}]}]},{"questID":1911,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCraftsman used to mean quality","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an EBF you can make vanadiumsteel GT tools. With 192k durability they'll last you a long time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11371,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":16,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"Wood"}},"Damage":22,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1912,"preRequisites":[238,1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Material","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"3 plus 4, carry the 2...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When doing infusions, it's always good to know how close you are in stability. Once you get to HV you can make an Arcane Abacus to track your infusions. This makes infusions 100 percent safe, right??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Material","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":1913,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:Printing Press","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGut-enough for you? Bet you thought Newspapers were dead!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Typesetting Table and Printing Press will allow you to duplicate books, including enchanted books. The process is kinda complicated, so check out the Bibliocraft mod wiki page. You'll need to use XP to duplicate enchanted books, so now would be a good time to figure out how to collect large amounts...\n\n§4You'll need some Thaumium ingots. You can go Thaumcraft, find some in a chest, or try breeding Magical Metal Berries in IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.BiblioChase","Count":1,"Damage":0,"OreDict":""},{"id":"BiblioCraft:Typesetting Machine","Count":1,"Damage":0,"OreDict":""},{"id":"BiblioCraft:Printing Press","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:experience_bottle","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1914,"preRequisites":[1913],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":3,"id":35}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDo you feel unlucky?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well not any more! With some emeralds and a blank book, I'll give you a Fortune 1 you can use in your printing press. Once you have duplicated it a few times, you can combine the Fortune 1 books in an anvil to get a Fortune 2. Duplicate the Fortune 2 books to get a Fortune 3! \n\nWith a Fortune 3 book and a tier-specific item you can remove the trash item rewards from your loot bags. More good stuff!\n\nSoul Bound is another good enchantment, it will keep an enchanted item in your inventory in case of death."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:emerald","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:book","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":35}]},"Damage":0,"OreDict":""}]}]},{"questID":1915,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mudball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMud, can also be used for facials","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You may have found plenty of mud piles around the wetlands and thought of them as mere annoyances when jumping in the water or for that armor. Waste not! With your new extractor, you can pull out the clay hidden in the mud!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mudball","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1916,"preRequisites":[1478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32748,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWhere is that handyman when you need him?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Needs Maintenance cover will send out a redstone signal when the controller it is attached to requires maintenance. This is handy for the cleanroom you will need to build, since maintenance reduces cleanliness level and will cause voided recipes.\n\nFor the cleanroom you can place this on the top or bottom. For other machines you might want to place it on the side so you can have access to the front face. In that case, you can use a soldering iron and fine solder to have it emit a strong redstone signal that will penetrate through a block next to the cover."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32748,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1917,"preRequisites":[1916],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBEEEP BEEEP BEEEP","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knowing that your cleanroom needs maintenance is pretty important. Instead of just turning on a light, why not use a howler alarm? It will notify you up to 128 blocks away. \n\n§4§d§cWarning: May cause uncontrollable urine leakage when activated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:noteblock","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1918,"preRequisites":[1549],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trashcan","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lToo much fluid??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impossible! If you really think you have so much fluid that you want to just get rid of it, make a fluid trashcan. You can route as much excess creosote or whatever into it you want. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trashcan","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1919,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trashcan","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lToo much junk??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impossible! But if you really want to get rid of excess items, make yourself a trashcan. If you want to be really fancy, you can use a hopper with a lever next to it to make sure you only throw away items you really want. I mean, *I've* never thrown away a tool accidentally, nope, never me."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trashcan","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1920,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:itemLens","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Can't tell them apart either?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many plants look the same. Someday we'll update their DNA so they are each unique, but for now you can make a simple Plant Lens to at least identify species."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:itemLens","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Zomplant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1921,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":363,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSeparating molecules","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV centrifuge is required to separate out Tungstate from Lava. You'll need to start thinking about dedicating a setup just for lava centrifuging. Plus it's a good source of silver, tin, copper, and tantalum."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":363,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1922,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTransformers, roll out!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you get to HV you will start wanting to think about centralizing power generation and delivering power over longer distances. An HV to EV transformer will let you send power across your base without too much penalty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1923,"preRequisites":[1922],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNot enough amps?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about 4x more? A Hi-Amp transformer will transform 4 A to 16A. Great for setting up a large power grid and locating polluting power generators further from your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1924,"preRequisites":[1923],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12003,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMore than 4 amps? Crazy!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the truly insane, there is a 16 to 64 A power amp transformer. Just ludicrous!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12003,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1925,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"miscutils:blockDecayablesChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWhat's in the box?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of waiting around 7 hours with radium in your inventory waiting for it to decay? With a lead-lined box you can safely leave your radium and other materials and they will decay while you do real work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:blockDecayablesChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1926,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA quicker way to get around","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are playing single player or a local server, horses make a great way to get around. On nonlocal servers they can cause problems and desync if you have poor internet. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1927,"preRequisites":[1799],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Coal...from withereed?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Withereed is a source for coal, and more importantly, a good breeding stock for higher tiers.\n\nYou'll need coal blocks underneath it to fully mature."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Withereed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:coal","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1928,"preRequisites":[1927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemToolForgeHammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Son of Odin One-Eye","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"God of Thunder plant lets you increase your Thorium ore from the Nether by 4x. It also will give you Uranium you can use for Reactoria crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"God of Thunder","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":16,"Damage":96,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1929,"preRequisites":[1928],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemUran238","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Just cover your privates when you walk by","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reactoria crops will drop Reactoria leaves which will 4x your Pitchblende ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Reactoria","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":32,"Damage":873,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1930,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.liveRoot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ironwood is better than normal wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A necessary step for steeleafranks? Maybe not. But ironwood does make some great rollers for cooking, and a decent Sense blade.\n\nCreeperweed has a decent chance of giving liveroots seeds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Liveroots","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.ironwoodHelm","Count":1,"tag":{"ench":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1931,"preRequisites":[1797],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vegan leather?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to save your cows and horses for milk and ...glue... you can use Corium to make leather instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corium","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beef","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1932,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gunpowder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gunpowder? More like dirtpowder!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creeperweed can supply your gunpowder needs without dealing with bothersome explosions. It also has quite a few attributes, making it a good source of random crops.\n\nCorium can breed into creeperweed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Creeperweed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1933,"preRequisites":[1931],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Milk of the earth-mother","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Milkwart means you can get rid of all your cows. Isn't that nice?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Milkwart","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"netherWart","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1934,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:wovencottonItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cotton and string","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With some Farmer coins I'll trade you cotton and string. Perfect for making tanned leather!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":30,"Damage":0,"OreDict":""},{"id":"Natura:barleyFood","Count":24,"Damage":3,"OreDict":""}]}]},{"questID":1935,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:obsidianChisel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A better chisel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to decorate your base, you're going to need a better chisel. The Obsidian chisel lasts twice as long as the iron chisel. A diamond chisel would last 10x as long, but needs an LV cutting machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:obsidianChisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1936,"preRequisites":[1937],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:metalPattern","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Right tool for the job","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tinker's Construct has their own chisel tool variant, for converting Tinker blocks into different types. Not a lot of uses, but if you check NEI you can see what you can do."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:GravelOre","Count":4,"Damage":4,"OreDict":""}]}]},{"questID":1937,"preRequisites":[74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SpeedBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tinker's blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tinker's Construct offers a couple of useful blocks from the smeltery. Rough Brownstone takes Tin and Gravel and makes a block that lets you move a little faster. Cobblestone can be turned into Seared Stone, usable in the smeltery walls to make it larger without having to use clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SpeedBlock","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:Smeltery","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1938,"preRequisites":[1936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SpeedSlab","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Some handy uses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The TiCon chisel doesn't have a lot of uses, but here a couple of interesting ones. Use NEI to see other options for more decorations. You can also slab these blocks if you want something monsters cannot spawn on.\n\nBrownstone roads are slightly faster than rough brownstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SpeedBlock","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:decoration.multibrick","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:decoration.multibrick","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1939,"preRequisites":[1935,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:autoChisel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chisel all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If, for some reason, you need to chisel a large number of items, the autochisel is what you want."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:autoChisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1940,"preRequisites":[1939],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:upgrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chisel as fast as you can","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The autochisel speed is pretty slow. Craft some upgrades to make it faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:upgrade","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:upgrade","Count":1,"Damage":1,"OreDict":""},{"id":"chisel:upgrade","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"chisel:upgrade","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1941,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:marble_stairs.4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"My ancient enemy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The one place Chisel is weak is in stairs. Would be nice to have more variety, but later I'll show you how to make any block into a custom stair.\n\nYou can also search NEI for \"stairs\" to find stairs from other mods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:packedice_stairs.0","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:marble_stairs.1","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:limestone_stairs.0","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1942,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:lavastone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nChisel offers a wide variety of blocks. Searching NEI for \"chisel\" can gives pages and pages. Here is a small sample."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:antiBlock","Count":1,"Damage":15,"OreDict":""},{"id":"chisel:carpet","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:brickCustom","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"chisel:grimstone","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:lavastone","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:waterstone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1943,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fun party blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are even some really fun blocks available. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:warningSign","Count":1,"Damage":6,"OreDict":""},{"id":"chisel:obsidian_snakestone","Count":1,"Damage":1,"OreDict":""},{"id":"chisel:jackolantern16","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"chisel:technical3","Count":9,"Damage":0,"OreDict":""},{"id":"chisel:laboratoryblock","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:hexPlating","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},{"id":"chisel:futura","Count":1,"Damage":4,"OreDict":""},{"id":"chisel:futuraCircuit","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1944,"preRequisites":[1935,554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Concrete and GT stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chisel can also transform Concrete and GT stones into new interesting blocks. Some of the GT stone blocks will even prevent mobs from spawning on top. GT Concrete will let you run faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:concrete","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:concrete","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.blockgranites","Count":1,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockstones","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1945,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Builder's Wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The only thing going for the stone builder's wand is that it's cheap. It doesn't offer much in special modes, and doesn't last long either. But you can make a lot!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"betterbuilderswands:wandStone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandStone","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1946,"preRequisites":[1945],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Low tier wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Iron wand will last longer than the stone wand, and has a few modes. "}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandIron","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1947,"preRequisites":[1946],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mid tier wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier up wand is the Diamond wand. Has all kinds of fun modes. Just be careful using it, would hate to place a bunch of blocks accidentally!\n\nThe ultimate builder's wand you can get from the tab Grind, or not to Grind."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1948,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32727,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"No ASMR from your machines?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If the sounds of your machines are driving you crazy, you can add a muffler upgrade to block them out. \n\nNOTE: This also means you won't hear when the machine is out of energy. Also, once applied the upgrade cannot be removed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32727,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:sound_muffler","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1949,"preRequisites":[1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better put on that rubber suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Troll plant! What does it do? Troll you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Trollplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1950,"preRequisites":[1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:emerald","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who the hell is Bob?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want emeralds for trading or other uses? These are the source."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Bobsyeruncleranks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1951,"preRequisites":[1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.knightlyHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"And I dub thee Sir Knight","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need an infinite source of knightmetal? It will be a hard plant to grow. Make sure you provide plenty of nutrients, clean air, fertilizer and water. Don't cry to me if it dies. Any oreberry is a good source crop, with Cobalt and Ardite best, then iron and the rest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Knightly Oreberry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmetal4","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1952,"preRequisites":[492],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:trowelIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Botany","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Botany mod offers more colors for blocks and glass, and simple tile patterns or more complex patterns using a Tileworker. For now, we'll make an iron trowel.\n\nThis mod will make lots of butterflies, so make sure to do your gardening underground or under glass. The butterflies will spread and infect leaves around your area, making more butterflies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:trowelIron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":63,"Damage":0,"OreDict":""}]}]},{"questID":1953,"preRequisites":[1952],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:yellow_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finding Flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To start, you'll need to find some flowers. Then take your trowel and use it on some dirt blocks to turn it into soil. Next place your flowers on the soil to turn them into Botany flowers. If you have reached MV tier, check out the Slice and Splice tab for info on Genetics."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:yellow_flower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":3,"OreDict":""},{"id":"minecraft:red_flower","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1954,"preRequisites":[2096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Analyzer is a machine that acts in an identical way to the Forestry Analyzer, in that it reveals the genome of bees, trees, butterflies and flowers. It can also be used to reveal the gene present on the DNA Sequence. Unlike the Analyzer, the Analyzer uses power (RF or EU) and DNA Dye to stain chromosomes and determine the genome directly. The analyzer takes 15 seconds to analyse a single individual.\n\nInformation from these quests was taken from Binnie's wiki at https://binnie.mods.wiki/wiki/Tutorial/Genetics"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1955,"preRequisites":[1953],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:misc","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powder Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Botany uses various powders to enhance soil properties.\n\nRaise Ph - Ash Powder, Pulp Powder\nLower Ph - Mulch Powder, Sulphur Powder\nIncrease Nutrients - Fertiliser Powder, Compost Powder"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":1,"Damage":0,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":1,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":1,"Damage":3,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:misc","Count":64,"Damage":0,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":1,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":2,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":3,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":5,"OreDict":""}]}]},{"questID":1956,"preRequisites":[1955],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:misc","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Killing weeds and growing flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody likes weeds. Weedkiller will keep the weeds of your soil. \n\nBonemeal can be applied to germling flowers to make the mature faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":1,"Damage":15,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":7,"OreDict":""}]}]},{"questID":1957,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:soilMeter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Like having a County Extension Office in your hand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The soil meter will tell you the soil stats - how dry, how much nutrients, etc. You can amend the soil with the various powders so that it matches the requirements for your flower."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:soilMeter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:double_plant","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1958,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:pigment","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"80 new colors to play with","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you plant a vanilla flower, it is already mature. Cut it with a shears to get a germling you can replant to make more. Break the flower to get a mature flower. Turn the flower into pigment using a crafting table.\nTo get crosses, plant flowers next to empty soil blocks. Keep an eye out for weeds. Eventually a small germling will start growing.\nRemember, do this underground or in an enclosure or your TPS will regret it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:pigment","Count":4,"Damage":59,"OreDict":""},{"id":"Botany:pigment","Count":4,"Damage":78,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:pigment","Count":8,"Damage":1,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":2,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":11,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":75,"OreDict":""}]}]},{"questID":1959,"preRequisites":[1958],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:stained","Count":1,"tag":{"meta":24},"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glass of many colors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The pigments color an amazing variety of glass. Just one warning - unlike normal glass, this glass isn't fireproof."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:stained","Count":4,"tag":{"meta":59},"Damage":59,"OreDict":""},{"id":"Botany:stained","Count":4,"tag":{"meta":78},"Damage":78,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:stained","Count":16,"tag":{"meta":24},"Damage":24,"OreDict":""},{"id":"Botany:stained","Count":16,"tag":{"meta":21},"Damage":21,"OreDict":""}]}]},{"questID":1960,"preRequisites":[1958],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramic","Count":1,"tag":{"meta":59},"Damage":59,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ceramics","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With some clay and pigments, you can make pigmented clay. Put the pigmented clay in a furnace to get basic ceramic blocks. These blocks are great if you want an area of nice even colors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:clay","Count":4,"Damage":78,"OreDict":""},{"id":"Botany:clay","Count":4,"Damage":59,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:ceramic","Count":4,"tag":{"meta":78},"Damage":78,"OreDict":""},{"id":"Botany:ceramic","Count":4,"tag":{"meta":59},"Damage":59,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramic","Count":16,"tag":{"meta":75},"Damage":75,"OreDict":""},{"id":"Botany:ceramic","Count":16,"tag":{"meta":40},"Damage":40,"OreDict":""}]}]},{"questID":1961,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":20046},"Damage":16387,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mortar and tiles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make ceramic tile patterns, you need to convert your blocks into tiles. First make mortar, and then use the mortar with your blocks in a 3 block + 1 mortar pattern in the crafting table to get ceramic tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":20046},"Damage":16387,"OreDict":""},{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":15163},"Damage":15163,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":257},"Damage":257,"OreDict":""},{"id":"Botany:ceramic","Count":16,"tag":{"meta":77},"Damage":77,"OreDict":""}]}]},{"questID":1962,"preRequisites":[1961],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramicBrick","Count":1,"tag":{"meta":347707},"Damage":16387,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tile patterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have tiles, you can make simple tile patterns. A 2x2 of red/yellow and yellow/red makes a simple checkerboard. Using the checkerboard again in a 2x2 makes a checkerboard with smaller tiles. Use Binnie's Botany wiki page to find more patterns you can make with just tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:ceramicBrick","Count":4,"tag":{"meta":282171},"Damage":16387,"OreDict":""},{"id":"Botany:ceramicBrick","Count":4,"tag":{"meta":347707},"Damage":16387,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":2827},"Damage":2827,"OreDict":""},{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":17476},"Damage":16387,"OreDict":""}]}]},{"questID":1963,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tileworker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The tileworker can take the single-color ceramic blocks and turn them into pretty patterned blocks.\n\nAnd contrary to the name, you use ceramic blocks here, not tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.lavender","UID0":"botany.flowers.species.lavender","Slot":0},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":1},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":6},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":8},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":9},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":10},{"UID1":"botany.colorGreen","UID0":"botany.colorGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""},{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.forget","UID0":"botany.flowers.species.forget","Slot":0},{"UID1":"botany.colorLightSteelBlue","UID0":"botany.colorLightSteelBlue","Slot":1},{"UID1":"botany.colorLightSteelBlue","UID0":"botany.colorLightSteelBlue","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":6},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":8},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":9},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":10},{"UID1":"botany.colorGreen","UID0":"botany.colorGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""},{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.althea","UID0":"botany.flowers.species.althea","Slot":0},{"UID1":"botany.colorThistle","UID0":"botany.colorThistle","Slot":1},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":6},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":8},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":9},{"UID1":"forestry.sappinessHigh","UID0":"forestry.sappinessHigh","Slot":10},{"UID1":"botany.colorDarkGreen","UID0":"botany.colorDarkGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""}]}]},{"questID":1964,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:insulatedTube","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Does this shit even work?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who the hell knows? There's nothing in the wiki about these, except that they are to make \"gardens.\" Maybe make a few and stick them on a Forestry circuit board for a multi-farm? Who cares. Good luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:insulatedTube","Count":1,"Damage":256,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":514,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":1,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":643,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":18,"OreDict":""}]}]},{"questID":1965,"preRequisites":[1959],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glassworker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some custom glass shapes and configurations? A glassworker can provide some unique patterns to put in your windows. You'll need to make some glass fittings to hold the glass together."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":3,"OreDict":""},{"id":"ExtraTrees:misc","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Botany:stained","Count":16,"tag":{"meta":66},"Damage":66,"OreDict":""},{"id":"Botany:stained","Count":16,"tag":{"meta":23},"Damage":23,"OreDict":""}]}]},{"questID":1966,"preRequisites":[1963,1965,1968],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:hammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Mo' Hammers Mo' Problems","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yes indeed, time for another type of hammer. The master carpentry hammer will allow you to rotate the blocks from the various workers.\nSneak to rotate the blocks vertically.\nWhy is the lower tier hammer the master hammer? Who knows??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:hammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraTrees:durableHammer","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1967,"preRequisites":[1968],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Panels to cover your...everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The panelworker will create wood flooring pieces for you to use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraTrees:misc","Count":64,"Damage":4,"OreDict":""}]}]},{"questID":1968,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy woods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the woodworker, you can create fancy looking types of wood blocks. You can use wood planks from Vanilla, Forestry, and Extra Trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":1,"OreDict":""},{"id":"ExtraTrees:misc","Count":8,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1969,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:lantern.stone","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Look Mom, no torches!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of a base using nothing but torches? This set of quests will go through the various options avaiable to light up your beautiful base.\n\nFirst up, Railcraft lanterns. These come in stone and metallic varieties. The stone varieties don't need much to craft. One plus/minus for these lanterns is that they are solid blocks - while you cannot walk through them, they also do not fall if the blocks around them are removed. Search \"lantern\" in NEI for more varieties. They are a bit annoying to craft now, but if you check NEI you can make them pretty easy with assemblers later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:lantern.stone","Count":4,"Damage":9,"OreDict":""},{"id":"Railcraft:lantern.stone","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:lantern.metal","Count":8,"Damage":1,"OreDict":""},{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1970,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForgeMicroblock:sawDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Second Saw","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forge Microblocks can be really handy to make custom pieces. There are many saw tiers available. If you make me an iron one, I'll give you a diamond one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"ForgeMicroblock:sawIron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ForgeMicroblock:sawDiamond","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1971,"preRequisites":[51,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:BiblioLantern","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy lanterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bibliocraft offers fancy looking lanterns. Make the candles from candleberries or beeswax."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:BiblioIronLantern","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiblioCraft:BiblioLantern","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1972,"preRequisites":[479,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glowstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've been to the nether and gathered Glowstone, you can use that for light as well. You can color it to make the block color change (unfortunately 1.7.10 does not support colored lights) or you can use the Forge Microblocks saw to cut it up into tiny nooks to light up areas without taking up much space.\nThere are also various glowing plants you can find or breed, such as glowflowers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForgeMicroblock:microblock","Count":1,"tag":{"mat":"minecraft:glowstone"},"Damage":513,"OreDict":""},{"id":"ExtraUtilities:color_lightgem","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glowstone","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1973,"preRequisites":[554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic ProjectRed Illumination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic ProjectRed Illumination lamps only need an LV mixer to make. The normal version needs a redstone signal to turn on. The inverted version is on unless a redstone signal is applied."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":8,"Damage":16,"OreDict":""}]}]},{"questID":1974,"preRequisites":[97,100],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2.inv","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancier ProjectRed Illumination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fancier ProjectRed Illumination lamps, lanterns, and fixtures require the Forming Press and Assembler to create."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lantern","Count":1,"Damage":3,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.fixture","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":5,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":19,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":34,"OreDict":""}]}]},{"questID":1975,"preRequisites":[554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.flightbutton","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ProjectRed lights with a purpose","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ProjectRed offers a couple of special lights that can be used as buttons. The normal buttons are always lit up. The Feedback buttons are lit up when powered by any redstone signal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lightbutton","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Illumination:projectred.illumination.flightbutton","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1976,"preRequisites":[1973],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Ztones:lampt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flat lamps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These simple lamps from Ztones are a nice, subdued looking lamp style. I like using them on ceilings for the \"office\" look."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Ztones:lampf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Ztones:lampb","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1977,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:torch6","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone & Chisel torches, space rated","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When travelling off-world, you want the best in torches. Torches that will work in no-oxygen environments like the Moon. For that, you need glowstone torches. You can chisel these torches into a variety of torch types, also proven to work in deep space. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.glowstoneTorch","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:torch4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"chisel:torch8","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1978,"preRequisites":[68,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"FloodLights:carbonFloodlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lighting up a large area, without electricity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have a relatively large area you need to light up without using electricity, you can use these floodlights. They can take normal furnace fuels, including blocks and compressed blocks. They do require some electronic components to make, but can send out a beam a long ways, or a various cone shapes a shorter distance."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"FloodLights:carbonFloodlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"FloodLights:carbonFloodlight","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.CompressedCharcoal","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1979,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"FloodLights:electricFloodlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lighting up a large area, with electricity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a vacuum freezer, you can liquify compressed air cells and centrifuge them for rare gases. You'll need those to make the incandescent bulb for these lights. As long as they have EU, these lights can shoot a beam or do narrow or wide cones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"FloodLights:electricFloodlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"FloodLights:electricFloodlight","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1980,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockElectricLight","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enderio Lights","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enderio also has its own lights. These lights have a radius of 8 blocks vs the normal 7. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockElectricLight","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockElectricLight","Count":7,"Damage":3,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":8,"Damage":2,"OreDict":""}]}]},{"questID":1981,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockElectricLight","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BetterIO?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Powered and Wireless Powered lights from Enderio provide light up to 10 blocks away vs the normal 7 for a torch. They will require centrifuging liquid air to get the bulbs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockElectricLight","Count":1,"Damage":1,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockElectricLight","Count":7,"Damage":1,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":7,"Damage":5,"OreDict":""}]}]},{"questID":1982,"preRequisites":[91],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"malisisdoors:door_factory","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What's behind door 3?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Malisis door factory lets you go crazy with all kinds of ideas for custom doors.\n\nA player sensor is a nicer way of opening a door, instead of pushing a button or stepping on a plate...bit unforunate about the ingredients though. \n\nMaybe you can find a use for this block mixer, it is kinda weird and doesn't work right. I was going to throw it out anyways.\n\nThere are some craftable Malisis items as well, check them out in NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"malisisdoors:door_factory","Count":1,"Damage":0,"OreDict":""},{"id":"malisisdoors:player_sensor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"malisisdoors:block_mixer","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1983,"preRequisites":[97,98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:guide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Build it bigger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can build it! The Build Guide helps show you an outline of simple geometric shapes. Provide it with a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:guide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1984,"preRequisites":[1983,1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:builder_guide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Faster better buildi-er","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Enhanced building guide offers more features than the standard model. Most importantly, you can right click on any white part of the block with the item you want placed and the block will place in the world. It will need a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:builder_guide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone_block","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1985,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:elevator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So much nicer than ladders","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elevators are great for fast transportation vertically in your base. Leaving a tinted elevator will stop at the same color elevator. Use some Malisis doors for a nice \"real\" elevator effect.\nThe rotating elevator will turn the player as they go up or down to face a specific direction. Handy if your elevator shaft is on one side at a floor and a different side at another floor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:elevator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenBlocks:elevator_rotating","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1986,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ArchitectureCraft:sawbench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More like ouch-i-tect","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sawbench can turn most full cube blocks into amazing shapes of various kinds.\n\nRight-click with the hammer to rotate 90 degrees. Shift-right-click with the hammer to change the orientation of the \"bottom\" face.\n\nThe Chisel is used to alter the structure of blocks in various ways.\nSome blocks automatically form connections with adjacent blocks. These connections can be disabled and re-enabled by right-clicking with a chisel near the side that you want to change.\nSome blocks can have a secondary material applied to them. The secondary material can be removed by right-clicking on the centre of the block with a chisel.\nYou can also right-click on a vanilla Glass, Glass Pane, Glowstone or Ice block with a chisel to harvest the block without breaking it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ArchitectureCraft:sawbench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ArchitectureCraft:hammer","Count":1,"Damage":0,"OreDict":""},{"id":"ArchitectureCraft:chisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1987,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgradeTemplate","Count":3,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrading Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Drawer upgrades are different than barrel upgrades. First you need to make the ugprade template."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgradeTemplate","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:upgradeTemplate","Count":6,"Damage":0,"OreDict":""}]}]},{"questID":1988,"preRequisites":[1987],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgrade","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lYour mom says to upgrade your drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are many tiers of upgrades for storage drawers. Make some iron, gold and obsidian tier upgrades and I'll give you some of the special purpose upgrades to experiment with in your base. Check NEI for more options and Emerald and Diamond upgrades.\n\n§4To remove upgrades, shift-right-click with an empty hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgrade","Count":1,"Damage":2,"OreDict":""},{"id":"StorageDrawers:upgrade","Count":1,"Damage":3,"OreDict":""},{"id":"StorageDrawers:upgrade","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:upgradeStatus","Count":1,"Damage":1,"OreDict":""},{"id":"StorageDrawers:upgradeVoid","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1989,"preRequisites":[1225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Machine Inventory Manager","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The core block of Stacy's...er Steve's Factory Manager. SFM is a high tier automation system. While AE2 can handle simple crafting up to 9 components at a time and even nesting ingredients, SFM can handle the complex crafting required for the assline.\n\nInventory Cables connect the MIM to inventories or tanks.\n\nRight now until some Moron figures it out, your best bet is to experiment, ask for help on Discord, and search Google. The interface resembles most GUI based automation systems like LabView.\n\nThere have been TPS problems caused by poorly designed SFM setups. Make sure your outputs are properly emptied, and don't get filled.\n\nInventory cables are the \"basic\" cable of SFM. They allow the MIM to interact with an inventory, and act as a connector cable to other cables.\n\nmehdi2344 thinks my jokes suck, but he's an idiot, so there. \n\nThanks to Nori Silverrage for writing up these quests!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},{"id":"StevesFactoryManager:BlockCableName","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableName","Count":40,"Damage":0,"OreDict":""}]}]},{"questID":1990,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesAddons:duplicator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moving the Manager ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever finished a wonderful program and then realised your Manager needs to move and you have to rewrite the whole thing? Ever need to copy and paste a section of code a bunch of times and been frustrated that you can't? Well we've got you covered with the Manager Duplicator!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesAddons:duplicator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1991,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesAddons:labeler","Count":1,"tag":{"saved":["Energy Receiver","Energy Provider","Input Inventory","Input Tank","Output Inventory","Output Tank"]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Naming Names","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Factory Labeler allows you to assign unique names to anything that can be connected to a Manager - making it easy to identify when you are setting up commands.\n\nType in the text box to set a label or to searched stored labels - click any stored entry to select it, double click to edit it. Closing the GUI will set the Labeler to whatever was in the text box at that time.\n\nLeft click to set labels, right click to open the gui. Setting a blank label will remove any existing labels.\n\nMay or may not be buggy. Have fun!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesAddons:labeler","Count":1,"tag":{"saved":["Energy Receiver","Energy Provider","Input Inventory","Input Tank","Output Inventory","Output Tank"]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1992,"preRequisites":[297,990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Enhancements","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumic Machina offers Wand Augmentations. These useful modifications to your wand can boost their capacity, lower their vis usage, or do other interesting effects. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1993,"preRequisites":[1992],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Charge Buffer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Charge Buffer augmentation to your wand allows it to hold 25 percent more vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1994,"preRequisites":[1992],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vis Channels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This wand augment will lower the vis cost when using your wand by 10 percent. I am not sure it works, but give it a try and report back, ok?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""}]}]},{"questID":1995,"preRequisites":[1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What are you, a seamstress?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted Fabric is the key material to fancy robes and wizard's clothing. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":8,"Damage":7,"OreDict":""}]}]},{"questID":1996,"preRequisites":[1995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemChestplateRobe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"K-Mart Special","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every point of vis is critical, so make yourself some magical robes to help conserve how much you use. Later you can make even better robes. They don't offer much in protection, so remember to change before going to hunt!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemChestplateRobe","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsRobe","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemBootsRobe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""}]}]},{"questID":1997,"preRequisites":[1995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boots are made for walking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And swimming. These boots of the traveller will make you a blur as you go around the world. You'll need to research infusion before you can make these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1998,"preRequisites":[237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I can see everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new wand, you can make Goggles of Revealing. With Thaumcraft Node Tracker, it makes finding nodes trivial. The default key is I. You can select from the list of nodes you have scanned, and an in-world arrow will show you the way. You can also sort the list.\nBest, the goggles give you a 5 percent vis discount. \n\nSimple lens upgrades will grant you various seeing abilities as well.\n\nLater you can make more advanced goggles and even integrate the goggles into advanced armors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":2,"Damage":5,"OreDict":""}]}]},{"questID":1999,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Redstone Emitter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone Emitter sends redstone signals on each of its 6 faces. The redstone signal strength can be set to any value, add, subtract, and more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2000,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Camouflage blocks allow the faces of cable blocks to be made to imitate any other block. This works in the full workflow and thus can be updated on the fly. \nPlease note that this block is placed the same as all of SFM cables. It does not act as an inventory cable and thus will need to be in an advanced cable cluster in many situations."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":2001,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inventory Relay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The inventory relay can access the inventory of non-stationary entities, such as minecarts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2002,"preRequisites":[2000],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double Sided Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Double sided cable camouflage blocks allows setting the inside face of the cable block, allowing you to imitate glass."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":1,"OreDict":""}]}]},{"questID":2003,"preRequisites":[2002],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Transforming Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Transforming Cable Camouflage allows you to change the collision box of the cable, so you can turn it into a door or whatever."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":2,"OreDict":""}]}]},{"questID":2004,"preRequisites":[2001],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Inventory Relay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An Advanced Inventory Relay can add/remove items from a player's inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2005,"preRequisites":[1710],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32091,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Learning curve? Where we're going there are no curves","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Only dangerous cliffs to fly off. TecTech can be the source of adventures, scary and satisfying. \n\nThanks to Piky/Scripted for giving you some guardrails to stay on the road. Scripted/Piky shed blood over these quests for you. Now it's your turn!\n\nFor additional details on TecTech, check out the wiki at https://github.com/Technus/TecTech/wiki"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2006,"preRequisites":[2005],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"tectech:item.em.frontRotate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Beginning of the End Game","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to TecTech! The pinnacle of absolute high-tier machinery for all your end-tier needs. However, learning TecTech is incredibly confusing, so listen very carefully. \n\nFirst, you'll need to gather various casings for your machines that you'll need. High Power Casings, Computer Casings, and Computer Vents will do, though you'll require a large amount of them before proceeding onward."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"tectech:gt.blockcasingsTT","Count":64,"Damage":0,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":96,"Damage":1,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":96,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":64,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":15470,"OreDict":""},{"id":"tectech:item.em.constructable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":15470,"OreDict":""}]}]},{"questID":2007,"preRequisites":[2006],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15311,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the more incredibly complicated machines, this will serve as the main structure for your \"Computation\" generation for the giant Research Station. First, you'll need a few things, the Quantum Computer itself, a huge energy hatch several amps of UV or above, this is because as Computer Racks, that'll be explained later on down here, will continuously increase the demand of energy input for every new Computer Rack that you add on. The Multiblock also consumes a large amount of energy by itself. Another important factor is ONLY turn on the Quantum Computer once you have the desired recipes for the Research Station ready to avoid excess energy loss. In order for you to build this absolute monster, you'll need to place down the Quantum Computer at least 1 block above the surface/ground and use the Multiblock Machine Blueprint, this will give you a hefty amount of information and various ghost-like blocks that'll show where casings and or hatches should go.\n\nComputation:\nComputation is generated every second and is based on the tier of your circuit. There are, however, differences in between how much computation is generated, even with the same exact tier. For instance, you could use a Master Quantum Computer (Quantum Circuit Series / LuV) or a Wetwareprocessor (Wetware Circuit Series / LuV) which will give you more Computation even though they are of the same tier. If you wish to find out exactly how much Computation a circuit gives; place down a Computer Rack, put a circuit inside and scan it. It will include the following information\nBase computation: \nAfter overclocking: \nHeat Accumulated: \n\nComputer Racks:\nThe main component within the multiblock to generate Computation. In order to achieve this, you will need to input some circuits and heat vents; Advanced Heat Vents work best. It is critical that you use Heat Vents to prevent the heat from reaching a catastrophic point, 55 percent or above should be avoided for safety reasons. Technically, you could achieve above 55 percent heat capacity or 5500 heat capacity, however, the Computer Racks may melt or explode above 5600 or 6000 heat. In order to precisely find out how much heat, you'll need a Parametrizer, which will be explained later. Now that you've understood one of the more basic concepts and safety of handling within the Computer Racks (scan the Racks before you run the Quantum Computer!), what are the more optimal setups for your Quantum Computer? Do keep in mind that even a 128 min Computation / Sec setup can complete practically 3/4th's of the recipes within the Research Station. In this case, a 4 Computer Rack setup with 1 Advanced Heat Vent and 3 Wetwareprocessors (LuV) will generate 72 Computation every second; leading up to a maximum of 288 Computation every second at just 5 amps of UV (524,288 EU/t) with only 4 Computer Racks required. This is a rather minimal setup compared to some of the more complicated setups.\n\nAnd most importantly: DO NOT WRENCH THE COMPUTER RACKS IF THEY HAVE HEAT IN THEM. Scan them before anything else! Otherwise, you're going to get an explosion.\n\nUncertainty Resolver\nMuch like a puzzle-solving simulation, it is rather complicated to explain how to solve it, but it's often best just to retrace or undo certain actions and hope for the best. Sometimes, the Schr�dinger Status will require some puzzle solving again after a period of time. This is random and incredibly frustrating especially during operations being done between the Research Station and Quantum Computer(s), so it is important to constantly check the Uncertainty Resolver before you start operations on your Computer.\n\nNow that you understand some of this, it is time to build the Computer! You'll need to gather quite a lot of resources at first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15311,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15430,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15441,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":15470,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":15103,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":12,"Damage":2,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":10,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":22,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"tectech:gt.blockcasingsTT","Count":20,"Damage":3,"OreDict":""}]}]},{"questID":2008,"preRequisites":[2007],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15331,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Research Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've started building up your precious Quantum Computer, how about the giant Research Station? Once again, using the Multiblock Machine Blueprint will tell you how to build this Multiblock. Once it is nearly assembled, place down an Energy Hatch, an Optical Slave Connector, and a Maintenance Hatch all on the back side. Once fully assembled, you can now begin operating recipes at any given time, so long as the Quantum Computer is also active. This Research Station requires you to put the desired item within the Object Holder, then a data stick in the Multiblock interface itself. Once the Computation is fully completed, the data stick that houses all the data of the completed item will be inside the Multiblock Interface. Still confused? Good, that's the spirit of learning! Always make sure to test these things in Single Player if you wish to find exact measurements and such. \n\nDon't forget to ALWAYS COLOR THE OPTICAL HATCHES AND FIBERS!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15331,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15103,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15440,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15451,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":29,"Damage":1,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":23,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":14,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"tectech:gt.blockcasingsTT","Count":59,"Damage":1,"OreDict":""}]}]},{"questID":2009,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sign Updater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Sign Updater allows your MIM to update an external display of information."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2010,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableIntakeName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Item Valve allows your factory manager to suck in dropped items from around them in a 3x3x3 cube. Or you can use them to push items out into the world in the direction they are pointing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":2011,"preRequisites":[2010],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableIntakeName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rapid Item Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rapid Item Valves can pick up items in the world without any delays."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":2,"Damage":8,"OreDict":""}]}]},{"questID":2012,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableClusterName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cable Cluster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The cable cluster allows you to combine as many of the other cables together into one block. You could have a redstone receiver and emitter and a inventory relay all in one block.\nThis cable is a \"terminal\" cable. It does not extend the MIM beyond it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2013,"preRequisites":[2012],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableClusterName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Cable Cluster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Advanced Cable Cluster will also act as an Inventory cable, extended the range of your MIM."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":4,"Damage":8,"OreDict":""}]}]},{"questID":2014,"preRequisites":[1180],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll those chunks, all in a row","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you don't want a 3x3 area chunkloaded, but a long straight line instead. This can be handy for rail lines or power lines coming from long distances. An anchor sentinel can perform this function. Right-click on a chunk loader with a crowbar, and it will activate. Go in any straight line from the chunkloader and place the anchor and hit it with the crowbar. Those chunks, up to 25x1, will now remain loaded.\n\nThis will draw an amount of chunkloader time relative to the 9 chunk area normally loaded. If for some reason you wanted only a 1 chunk area loaded, this will extend the time. Stock up on those pearls or server coins!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChunkloaderTierIV","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2015,"preRequisites":[1999],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Redstone Receiver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone Receiver reads redstone signals on each of its 6 faces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2016,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Block Gate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Block Gate can break pickup, or place blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2017,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Block Detector","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Block Detector allows your MIM to detect when a Block update has occured. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2018,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":254,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§lCutting up stuff at EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are EV you are going to need a more advanced cutting machine. Better get one built."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":254,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2019,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Basics of SFM","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Variables - Declaration vs Standard\nDeclaration is simply creating a variable with eligible blocks in it. This allows easy updating of workflows. For instance you could have a variable that contains 2 chests. You use it in a nifty for each loop and later add another chest. Simply update the variable and the for each loop will start using it.\n\nStandard variables are able to be inserted into the middle of a workflow (it has input/output) and thus can be modified on the run.\n\nPlease note that for each loops will require a empty variable to work with. This is listed as \"Element\" in the loop.\n\nGlobal vs Local\nGlobal will keep changes to a variable that are done in the workflow, whereas local keeps anything done local to that part of the workflow."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2020,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magical box","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This magical box is amazing. No matter how many are created, they all seem to connect to the same dimension. I can store items in one location, and pull them out somewhere else! I can use dyes on the top of the box to assign its location, and any box with the same colors will share the same space. Using a diamond on the box locks it my mind, and a private network. Shift-rightclicking will remove the diamond and join the chest back to the public network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2021,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderChest","Count":1,"Damage":4096,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magical tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This tank always seems to connect to the same dimensional space. No matter how many I create. I can push fluids into the tank in one dimension, and retrieve them in a totally different dimension! I have discovered a way to assign a location to each tank using dyes applied to the top. Using a diamond makes the tank private, attuned to the caster's mind, and will not share fluids with any other player's tanks. Shift-rightclicking recovers the diamond and makes the tank part of the public tank network. The dial on front controls the input/output of the tank. When blue is up, the tank accepts fluids. When orange is up, the tank will eject fluids. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderChest","Count":1,"Damage":4096,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":2022,"preRequisites":[2020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderPouch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"That chest is too big to carry around","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Instead of chest you have to keep placing and breaking, how about a nice convenient pouch you can use? You'll have to synchronize it with the chest you want to link with. To set it to a new chest, sneak-click with the pouch on a new chest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderPouch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2023,"preRequisites":[2018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lMore power needed, sir!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"EBF and LCR recipes are going to need even more power. You'll need to craft EV energy hatches to supply them and keep them running."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2024,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32608,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAssline quest updates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When the pack updates, and changes an assembly line recipe, your old data sticks become useless. However it's more than that, you can't simply rescan an old UV motor for the new UHV data, you need a new UV motor. It's best to start with component parts in the lowest changed tier, then work your way up until you've rescanned up to your current tier. Yes, this sucks, we also wish there was another way. You can tell if your data stick is out of date by seeing if the nei recipe matches the one in the data viewer. Nei will always be right."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]}]},{"questID":2025,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":3}},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"GT++ knowledge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To become a master at GT++ you will need to craft manuals for certain machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":3}},"Damage":3,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":1}},"Damage":1,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":0}},"Damage":0,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":4}},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2026,"preRequisites":[1008],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:item.StockroomCatalog","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBetter way to find items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"NEI has a built in search feature for finding an item stored in an inventory nearby. A Stockroom Catalog can give you a list of everything stored in your inventories.\n \nSneak right-click a block with an inventory (a chest, bookcase, barrel, anything with an inventory) to add that inventory to the list of inventories for the catalog to keep track of. Sneak right-click the same block again to remove that block from the list.\nA small particle effect will render on any block that has been selected with the catalog when holding the Stockroom Catalog to let you know that block is being tracked.\n\nRight click to open the GUI and see the list.\nYou can sort the list in ascending or descending order by quantity (Count) or alphabetical order.\n\nYou can also see a list of all the inventories that have a particular item and easily add the location of one of those inventories to a stockroom catalog so you can easily find your stuff.\n\nThe Stockroom Catalog can also be copied with the typesetting table and printing press.\n\nClick on the title to change it to anything so you can custom label your stockroom catalog.\n\nClick on the small chest icons on the right hand side of each listing to open the inventory list view. \n\nIf you want, you can craft a waypoint compass and use that to point you towards the chest. Since we have Journeymaps and NEI, it's not really necessary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.StockroomCatalog","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:chest","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":2027,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":875,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThermal Boiler - Lava you long time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want energy from lava and the byproducts, the Thermal Boiler is the perfect solution. It processes lava super fast for steam, and with a lava filter will provide centrifuged lava byproducts as well. A great source of copper, silver, gold, tin, tantalum, and tungstate.\nYou can get even better efficiency pairing it with a Large Heat Exchanger. The LHE will turn normal vanilla lava into pahoehoe, which will provide steam and byproducts in the Thermal Boiler. Win/Win/Win!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":875,"OreDict":""},{"id":"miscutils:itemLavaFilter","Count":1,"tag":{"LavaFilter":{"Damage":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemLavaFilter","Count":3,"tag":{"LavaFilter":{"Damage":0}},"Damage":0,"OreDict":""}]}]},{"questID":2028,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":790,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I think I'm going to be sick","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Industrial Centrifuge is the solution to those thousands of ore you are getting with the multiblock ore drill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":790,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2029,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":862,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bask in the currents","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best source for hundreds of thousands of glass for...something? I dunno, think of something interesting and impress me!\n\nThe \"effective\" voltage for the High Current Arc furnace is one tier lower than the energy hatch. For example, with an MV tier energy hatch, it will do LV tier arc furnace recipes.\n\nThis machine also does plasma arc furnace recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":862,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2030,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":811,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bate Bate Chocolate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Abuela, will you teach us the chocolate song?\nCon mucho gusto\nWill you sing the chocolate song with us?\nGreat, sing along with Abuela!\n\nBate bate chocolate\nBate bate chocolate\nBate bate chocolate\nBate bate chocolate\n\nMix your chocolate, chocolate\nMix your chocolate, chocolate\nBate bate chocolate\nBate bate chocolate"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":811,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":32213,"OreDict":""}]}]},{"questID":2031,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":859,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Play doh for big girls and boys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I never wanna grow up, I wanna play with my mega extrusion machine.\nAnd in case you didn't read the description in NEI: You can use multiple input busses with a different extruder shape in each and then throw the items to extrude into the bus with the appropriate shape."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":859,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2032,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":992,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Best thing since sliced bread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When all you have is a machine full of knives, everything starts looking like bread. \n\nBluebine 2019!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":992,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"minecraft:bread","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2033,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":860,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A 9 in 1 machine, what a steal!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine has 3 modes, capable of emulating 9 of the less common machines.\nThe 3 general modes are cycled by using a screwdriver on the controller. Each of the modes can support 2 or 3 different machine selected by putting a circuit into the same input bus as the items you want to process. If you have a look at the description of the controller in NEI, you will see a list of the supported machines for each mode. These are in order and can be used with circuit numbers 20, 21 and 22. This also means that you can use multiple input busses with different circuits to use the full potential of the machine. You can also use more busses to use different non-consumable items in the recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":860,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2034,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":796,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ZzzZZZzzzZtt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need lots of oxygen or hydrogen, or just want to rip apart materials for tons of aluminium?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":796,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2035,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":910,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frozen Stiff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'm so cold..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":910,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2898,"OreDict":""}]}]},{"questID":2036,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":963,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forge of the Gods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Volcanus Advanced EBF will process items faster than you can believe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":963,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2843,"OreDict":""}]}]},{"questID":2037,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":798,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spools and spools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need enough wire to go around the world? Here you go."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":798,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2038,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":792,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bender more bending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you need plates by the thousands."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":792,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2039,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":942,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bezos would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nThe Amazon Warehousing Depot is the ultimate for all your packing needs. Got tiny and small dusts coming out of your ears? This is the machine for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":942,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]}]},{"questID":2040,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":791,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Industrial Coke Oven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Swimming in logs? Turn those logs into clean burning charcoal!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":791,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2041,"preRequisites":[1710],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lChickens my boy, the future is in chickens","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Future wetware processors are going to need stemcells....lots of them. Luckily there is way to infuse a normal, harmless chicken embryo with genetic mutagen to make it a perfect source for these stemcells. Once the egg has matured it has a small chance of turning into a giant chicken spawn egg. This giant chicken will now lay eggs that can be disassembled for stemcells or allowed to mature to make more giant chickens. Killing the giant chicken may also give you eggs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:itemBigEgg","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":2042,"preRequisites":[2050],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockThirstyTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So thirsty ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just listening to this tank gulp water makes me thirsty. If placed next to a water source block, it is a decent water source. It also supports several upgrades to speed and capacity. Try out this glyph near your cows, and get a tank full of milk for all your cheese and butter needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockThirstyTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:glyph","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2043,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Volumetric_Flask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBorax Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an MV Electrolyzer, you can extract Boron from Borax. This element is used later on for Borosilicate Glass and fiber, but for now you can use it to make some volumetric flasks to hold precise amounts. This is handy for recipes that may only need a tiny amount of a substance, like 1L."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2009,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.Volumetric_Flask","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.Volumetric_Flask","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2044,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12730,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMega is Betta","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For someone who needs to blast a truly *ridiculous* amount of stuff, this is the machine for you. This monster machine can handle up to 256 parallel recipes at a time.\nThe glass tier (search NEI for Glass-Tier: HV for an example) sets the maximum energy hatch tier for this machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12730,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2045,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12731,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFrostbite!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This mega vac freezer can handle up to 256 items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12731,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2046,"preRequisites":[610],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30727,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A better fluid pie","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have lead you can convert your bronze pipes to potin pipes with higher capacties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30727,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""}]}]},{"questID":2047,"preRequisites":[1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockCircuitProgrammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBulk Programming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of having to use NEI to figure out how to program your circuits? This block will allow you to simply choose the circuit number. It can be automated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:blockCircuitProgrammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2048,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:moss","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moss","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Given up on looking for moss in the Twilight Forest? You can easily grow a crop that will give you the various mosses, perfect for your Tinker's tools. Start with a lilypad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Moss","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Spanish Moss","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Ember Moss","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2049,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":773,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Energy Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your research into energy has lead you to energy buffers - a single block that can store enormous amounts, and is also portable. Better than a battery, these devices can be configured to output 1-16A. Using a high-amp transformer, that means you can up tier 2 tiers with these devices. This HV energy buffer can power an HV machine for several hours, or an EV machine for almost an hour. Perfect for mining operations in far off dimensions."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":773,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2050,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockGreedyChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Greedy Chest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Greedy Chest from Automagy looks to have some interesting uses. It also gates a pretty important device for a magician..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockGreedyChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2051,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Another way to Ethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using a fermenter with excess saplings or other garbage will give you Forestry biomass. Higher Sappiness trait on your trees will get you better results."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2052,"preRequisites":[2051],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why no, this is not fit for human consumption","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Taking the biomass from the Fermenter and using it in a still will give you Ethanol. Not really worth it for power, but useful if you want to turn it into ethylene. You could set it up on an old steam setup with nothing better to do to get a more useful power source out of it, or use the Ethanol to power the setup and the forestry farm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2053,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":829,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Empty the oceans","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stuck with fish for biodiesel this long, you can now make the Zhuhai Fishing Port to get cartloads of fish and other byproducts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":829,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2054,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":876,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Putting all those workers out of jobs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The large scale auto-assembler will put things together for you, in volume. It is an Assembler, Disassembler, and Autocrafter all in one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":876,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2055,"preRequisites":[2051],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better fermenter outputs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a Squeezer you can boost the output from your fermenter, saving on Fertilzer or Mulch and getting more per sapling. There's a variety of crops you can use to make fruit juice, so have fun breeding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2056,"preRequisites":[1888],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lJacques Cousteau","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a Scuba Helmet you can safely explore underwater for long periods of time. You just need some compressed air cells. I'll trade you some Tin ingots for a few compressed air cells.\n\nAs your air drops, the helmet will take a compressed air cell and give back an empty cell. Throw these cells into your compressor and you can easily gather clay from beneath rivers. You'll be able to make more cells later once you get an extruder or a plate bender."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11057,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":5,"OreDict":""}]}]},{"questID":2057,"preRequisites":[1159,1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafPlate","Count":1,"tag":{"ench":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steeleaf armor is the next level in Twilight Forest armor. It can be handy as a defense in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17339,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.steeleafHelm","Count":1,"tag":{"ench":[{"lvl":2,"id":4}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafPlate","Count":1,"tag":{"ench":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafLegs","Count":1,"tag":{"ench":[{"lvl":2,"id":1}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafBoots","Count":1,"tag":{"ench":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.steeleafAxe","Count":1,"tag":{"ench":[{"lvl":2,"id":32}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafPick","Count":1,"tag":{"ench":[{"lvl":2,"id":35}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafShovel","Count":1,"tag":{"ench":[{"lvl":2,"id":32}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2058,"preRequisites":[1951,2059],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor III","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knightmetal is the top tier Twilight Forest armor. It doesn't come with any free enchants but it has high durability and high armor rating"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.knightlyHelm","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyLegs","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.knightlySword","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyPick","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyAxe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2059,"preRequisites":[1159],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.shardCluster","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Knightmetal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knightmetal ingots are loot taken from Goblin Knight Strongholds. They can be made into Diamond-tier armor. You can take Armor Shards and turn them into Knightmetal ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.armorShards","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":2060,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:HoverHarness","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying like....Mary Poppins?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Thaumostatic Harness grants you flight, using up Potentia from a jar. The speed isn't great though, so perhaps further research will yield some results."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:HoverHarness","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2061,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGirdleHover","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying with the greatest of ease","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ahh that's better. With this girdle you can really fly around like a true wizard. It does take a little extra potentia to use though, so keep an eye on your flying time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGirdleHover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2062,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Baubles","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Working while flying? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With these devices you can now fly and work at the same time without penalty. They can be found in the Witching Gadgets tab of the book. You will need a Swiftness potion for this device."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Baubles","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2063,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockThaumostaticSpire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Long distance power delivery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No mage wants to be restricted to short flying times. With this spire from the Automagy discipline you can transmit magical energy directy to your flying harness. To get the correct Thaumium block, compress 9 ingots to get the GT Thaumium block and then chisel that block to get the correct type.\n\nThis multiblock requires centi-vis to operate. You can use 2-6 Thaumostatic Pylons, with additional pylons extending the range. Provide the construct Aer centi-vis to operate, and will accept Potentia essentia to transfer to flyers. The construct will also accept Aer and Volatus essentia to increase the range and rate of transfer, respectively. Right-click the sides of the controller to control which type of essentia each side will accept."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockThaumostaticPylon","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:blockThaumostaticPylon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:quartz_block","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":2064,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:nodeManipulator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Healing your nodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many of the nodes of the wild have damage, and unjarring a captured node can also cause damage. The Node Manipulator can help you recover the nodes to full strength, and increase their recharge speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:nodeManipulator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"thaumicbases:nodeFoci","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2065,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:WG_WoodenDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Clothes makes the magical woman or man","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Witching Gadgets Spinning Wheel will unlock plenty of useful materials and items. Hopefully without that creep Rumpelstiltskin! Make sure you get the WG Spinning Wheel and not the Witchery version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:WG_WoodenDevice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WitchingGadgets:item.WG_Material","Count":4,"Damage":5,"OreDict":""}]}]},{"questID":2066,"preRequisites":[2065],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Cloak","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying like a eagl - I mean raven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This cloak will be a nice substitute for the Glider. There are plenty of other magical items worth a look in the Witching Gadgets tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Cloak","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2067,"preRequisites":[1998],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:lensFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Everything fuzzy? Try some lenses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have Goggles of Revealing, Thaumic Horizons offers various lenses with handy uses. This one will grant night vision. Try out some of the others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:lensFire","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicHorizons:lensCase","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2068,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dissEnchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Disenchanted ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you found an item or book with a good enchantment - but also a bunch of garbage, you can strip the enchantments into separate books using a Disenchanter. Surround it with bookcases to reduce damage done to the item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dissEnchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2069,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:GTPP.bauble.fireprotection.0.name","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHot hot hot!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you build your vacuum freezer, you are going to have to carry around hot ingots all the time. Your old gloves are falling apart, and take up both hands. I think there's a way you can glue them together so you can carry hot items with just one hand. Give these a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:GTPP.bauble.fireprotection.0.name","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11367,"OreDict":""}]}]},{"questID":2070,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:SlowBuildingRing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So you want to go slower...wait, what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you need to go slow so you don't fall off the top of your spire. Or you don't want to accidentally sprint in your fields and trample your crops. Maybe you don't want to have to hold sneak all the time. This bauble will weigh you down - keeping you from accidentally sprinting, and can be activated to enable/disable sneaking."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:SlowBuildingRing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8269,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2071,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPanning for gold is for chumps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have reached LuV you can make the god-tier prospector - The Electric Prospector. This handheld machine can provide detailed information on ores in the area, and return maps of how much fluid and what type is in each chunk."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2072,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Planetary Tears","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Indeed you will be crying over all the tiers you have to do for planets. Here is a handy reference.\n\nTier 1 - Needs Oxygen Gear\nMoon\n\nTier 2 - Requires Thermal Padding\nMars\nPhobos\nDeimos\n\nTier 3 - Requires Tier 2 Thermal Padding\nCeres\nAsteroids\nEuropa\nGanymeade\nCallisto\nRoss128b - Habitable Planet (need no Oxygen Gear/thermal padding)\n\nTier 4 - Need tier 2 thermal padding\nIo\nMercury\nVenus - Needs SpaceSuit\n\nTier 5 -Need tier 2 thermal padding\nEnceladus\nTitan\nMiranda\nOberon\n\nTier 6 -Need tier 2 thermal padding\nProteus\nTriton\n\nTier 7 -Need tier 2 thermal padding\nPluto\nHaumea\nMakemake\nKuiper Belt\n\nTier 8 -Need tier 2 thermal padding\nAlpha Centauri Bb - Requires SpaceSuit\nTau Ceti E - Habitable Planet (need no Oxygen Gear/thermal padding)\nVega B\nBarnarda C - Habitable Planet (need no Oxygen Gear/thermal padding)\nBarnarda E\nBarnarda F"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2073,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Bat)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...Did you expect a raid boss of some kind? If you count the number of bats you'll encounter and kill, then probably yes."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":6,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.699999988079071,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":6,"BatFlags":0,"id":"Bat","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-7074487613494084000,"Health":6,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":4040540653557534000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":250,"taskID":"bq_standard:hunt","target":"Bat","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":5,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":1,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":5,"BatFlags":0,"id":"Thaumcraft.Firebat","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-6261044372789276000,"Health":5,"damBonus":0,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":4875998536939948000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"Thaumcraft.Firebat","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spamcompressedsaltBlockalt","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:fish","Count":64,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2074,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Dire Wolf)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These kinds of wolves do not take kindly to you marching close to them or offering them bones! Neutral at first, but extremely hostile upon approaching close to them and dangerous. They'll rip the bones right off ya! Found within snowy forest biomes."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.5,"Name":"generic.movementSpeed"},{"Base":40,"Name":"generic.followRange"},{"Base":10,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"enderzoo.DireWolf","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-9065909997462844000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-243949381481577630,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"enderzoo.DireWolf","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2075,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Hellhound)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aggressive and can apply fire, although not a fast enemy either. Recommendation, avoid melee combat and offerings of bones."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.30000001192092896,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"witchery.hellhound","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8351910570511150000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-1547927940807901200,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":15,"taskID":"bq_standard:hunt","target":"witchery.hellhound","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2076,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:magma_cream","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Magma Cube)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now a Hell version of your slime! Always appears with Infernal status."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":1,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.20000000298023224,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":1,"id":"LavaSlime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5097572486836440000,"Health":1,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-4758778065320197000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":20,"taskID":"bq_standard:hunt","target":"LavaSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2077,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:slime_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Slime)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sticky and bouncy! Now in many variations. Say hello to my little friend, Lemon Slice!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":1,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":1,"id":"Slime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-7612310377822589000,"Health":1,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-239686335288032100,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":40,"taskID":"bq_standard:hunt","target":"Slime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2078,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Silverfish"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Silverfish)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Be wary, they like to disguise and clone themselves in stone-related blocks! (Applies to Vanilla blocks only) Can be found within dungeons. Can also be found in Drowning Creeper spawned cobblestone blocks."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":8,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.6000000238418579,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":1,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":8,"id":"Silverfish","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8975834499757947000,"Health":8,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-8086562575035774000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":15,"taskID":"bq_standard:hunt","target":"Silverfish","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2079,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Hey is that a friendly bumblebee?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aieee, no it's not, it's a nether wasp, kill it kill it kill it!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2.5,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"BiomesOPlenty.Wasp","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8451188845710707000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":1541882790712460300,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"BiomesOPlenty.Wasp","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2080,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.cocoa","Count":8,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Chocolate is bad for you...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...but sure is great for production! Chocolate frames in apiaries and alvearies will boost output, but cause shortened life. This can be useful for the devious beekeeper..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.cocoa","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2081,"preRequisites":[507,2083,1953],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:misc","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Welcome to Biology Class!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Binnie's Genetics mod will allow you to pick and chose traits for bees, trees and Botany flowers. But not for free! Doing this comes at a price.\n\nIt is better to provide power to an Enderio capacitor and then power these machines with RF, instead of powering directly with GT EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:misc","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2082,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Making bees more comfortable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The acclimatiser is a key machine for breeding your bees. With lots of energy and the appropriate ingredients you can toughen your bees to thrive anywhere. However, even with climate hardiness your bees still won't produce special items unless they are in their favorite climate. Along with the bee, put in these items to adjust the bee's traits:\n\nsnowball - More temp tolerance\nsand - More dry tolerance\nwater - More wet tolerance\n\nFor water, it is best to use wax capsules made from beeswax, the acclimatiser doesn't return cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:snowball","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:sand","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:waxCapsuleWater","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2083,"preRequisites":[103,578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:treealyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Such pretty leaves...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have entered MV you can begin breeding Forestry trees the smart way. Start by getting a Treealyzer, and scanning some common vanilla trees like oak, dark oak, spruce, birch, acacia, and jungle saplings. You will need to gather honey or honeydew drops from bee combs to power the Treealyzer. \n\nIf you want to bulk scan saplings, you can feed them through a GT scanner filled with honey.\n\nIf you have reached MV, you can try the Slice and Splice tab for information on Genetics."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:treealyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":2084,"preRequisites":[35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:grafter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Collecting the hybrids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you got lucky and found some bees in a village, put them in their housings next to some trees. Over time the bees will slowly pollinate the leaves of the trees. Using a grafter you can break the leaf blocks to retrieve the sapling. You can trade with villagers to get proven grafters that have a longer lifetime. Also investigate magic, you have heard rumors of long lasting grafters available to magicians. \n\nGregTech also offers a really nice tool, the Branch Cutter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:grafter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"Forestry:grafterProven","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":2085,"preRequisites":[36,2122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Seeing the fruits of your labors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It can be difficult to see which leafy blocks are pollinated. Craft a pair of spectacles to get a better view."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:grafterProven","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2086,"preRequisites":[145],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32722,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGrinding heads are better than none","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the SAG mill will work with no grinding heads, flint heads only save a little power. If you want to exploit the true capability of the SAG mill, you want to use Diamond or Tungsten grinding heads. Craft me a Diamond and I'll give you a Tungsten as a reward."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32722,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32723,"OreDict":""}]}]},{"questID":2087,"preRequisites":[1987],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgradeLock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lKey to your heart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Barrels by default allow locking the barrel to a specific item, even when empty. For drawers however you will need to make the Drawer Key to lock its content types."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgradeLock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:fullDrawers1","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2088,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Incubator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This is a crafting machine that heats items and liquids to a temperature that encourages bacterial growth. \n\nThe first step of incubation is the creation of Liquid Growth Medium, which is made from incubating Water and Growth Medium. This is subsequently incubated with Wheat to give Bacteria. This solution of bacteria can then be incubated a third time with Sugar to give Enzyme. This is an important compound used in other machines.\n\nThe best way to create enzyme is therefore to chain three incubators together, for each step of the process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:labMachine","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2089,"preRequisites":[1123,1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialApiary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Bees by the millions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need endgame high speed bee production, industrial apiaries are the path to follow. Industrial Apiaries take upgrade frames that never break. Production frames can be stacked up to 8 high. It also has many options for emulation, more pollen retrieval, and others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:IndustrialApiary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:UpgradeFrame","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":2090,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:frameMutagenic","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fastest way to get there","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A GT++ Mutagenic frame will get your bees to their final destination faster than you can blink. Just remember to wear your rubber suit while making it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:frameMutagenic","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":2091,"preRequisites":[1123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgrading the Alveary (tier 1)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These basic upgrades to the Alveary make it more powerful. \n\nFrame housing - Automation-enabled frames for the Alveary\nSwarmer - Creates additional Ignoble queens in hives around the Alveary\nHygroregulator - Controls for humidity, and to a lesser extent temperature. Will require lava or water.\nStabilizer - Prevents the princess or queen from changing species. Ideal for breeding traits into a line.\nSieve - Instead of the pollen from a bee fertilizing a nearby tree, it is stored here and can be manually applied. Requires manually placing woven silk in the inventory.\nRain shield - Keeps bees that are not rain tolerant dry and working.\nHatchery - Hatches larval bees for use in Genetics or to create additional drones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":1,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":2,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":5,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":6,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":7,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":2,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:alveary","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2092,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Busy Bees Buzzing Boldly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These upgrades can significantly increase your production rate by keeping your bees from stopping production.\nTransmission - Provides power to frame blocks that need it throughout the alveary.\nAlveary Fan - Cools your temperature a large amount.\nAlveary Heater - Warms your temperature a large amount.\nLighting - Provides light for bees that do not work at night."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":6,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":3,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":4,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:alveary","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2093,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A stim a day keeps the doctor awake","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Supporting circuit boards that can hold 4 electron tubes, the Electrical Stimulator provides a variety of functions. All numbers are in percent\n\nLV - Prod: 150 (Max 500) - Iron ET\nHV - Prod: 250 (Max 1000) - Diamantine ET\nBiotic - Poll: 150 (Max 500) - Apatine ET\nCharged - Life: 80 (Min 20) - Obsidian ET\nGentle - Life: 150 (Max 500) - Lapis ET\nMolten - Simulates the Nether - Blazing ET\nMutagenic - Muta: 150 (Max 500) - Golden ET\nInhibiting - Terr: 40 (Min 10) Prod: 90 (Min 50) - Tin ET\nAgitating - Terr: 150 (Max 500) - Bronze ET"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:thermionicTubes","Count":8,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2094,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"X-Men, or should I say X-Bee?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Mutator can vastly accelerate genetic mutations, even allowing those ultra rare bees to be bred. Items inserted into the Mutator control how much mutation it causes.\n\nSoul Sand - 50 percent increase\nEnder Pearl - 100 percent increase\nEye of Ender - 300 percent increase\nNether star - 1000 percent increase"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:soul_sand","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2095,"preRequisites":[2088],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genepool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another important resource is Raw DNA. This can be obtained from any breedable organism such as bees, trees or flowers, and is created in the Genepool. The Genepool requires both Ethanol and Enzyme to digest the DNA, and will destroy the organism. Note this gives raw DNA, and does not preserve any genes or alleles present."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":1,"Damage":771,"OreDict":""}]}]},{"questID":2096,"preRequisites":[2095],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Isolator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Isolator acts in a similar way to the Genepool, but does not completely destroy genes. It instead allows the isolation of a single gene from an organism, without destroying it. The exact gene is random, and is written into an Blank Sequence. Until the sequence is analysed in an Analyser, it will be unknown what the gene is. It doesn't however need to be analysed before being sent to the Sequencer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":16,"Damage":5,"OreDict":""}]}]},{"questID":2097,"preRequisites":[2096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sequencer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After obtaining a DNA Sequence with the gene that you wish, it must be placed in the Sequencer. This uses Fluorescent Dye to determine the correct sequence, and when completed logs the discovery. The important thing here is that the discovery goes to the person who placed the machine.\n\nGenes are sequenced faster if the sequence has been placed in a Polymeriser first to increase the strength."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""}]}]},{"questID":2098,"preRequisites":[2097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Polymeriser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Serums and sequences can be placed in a Polymeriser to increase their strength and amount of DNA held within. Serums need to be polymerised at least once before being used in the inoculator. To polymerise, both Raw DNA and Polymerising Bacteria are required. Raw DNA is obtained from the Genepool, and Polymerising Bacteria is made from incubating bacteria with bonemeal. Gold nuggets can be used as a catalyst to speed up the process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":8,"Damage":771,"OreDict":""}]}]},{"questID":2099,"preRequisites":[2097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gene Database","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Discovered genes are logged into the Gene Database. This handheld device lists all genes by the type of organism they apply to. To add a gene to an Empty Serum Vial to allow inoculation, the desired gene can be clicked on while holding the vial. An Empty Serum Array can be used to hold more than one gene at once."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":8,"Damage":6,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":7,"OreDict":""}]}]},{"questID":2100,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lab Stand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Lab Stand is a block on which an Apiarist Database, Arborist Database, Botanist Database or Gene Database can be placed by right clicking on the placed stand with the database, attaching it and allowing the database to be accessed by right clicking on the stand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""},{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""},{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2101,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Combined analyzers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of carrying around seperate bee, tree, and butterfly analyzers? This combined tool will do all 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":2,"Damage":9,"OreDict":""}]}]},{"questID":2102,"preRequisites":[2099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:registry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Registry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Registry combines the existing four databases into a new sleek browser to allow the properties, mutations and genes of all discovered bees, trees, butterflies and flowers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:registry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":4,"Damage":7,"OreDict":""}]}]},{"questID":2103,"preRequisites":[2098],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inoculator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final step is inoculation. Currently the only machine capable of inserting genes is the Inoculator. This uses Bacteria Vector, created by incubating Bacteria and Blaze Powder, to transfer the gene into organisms.\n\nOnly the young stage of organisms can be injected, which are larvae (bees), pollen (trees and flowers) and caterpillars (butterflies). Bee larvae can be converted into drones by incubating with Liquid Growth Medium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":8,"Damage":772,"OreDict":""}]}]},{"questID":2104,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:misc","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tools for the Geneticist","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You'll need various tools and supplies before you start manipulating genetic material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:misc","Count":16,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":5,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":6,"OreDict":""},{"id":"Genetics:misc","Count":1,"Damage":7,"OreDict":""},{"id":"Genetics:misc","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":8,"Damage":7,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2105,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping track of your findings (Botany)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This handy device will keep track of the flowers you have discovered so far, and their properties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2106,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:flutterlyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Figuring out Butterflies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Butterflies don't do much, but this analyzer will give you details on their abilties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:flutterlyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":""}]}]},{"questID":2107,"preRequisites":[2083],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping track of trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This device will keep track of all the trees you have discovered."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitLemon","UID0":"forestry.fruitLemon","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""}]}]},{"questID":2108,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bee more knowledgeable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This database keeps track of everything bee."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":20,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""}]}]},{"questID":2109,"preRequisites":[2106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:databaseMoth","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluttering Facts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This database tracks all your knowledge of butterflies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:databaseMoth","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2110,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speeding up slow machines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many mods don't have methods of speeding up their slow machines. For this, you'll need a GregTech World Accelerator. It guzzles amps though so your power infrastructure better be ready for it. The tooltip will list the performance boost provided. For block-based acceleration, the WA will do an area around it. For TileEntities like most machines, it will only accelerate the blocks directly touching the WA, and will need to be reconfigured with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30709,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30742,"OreDict":""}]}]},{"questID":2111,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hail to the King","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you get lucky, you might find a King Slime in your travels. Kill it and I'll give you a really nice replacement head for one of your tools."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":100,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":100,"id":"TConstruct.KingSlime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8845708440277897000,"Health":100,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-8369209673811083000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TConstruct.KingSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:hammerHead","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:excavatorHead","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:broadAxeHead","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":2112,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":0}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sometimes life is scary and dark - Bring a backpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are MV, you can make an Adventure Backpack. This very useful backpack can do many things. It can store 2 tools for quick access, has internal tanks for containing liquids - use the Hose to access them, a built in crafting table, and storage. When placed on your back, it can be accessed using a quick-access key, default is B. Check your controls for details. \nWhen placed on the ground, it can be accessed with a right-click. While on the ground, the bedroll can be deployed and used. \nThey can also be upgraded to add special abilities. For more special abilities than those featured here, check the Adventure Backpacks wiki."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:beefwellingtonItem","Count":64,"Damage":0,"OreDict":""},{"id":"adventurebackpack:backpackHose","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2113,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":2}},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See like a ... bat?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nightvision is a great backpack ability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":2}},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:rainbowcurryItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2114,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":62}},"Damage":62,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Swim like a .... squid?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need to go deep or explore in the water, this is the backpack for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":62}},"Damage":62,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:meatfeastpizzaItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2115,"preRequisites":[2139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":51}},"Damage":51,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walk through fire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Pigman backpack will make the Nether ezpz with fire resistance. You'll have to figure out a way to get struck by lightning while wearing a Pig backpack to get it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":51}},"Damage":51,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:supremepizzaItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2116,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":29}},"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Creeper Repellant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An ocelot backpack will get those creepers running away from you. Nice protection against those drowning creepers! Don't get too close to them or else their repulsion will be overriden and they will blow up!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":29}},"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fishandchipsItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2117,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":1}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Milk without the cow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Cow backpack will generate milk from wheat placed in its inventory. Great for a lazy farmer!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":1}},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wheat","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2118,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":22}},"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Here be dragons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dragon backpack gives you Fire Resistance, Strength, Water Breathing, Night Vision and Regeneration."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":22}},"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:music_disk","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":2119,"preRequisites":[184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Smart cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smart cables are better than glass or covered cables because you can visually see many channels are in use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":56,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":56,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2120,"preRequisites":[2119],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":76,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dense cables are going to be your network backbones. They can transfer 32 channels and display the number of channels in use. Busses and flat interfaces cannot be placed directly on them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":76,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":76,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2121,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":30,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better Grafter through Technology","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The GT Branch Cutter is much better than the forestry grafters. It can have much higher durability based upon which material you use to create it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{}},"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:fruits","Count":64,"Damage":3,"OreDict":""}]}]},{"questID":2122,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"forestry.fruitApple","UID0":"forestry.fruitApple","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speak for the trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You'll need to find a bunch of vanilla trees to start your breeding program. To convert them directly to Forestry trees, you can use a Treealyzer - but you'll need a carpenter and aluminium from MV for that. Alternatively, you can just grow a bunch of vanilla trees and surround them by good pollination bees in bee housing. Spectacles will help you see the fertilized leaves to harvest with your Grafter or Branch Cutter.\n\nCompleting the quests will require scanned trees, but you can progress on breeding while waiting for your GT Scanner or Treealyzer to be made."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeDarkOak","UID0":"forestry.treeDarkOak","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcaciaVanilla","UID0":"forestry.treeAcaciaVanilla","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBirch","UID0":"forestry.treeBirch","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeSpruce","UID0":"forestry.treeSpruce","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeJungle","UID0":"forestry.treeJungle","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2123,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sapling","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unlocking tree breeding lines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No Description"}},"tasks":{},"rewards":{}},{"questID":2124,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLime","UID0":"forestry.treeLime","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Silver Lime","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silver Lime, a basic tree breed. Breed it by mating Silver Birch with Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLime","UID0":"forestry.treeLime","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestryI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2125,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeTeak","UID0":"forestry.treeTeak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Teak","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Teak is the first step to Cocobolo, a true giant. Breed it by mating Jungle and Dark Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeTeak","UID0":"forestry.treeTeak","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2126,"preRequisites":[2125,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBalsa","UID0":"forestry.treeBalsa","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarge","UID0":"forestry.heightLarge","Slot":2},{"UID1":"forestry.saplingsHigh","UID0":"forestry.saplingsHigh","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Balsa","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Balsa has some pretty wood. Breed it by mating Teak and Acacia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBalsa","UID0":"forestry.treeBalsa","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2127,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.beech","UID0":"extratrees.species.beech","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightAverage","UID0":"forestry.heightAverage","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.beechnut","UID0":"extratrees.fruit.beechnut","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Common Beech","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Common Beech gives you access to the Faster maturity attribute. Breed them from Silver Birch and Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.beech","UID0":"extratrees.species.beech","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2128,"preRequisites":[2124,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCherry","UID0":"forestry.treeCherry","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmaller","UID0":"forestry.heightSmaller","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"forestry.fruitCherry","UID0":"forestry.fruitCherry","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hill Cherry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hill Cherry is a key tree for breeding purposes. Breed it by mating Silver Lime with Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCherry","UID0":"forestry.treeCherry","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2129,"preRequisites":[2123,2128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeWalnut","UID0":"forestry.treeWalnut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightAverage","UID0":"forestry.heightAverage","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitWalnut","UID0":"forestry.fruitWalnut","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i2d","UID0":"forestry.i2d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Common Walnut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Common Walnut is a mediocre choice for a seedoil tree, only producing 54L per nut. Breed it by mating Hill Cherry with Silver Lime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeWalnut","UID0":"forestry.treeWalnut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2130,"preRequisites":[2129,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.butternut","UID0":"extratrees.species.butternut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmaller","UID0":"forestry.heightSmaller","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.butternut","UID0":"extratrees.fruit.butternut","Slot":4},{"UID1":"forestry.yieldLow","UID0":"forestry.yieldLow","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i2d","UID0":"forestry.i2d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Butternut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Butternut tree is a pretty good seedoil producer at 180L per nut. Breed it by mating Hill Cherry with Common Walnut.\n\nIt's attributes aren't that great, but with a little crossbreeding you can get that 2x2 giant with fast production. For optimal fruit production speed, try breeding Fruity bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.butternut","UID0":"extratrees.species.butternut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2131,"preRequisites":[2123,2128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitLemon","UID0":"forestry.fruitLemon","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lemon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lemon trees are great for maximum fruit juice production. Breed it by mating Hill Cherry with Silver Lime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2132,"preRequisites":[2131,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treePlum","UID0":"forestry.treePlum","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitPlum","UID0":"forestry.fruitPlum","Slot":4},{"UID1":"forestry.yieldHigh","UID0":"forestry.yieldHigh","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Plum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Plum is a great multipurpose tree. It has optimal yield and its fruit produces mulch with the highest chance. It also has decent sappiness for biomass production. Breed it by mating Hill Cherry with Lemon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treePlum","UID0":"forestry.treePlum","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2133,"preRequisites":[2126,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcacia","UID0":"forestry.treeAcacia","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeDesert","UID0":"forestry.plantTypeDesert","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Desert Acacia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Desert Acacia. Another step on the road. Breed it by mating Teak with Balsa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcacia","UID0":"forestry.treeAcacia","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2134,"preRequisites":[2133,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCocobolo","UID0":"forestry.treeCocobolo","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLargest","UID0":"forestry.heightLargest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Cocobolo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cocobolo is a nice tall tree, perfect for mating into your Plum or Butternut to maximize their yield. Breed it by mating Desert Acacia with Dark Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCocobolo","UID0":"forestry.treeCocobolo","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2135,"preRequisites":[2123,2133],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeMahoe","UID0":"forestry.treeMahoe","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessHigh","UID0":"forestry.sappinessHigh","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationSlowest","UID0":"forestry.maturationSlowest","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blue Mahoe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Blue Mahoe has the most sappiness of any tree. It will vastly increase the efficiency of your biomass production with Fermenters. Breed it by mating Balsa with Desert Acacia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeMahoe","UID0":"forestry.treeMahoe","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2136,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockEnergyAcceptor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Energy Acceptor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Energy Acceptor is an alternative place to inject energy into your AE2 network. Generally, you want to inject energy at the controller because if it cannot see an EA within the first 8 parts, the network will not form anyways.\n\nYou can form a \"dumb\" network with just an EA, but for real capability, you'll want a Controller."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockEnergyAcceptor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2137,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockController","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME Controller","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The heart of your ME network. Inject energy into here as well to power your network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockController","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2138,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32402,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Making Sense of Spaghetti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody likes an untidy base. You can craft a spray can and fill it with Chemical Dye made from sulfuric acid to color coordinate your carpets, cables, wires, and machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32402,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32432,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32452,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32438,"OreDict":""}]}]},{"questID":2139,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":53}},"Damage":53,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oink!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the Pig backpack is useless on its own, it can be turned into a pretty powerful tool with the right...motivation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":53}},"Damage":53,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:bbqpulledporkItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2140,"preRequisites":[495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Diamond","MaxDamage":128000,"SecondaryMaterial":"Wood","Damage":24770}},"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA Fool Fit for a King","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Only the craziest fool would use diamonds to make a tool! Or is it crazy like a fox?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Diamond","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29500,"OreDict":""}]}]},{"questID":2141,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWelcome to the Church of Benzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you made it to MV using steam, you're probably wondering how to survive going further. One option is to switch to Light Fuel, discussed in LV. Another option is to use Benzene. Benzene is made from Wood Tar. There are a couple of pathways for that. Both start with logs from trees. \n\nOne path is to use Coke ovens or Advanced Coke Ovens to make charcoal, and fluid-extract Wood Tar from it (use LV fluid extractors for maximum EU efficiency). Then distill the Wood Tar to make Benzene. This method produces no pollution.\n\nThe second path is to use the Pyrolyze Oven multiblock and Nitrogen gas to extract Wood Tar and Charcoal. Fluid Extract the Charcoal for addtional Wood Tar. Then proceed as above. This method will create pollution from the Pyrolyze, but will provide more Benzene per log.\n\nExcess wood tar can also be turned into Toluene, a key ingredient for explosives that you will need later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30686,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2142,"preRequisites":[91,576],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:autoWorkbenchBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAutomated Crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Auto Workbench is a simple automated crafting system. You select the recipe in the grid, and place components in the inventory. They will slowly be converted into the crafted item. While not fast, it does support automation - only items acceptable to the recipe is allowed in the inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BuildCraft|Factory:autoWorkbenchBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":2143,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"BiblioCraft:BiblioLamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChoices, choices","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need a map on fuel choices? Well, we don't have that but we have suggestions. You can run Steam from burning up to EV, but beyond MV it gets pretty painful. \n\nIn LV you can start refining oil for either Light Fuel or Refinery Gas, which will be good for you to EV. \n\nOnce you hit MV you can switch from Steam to renewable Benzene from your logs if you decided to hold out. Other renewable alternatives are Fishoil or Seedoil based Biodiesel. Seedoil can be sourced from Pam's peanuts, IC2 Rape crop or Forestry tree nuts.\n\nAlso at MV you can upgrade your Light Fuel with Heavy Fuel to get Diesel.\n\nWhen you reach HV turn Diesel or Biodiesel into Cetane Boosted Diesel.\n\nAfter reaching the Moon, Wind and Water Kinetics are available.\n\nEV introduces the Large Gas Turbine and Large Combustion Engine, along with granting access to Nukes.\n\nFor low usage operations, or dedicated players willing to setup automation systems, you can begin using Solar Panels at MV."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2144,"preRequisites":[940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDon't put a finger in that socket","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to pass multiple amps through your cleanroom walls, use a one-way Diode. Also handy to limit power when branching off a main power line to trunk lines that normally will not use as many amps, but you want to prevent catching fire while filling buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2037,"OreDict":""}]}]},{"questID":2145,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ArcaneDoorKey","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lE_TOO_MANY_KEYS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ERROR: Too many keys to fit a 104 key keyboard. You will need to redefine your keymap so that you can use things effectively. Here is a list of keys you should deconflict.\n\nAdventure Backpacks\nB - Inventory\nV - Toggle\nBackpacks\nG - Open Backpack (sneak-G to wear/remove backpack and set filtering)\nDark Steel Armor\nApostrophe - Night Vision\nGameplay\nR - Draw Weapons\nZ - Special (cycle arrows on M&B quiver)\nNONE - Drop Item (Who wants to throw a backpack into lava?)\nIC2\nC - Side Invetory Key\nJourneymap\nHome - Make Waypoint\nJ - Open Map\n= - Zoom In (works on minimap too)\n- - Zoom Out (same)\nMisc\nH - Toggle Hover Harness\nF - Toggle Wand Focus\nTC Node Tracker\nI - Node List (must be scanned, goggles allow compass)\nX - Zoom key (handy for checking on distant ores on a mountain)\nTinker's Construct\nDelete - Traveller's Belt Swap Hotbar"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2146,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BRRRRAAAAAAAIIIIIIINNNNNNNSSSSS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Automagy is a little subtle about what the \"smort\" mage needs to do next. Make some crystalline brains and scan them to unlock the next stage. You'll want to use the zombie brains you've been collecting from dangerous Furious zombies found at Eerie nodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemZombieBrain","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":3,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":4,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":3,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":4,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2147,"preRequisites":[2146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:avaricePearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gimme gimme gimme","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Avarice Pearl is the next object Automagy requires you to interact with in order to unlock the next section. Make an Avarice Pearl , throw some stuff on the ground, and throw Avarice Pearls at them by right-clicking quickly over and over to get a Shathered (ha ha) Pearl to unlock a few more research items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:avaricePearl","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Automagy:horizontal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2148,"preRequisites":[1677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§k§n§r§b§lEngraved Lapotrons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"IV tier batteries require a large investment. First, you will need to laser engrave 8 Lapotrons. Make sure to do this in a cleanroom.\n\n§4They're also used for some advanced AE2 chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":8,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32714,"OreDict":""}]}]},{"questID":2149,"preRequisites":[2148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32597,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lLapotronic Energy Orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Lapotronic Energy Orb is the IV tier battery item. It can store 100M EU. Don't charge it until you have verified it for the quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32051,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32597,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32103,"OreDict":""}]}]},{"questID":2150,"preRequisites":[2149],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AFSU:AFSU","Count":1,"tag":{"energy":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOne BILLION EU","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want a stationary battery, you can make an AFSU capable of storing up to 1 billion EU and charging items. You can pick it up with a wrench, but you'll lose a percentage of the stored EU. Make sure you right-click, not left-click. Left-clicking will cause it to lose all stored EU.\n\nAs an alternative, if you can afford them, try the GT++ Energy Buffers. They are more expensive and cannot charge items, but store more, don't lose any EU, and can be configured from 1-16A. See the GT++ tab for details."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AFSU:ALC","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AFSU:AFSU","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}]}]},{"questID":2151,"preRequisites":[29],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8538,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Can't spell Lignite without Ignite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Truly the fuel of the gods!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:coal","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemDust","Count":64,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":538,"OreDict":""}]}]},{"questID":2152,"preRequisites":[29],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Who would use this garbage??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Truly the fuel of idiots!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":8538,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2538,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":65,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:coal_ore","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2153,"preRequisites":[2155,2154,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fruit","UID0":"extrabees.species.fruit","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sugar","UID0":"extrabees.flower.sugar","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.bonemeal_fruit","UID0":"extrabees.effect.bonemeal_fruit","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fruity bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fruity bees will make your Forestry trees ripen their fruit faster. Breed them using a Sweetened and Thriving."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fruit","UID0":"extrabees.species.fruit"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2154,"preRequisites":[2156,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.sweet","UID0":"extrabees.species.sweet","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sugar","UID0":"extrabees.flower.sugar","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sweetened","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sweetened bees can make you sugar. Breed them from Valiant and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.sweet","UID0":"extrabees.species.sweet"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2155,"preRequisites":[2157,2158,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.thriving","UID0":"extrabees.species.thriving","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.leaves","UID0":"extrabees.flower.leaves","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thriving","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thriving bees don't have an effect, but are a necessary step for Fruity. Breed them from Growing and Unweary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.thriving","UID0":"extrabees.species.thriving"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2156,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDiligent","UID0":"forestry.speciesDiligent","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Diligent","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diligent bees are a core breeding stock bee. Breed them from Common and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDiligent","UID0":"forestry.speciesDiligent"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2157,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesUnweary","UID0":"forestry.speciesUnweary","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Unweary","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unweary bees are key to a couple of breeding lines. Breed them with Diligent and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesUnweary","UID0":"forestry.speciesUnweary"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2158,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.growing","UID0":"extrabees.species.growing","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.leaves","UID0":"extrabees.flower.leaves","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Growing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Growing bees are the start of the Fruity specific breeding tree. Breed them from Forest and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.growing","UID0":"extrabees.species.growing"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2159,"preRequisites":[405,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bees Template - change to OR when copying, back to AND to hide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Get the princess bee and reward bag in NEI first. \nDo Advanced and set the icon to the bee.\nDo Task, and select the stone, and replace it with the princess.\nBefore closing, select the ... next to the bee name and press Raw NBT\nGo into Tag, Genome, Chromosomes. The first one is the name and must stay. \nGo inside there and delete the first entry, keep both of the species so players\nmust have purebreeds.\nDelete the rest of the chromosomes.\nDelete the rest of the entries for Genome.\nRemove the Infinity unlock requirement."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2160,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"CarpentersBlocks:blockCarpentersBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carpenter's Blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yet another custom block system! Carpenter's blocks are crafted blank and placed in-world, and then plain block textures applied to them. The blocks must not be Tile Entities, so Botany blocks don't work correctly with them, but GT Stones like Red Granite, and any colored clay or vanilla glass block will work. Some Chisel glass types will work, and Ztones blocks and Tinted Glass also work.\n\nThe Garage Door requires a block at the top to hang \"down\" from, but can pretty much be any length. A redstone signal on any block next to the Garage Door blocks will open or close the door. The open/close will propagate across multiple vertical doors, so you can setup non-square doors. Sneaking and right-clicking with an empty hand will change the door's polarity.\n\nThe pressure plates are player-only activation, making them great for doors into your base.\n\nThe hatches must be clicked on the side of a block to place. They can be handy for protecting you from crucible...byproducts.\n \nThere is a lot more block shapes possible, check NEI for \"Carpenter's\" to see the options.\n\nThe Chisel allows you to chisel blocks while attached to a Carpenter's block.\n\nThe Hammer allows various functions.\n\nHammer on door - changes door shape type\nSneak Hammer on door - Changes from iron to wooden behavior\nSneak Hammer on lever - Changes polarity (which direction is on/off)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersButton","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersLever","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersPressurePlate","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersGarageDoor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"CarpentersBlocks:itemCarpentersHammer","Count":1,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:itemCarpentersChisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2161,"preRequisites":[70],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:warningSign","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSafety first","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For those new to GregTech, here are some tips and warnings about electricity. \n\nMachines don't like being out in the rain, and will start fires nearby. Fires next to a machine have a random chance of an explosion. Also, sending too high voltage to a machine will cause a near-instant explosion.\n\nSending too high a voltage or too many amps down a cable will cause the cable to burn up and start fires, which may then cause machine explosions. Make sure the number of amps provided by generators and buffers to a wire does not exceed the amps it is capable of carrying.\n\nA generator that supplys 1A can possibly feed multiple machines, if their recipes require less than full voltage. For example, macerators doing ore only need 2 EU/t, so you could run 4 or 5 off of a single 1A generator, as long as the wires aren't too long. But be careful! Sometimes a recipe needs a lot more EU than you expect, like a macerator sand -> quartz dust recipe.\n\nA single block machine starved of EU will restart progress but not lose the recipe items. A multiblock machine will lose the items."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemHatTinFoil","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2162,"preRequisites":[1788,2163],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCopper","UID0":"gregtech.bee.speciesCopper","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Copper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Copper bee is the first of the metal lines. There are too many metal breeding lines to cover here, but by now you should be able to use NEI to figure out how to breed more bee types. Copper bees require a copper block beneath the bee housing. Breed them from Majestic and Clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCopper","UID0":"gregtech.bee.speciesCopper"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2163,"preRequisites":[1788,2164],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Clay bee","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To breed a Clay bee you must put a Clay block beneath the housing. Clay bees are the bedrock of many important bee lines. Breed them from Industrious and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2164,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesIndustrious","UID0":"forestry.speciesIndustrious","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Industrious","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Industrious bees produce pollen clusters, a key ingredient to the Alveary. They're also used for breeding many other bees. Their pollination speed is Fast, better than most bees. Breed them from Diligent and Unweary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesIndustrious","UID0":"forestry.speciesIndustrious"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2165,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSlimeball","UID0":"gregtech.bee.speciesSlimeball","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Slimeball","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slimeballs aren't super useful, but you can easily breed this bee to make them. It's a necessary step on the way to Oil though. You will need a Congealed Slime Block beneath the bee housing. Breed them from Clay and Marshy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSlimeball","UID0":"gregtech.bee.speciesSlimeball"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2166,"preRequisites":[1788,2165],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesStickyresin","UID0":"gregtech.bee.speciesStickyresin","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Stickyresin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Never having to use a treetap again? Sign me up! You'll need to put a Rubber Wood log beneath the bee housing. Breed them from Slimeball and Peat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesStickyresin","UID0":"gregtech.bee.speciesStickyresin"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2167,"preRequisites":[1788,2168,2166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOil","UID0":"gregtech.bee.speciesOil","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, Black Gold. The Oil bee, with proper...encouragement...can take care of all your power and chemical needs for quite some time. An alternate bee, Distilled, provides slightly more oil but has a longer breeding chain. It is below the Magical bees. Breed them from Coal and Stickyresin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOil","UID0":"gregtech.bee.speciesOil"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2168,"preRequisites":[1788,2169],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCoal","UID0":"gregtech.bee.speciesCoal","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectCreeper","UID0":"forestry.effectCreeper","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah yes, Coal is King indeed. A great bee, giving you Coal to use to power your industry. Will require a Coal Block under your bee housing. This bee will also have the first really dangerous effect - it will apply a creeper explosion to you if you are not wearing your Apiarist suit. Breed them from Peat and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCoal","UID0":"gregtech.bee.speciesCoal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2169,"preRequisites":[1788,2170],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPeat","UID0":"gregtech.bee.speciesPeat","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Peat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Peat from these bees can be used in furnaces and boilers. Free fuel is free, right? Breed them from Rural and Clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPeat","UID0":"gregtech.bee.speciesPeat"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2170,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesRural","UID0":"forestry.speciesRural","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rural","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rural bees like to live out in the country - you'll have to relocate to a Plains-type biome for these. Breed them from Diligent and Meadows."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesRural","UID0":"forestry.speciesRural"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2171,"preRequisites":[1788,2155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.blooming","UID0":"extrabees.species.blooming","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sapling","UID0":"extrabees.flower.sapling","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.bonemeal_sapling","UID0":"extrabees.effect.bonemeal_sapling","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blooming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Blooming bee will bonemeal nearby saplings. This can definitely help your log and sapling production rate. They also provide the fastest pollination. Breed them from Industrious and Thriving."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.blooming","UID0":"extrabees.species.blooming"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2172,"preRequisites":[1788,2173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesDiamond","UID0":"gregtech.bee.speciesDiamond","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Diamond","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah finally, a girl..I mean Queen's best friend. Will require a block of Diamond. Breed from Certus and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesDiamond","UID0":"gregtech.bee.speciesDiamond"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2173,"preRequisites":[1788,2174,2175],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCertus","UID0":"gregtech.bee.speciesCertus","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Certus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Certus Quartz bee. Hmm, does it have any breeding requirements? I can't see to remember. Maybe try a block of Certus Quartz? Breed it from Lapis and Hermitic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCertus","UID0":"gregtech.bee.speciesCertus"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2174,"preRequisites":[1788,2176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLapis","UID0":"gregtech.bee.speciesLapis","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lapis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a bee with some real promise. The Lapis bee will require a block of lapis to breed. Breed them from Demonic and Imperial."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLapis","UID0":"gregtech.bee.speciesLapis"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2175,"preRequisites":[1788,2179],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHermitic","UID0":"forestry.speciesHermitic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectRepulsion","UID0":"forestry.effectRepulsion","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hermitic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hermitic bees have the same no-entities requirement as Secluded, but they solve that problem themselves. They are so repugnant they repel mobs near them. Breed them from Secluded and Monastic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHermitic","UID0":"forestry.speciesHermitic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2176,"preRequisites":[1788,2177,2178],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDemonic","UID0":"forestry.speciesDemonic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Demonic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better be careful with this one! It will set you on fire. In addition to combs, this bee can produce Glowstone Dust. It will require Nether to breed. Breed them from Sinister and Fiendish."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDemonic","UID0":"forestry.speciesDemonic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2177,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSinister","UID0":"forestry.speciesSinister","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sinister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sinister bees will hurt nearby mobs and players. Make sure to wear your suit. They will require breeding in the Nether. Breed them from Modest and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSinister","UID0":"forestry.speciesSinister"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2178,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFiendish","UID0":"forestry.speciesFiendish","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fiendish","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like Sinister, Fiendish requires the Nether and a protective bee suit. Breed them from Sinister and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFiendish","UID0":"forestry.speciesFiendish"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2179,"preRequisites":[1788,2180,2185],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSecluded","UID0":"forestry.speciesSecluded","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Secluded","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Secluded bees are real loners. There must not be any entities within their territory for them to produce their combs. The Mellow combs can produce Nether quartz. Breed them from Monastic and Austere."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSecluded","UID0":"forestry.speciesSecluded"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2180,"preRequisites":[1788,2181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAustere","UID0":"forestry.speciesAustere","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectCreeper","UID0":"forestry.effectCreeper","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Austere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another bee that requires an attentive beekeeper. Without an Apiarist suit, this bee will inflict creeper explosions on you. Watch you. It will require a hot or hellish biome with Arid humidity. Breed them from Modest and Frugal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAustere","UID0":"forestry.speciesAustere"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2181,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFrugal","UID0":"forestry.speciesFrugal","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Frugal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Frugal bee doesn't have much direct use, but is part of many breeding lines. It will require a hot or hellish biome and arid humidity. Breed them from Modest and Sinister."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFrugal","UID0":"forestry.speciesFrugal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2182,"preRequisites":[1788,2183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstonealloy","UID0":"gregtech.bee.speciesRedstonealloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Redstone Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Obviously, a block of Redstone Alloy is required, right? Breed them from Red Alloy and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstonealloy","UID0":"gregtech.bee.speciesRedstonealloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2183,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedalloy","UID0":"gregtech.bee.speciesRedalloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Red Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Red Alloy princess will require a block of Red Alloy. Breed them from Redstone and Copper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedalloy","UID0":"gregtech.bee.speciesRedalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2184,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstone","UID0":"gregtech.bee.speciesRedstone","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Redstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone princess will require a block of Redstone. Breed them from Industrious and Demonic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstone","UID0":"gregtech.bee.speciesRedstone"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2185,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMonastic","UID0":"forestry.speciesMonastic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Monastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Monastic bees aren't found in hives or bred. Instead you will need to find a Beekeeper villager and trade with them for it. There are various ways to make more villagers, so do some research. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMonastic","UID0":"forestry.speciesMonastic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2186,"preRequisites":[1788,2188,2187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesVibrantalloy","UID0":"gregtech.bee.speciesVibrantalloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vibrant Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally. It was a long, hazardous road, but you can now get Vibrant Alloy directly from a bee. Great job. You'll need a Block of Vibrant Alloy. Breed them from Energetic Alloy and Phantasmal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesVibrantalloy","UID0":"gregtech.bee.speciesVibrantalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2187,"preRequisites":[1788,2182],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergeticalloy","UID0":"gregtech.bee.speciesEnergeticalloy","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Energetic Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic Alloy will require a block of Energetic Alloy, of course. Breed them from Redstone Alloy and Demonic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergeticalloy","UID0":"gregtech.bee.speciesEnergeticalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2188,"preRequisites":[1788,2189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesPhantasmal","UID0":"forestry.speciesPhantasmal","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectResurrection","UID0":"forestry.effectResurrection","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Phantasmal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Phantasmal bees are similar to Spectral, except they cause the other drops to reanimate, like ghasts, spiders, creepers, endermen, or even Ender Dragons if their drops are lying around. Breed them from Spectral and Ender."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesPhantasmal","UID0":"forestry.speciesPhantasmal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2189,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSpectral","UID0":"forestry.speciesSpectral","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectReanimation","UID0":"forestry.effectReanimation","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spectral","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spectral bees will require Ender bees to breed. This will test the ability of even the toughest beekeeper - don't forget your apiarist suit. To work in a bee housing, there must be a Dragon Egg nearby. Don't drop any bones, blazerods or rotten meat! This bee will cause those to come back to life! Perhaps you can find a use for this ability. Breed them from Ender and Hermitic. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSpectral","UID0":"forestry.speciesSpectral"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2190,"preRequisites":[1788,2184,2174],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFluix","UID0":"gregtech.bee.speciesFluix","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fluix","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you go deep into AE2, you'll want cheap sources of Fluix from these bees. Breeding will require a block of Fluix. Breed them from Lapis and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFluix","UID0":"gregtech.bee.speciesFluix"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2191,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRuby","UID0":"gregtech.bee.speciesRuby","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ruby","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For early Chrome, a Ruby bee is a great source. It will require a block of Ruby. Breed them from Redstone and Diamond."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRuby","UID0":"gregtech.bee.speciesRuby"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2192,"preRequisites":[1788,2163],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTin","UID0":"gregtech.bee.speciesTin","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Tin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tin is a great early bee to get, saving your time looking for Cassiterite Sand. You'll need a Tin block. Breed them from Clay and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTin","UID0":"gregtech.bee.speciesTin"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2193,"preRequisites":[1788,2162,2192],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesIron","UID0":"gregtech.bee.speciesIron","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron bees as a resource isn't that big a deal, so much stuff makes iron anyways, but they are a key breeding species. They will need an Iron block. Breed them from Copper and Tin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesIron","UID0":"gregtech.bee.speciesIron"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2194,"preRequisites":[1788,2162,2193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesNickel","UID0":"gregtech.bee.speciesNickel","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Nickel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nickel bees provide a pretty useful resource. You'll need a block of Nickel. Breed them from Iron and Copper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesNickel","UID0":"gregtech.bee.speciesNickel"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2195,"preRequisites":[1788,2193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesZinc","UID0":"gregtech.bee.speciesZinc","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Zinc","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Zinc makes great early game item pipes when mixed into brass. Also, these bees have a small change of producing Gallium combs, which is very useful for players needing to make circuits or SMD devices. These bees will require a Zinc block. Breed them from Tin and Iron."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesZinc","UID0":"gregtech.bee.speciesZinc"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2196,"preRequisites":[1788,2168,2162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLead","UID0":"gregtech.bee.speciesLead","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lead","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lead will be necessary in large quantities once you start making nuclear reactors. You'll need a block of Lead for these. Breed them from Copper and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLead","UID0":"gregtech.bee.speciesLead"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2197,"preRequisites":[1788,2196],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSilver","UID0":"gregtech.bee.speciesSilver","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Silver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silver is key metal at HV and up with the amount of Electrum you will need. Requires a block of Silver. Breed them from Lead and Tin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSilver","UID0":"gregtech.bee.speciesSilver"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2198,"preRequisites":[1788,2194,2195],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAluminium","UID0":"gregtech.bee.speciesAluminium","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aluminium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aluminium isn't necessary until MV, but when you want it, you'll want lots. Requires block of Aluminium. Breed them from Nickel and Zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAluminium","UID0":"gregtech.bee.speciesAluminium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2199,"preRequisites":[1788,2173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOlivine","UID0":"gregtech.bee.speciesOlivine","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Olivine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An otherwise mostly useless bee, Olivine is required for breeding better bees. I guess if you need Magnesium? Breed them from Ender and Certus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOlivine","UID0":"gregtech.bee.speciesOlivine"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2200,"preRequisites":[1788,2199,2172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEmerald","UID0":"gregtech.bee.speciesEmerald","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Emerald","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah yes, a very useful bee. Emeralds are used for many upgrades, and trading with villagers. Will require a block of Emerald. Breed them from Olivine and Diamond."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEmerald","UID0":"gregtech.bee.speciesEmerald"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2201,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTitanium","UID0":"gregtech.bee.speciesTitanium","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Titanium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Titanium from bees will make getting those LCRs and distillation towers a breeze. Hey, I rhymed! You'll need a block of Titanium for this bee. Breed them from Aluminium and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTitanium","UID0":"gregtech.bee.speciesTitanium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2202,"preRequisites":[1788,2201],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesChrome","UID0":"gregtech.bee.speciesChrome","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Chrome","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chrome, a necessary ingredient for Stainless Steel. Better to get it directly instead of having to deal with Rubies or Garnets. This bee will require a block of Chrome to breed. Breed them from Titanium and Ruby."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesChrome","UID0":"gregtech.bee.speciesChrome"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2203,"preRequisites":[1788,2202,2172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlatinum","UID0":"gregtech.bee.speciesPlatinum","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Platinum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Platinum. Precious metal for the ages. You'll need a block of Platinum obviously. Breed them from Diamond and Chrome."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlatinum","UID0":"gregtech.bee.speciesPlatinum"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2204,"preRequisites":[1788,2206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesUranium","UID0":"gregtech.bee.speciesUranium","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Uranium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All that hatred had a purpose - to create this bee, capable of producing enormous power. As before, keep away from everything. This bee will require a block of Uranium. Breed them from Avenging and Platinum."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesUranium","UID0":"gregtech.bee.speciesUranium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2205,"preRequisites":[1788,2204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlutonium","UID0":"gregtech.bee.speciesPlutonium","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Plutonium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A metal that represents the epitome of technology. Never existing in the universe before man. Destroying everything around it. This bee will require a block of Plutonium. Breed them from Uranium and Emerald."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlutonium","UID0":"gregtech.bee.speciesPlutonium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2206,"preRequisites":[1788,2208,2207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAvenging","UID0":"forestry.speciesAvenging","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Avenging","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hatred distilled into its most violent form. Keep away from everything. Breed them from Vengeful and Vindictive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAvenging","UID0":"forestry.speciesAvenging"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2207,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVengeful","UID0":"forestry.speciesVengeful","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vengeful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hatred. Of all things, living and solid. Keep bee housing away from anything valuable, or even not valuable. Breed them from Monastic and Vindictive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVengeful","UID0":"forestry.speciesVengeful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2208,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVindictive","UID0":"forestry.speciesVindictive","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vindictive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Beware. These bees not only hate everything, they even hate blocks. Put their bee housing far away from everything. Breed them from Demonic and Monastic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVindictive","UID0":"forestry.speciesVindictive"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2209,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moron's Guide to Breeding Better Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First off, don't be scared by the massive amounts of bees you see here once you unlock the breeding trees. There's even more that aren't included and you'll need NEI to find!\n\nHa ha, just kidding - don't panic! Once you unlock the bee breeding lines, look around and pick and choose which bees really interest you. The way the breeding is done is mostly left to right, and top down. Some of the lines at the bottom might look simple, but they will require bees further up to complete first. Many of the basic bees have multiple breeding options, only one is shown here.\n\nBees have two sets of traits, one active that has effects on how the bee lives, and one Inactive but can be used for breeding. When getting newly bred princesses and drones, check both sets in case you got the target bee. You can breed the bees with inactive traits to try and make them active in later crosses. You can't see the passive traits using a Field Kit, you'll need a Beealyzer. For lots of bees, you can scan them first using a GT scanner, but you'll still need a Beealyzer to see passive traits.\n\nWhen breeding bees, a good idea is to settle upon a master template bee. A bee that has little or no crossbreeding potential, but has all the traits you prefer - short life, nocturnal, cavedwelling, rain tolerant, humidity, temperature, high fertility, etc. Once you have that bee, breed a bunch of pure princesses with those traits as both active and inactive. These will be your breeding stock.\n\nWhen you are trying for a new bee, what you are wanting is a drone - this way you can use your \"breeding stock\" princess for easy breeding, but the drone to get the new species without the annoying effects or limitations. Poor crossed princesses can be returned to normal by crossing with breeding stock drones, or just thrown out if they now have annoying restrictions. Make sure you keep the trait and species you want, and slowly merge the good traits from your breeding stock. You don't have to do this part in an Apiary, you can use a Bee House to swap around traits. Ignoble bees are good for this, since they're mostly disposable - they have a chance to die after 100 breeding cycles - frames can let them live longer. Once you solidify your species, create a pool of drones. You can use those to convert pristine princesses to the new species. Pristine princesses will not die. Rocky bees are a great source - all their princesses are always pristine.\n\nOnce you get a new species, it will replace all of one of the two sets of traits of the bee. For example when you get a Cultivated, either the Active or Inactive column will have all the default Cultivated traits. Mix it a few times and you'll eventually get purebred versions. Just watch out that you don't lose a key trait, like Fast Worker for Cultivated! All the quests will require purebred species. \n\nGenerally all traits can be bred into any bee species, including effects or flower preference. Species generally require their preferred biome to produce their special drops.\n\nAdvanced frames can provide useful boosts to mutation chances, or to lifespan reduction for faster breeding cycles. However excessive multipliers will increase genetic decay, giving a chance for that pristine princess to become ignoble!\n\nIt looks complex, because it is! But it also a lot of dangerous and useful fun!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2210,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDealing with Radiation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nuclear materials cause two types of radiation effects. One is a large number of standard debuffs. These can be removed the normal ways, with milk or terra wart or other methods that imitate them. \n\nThe other effect is a special Radiation unique debuff. This gets applied the longer you hold onto the radioactive item. Severely radioactive items can apply minutes of this deadly debuff. Regeneration might delay the inevitable death, but most regneration sources aren't fast enough or long enough to keep you alive. You can try using an Amulet of Remedium to get rid of the effects. You should have one from your Moon trip, if not you'll have to dive into Thaumcraft to make one."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2211,"preRequisites":[2209],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Bee Stats","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of basic bees that have good stats you will want to breed into your breeding stock.\n\nCave Dwelling - Rocky - This lets you put the bee housing underneath or inside. Handy for putting a chest on top for products.\n\nNocturnal - Rocky - This keeps your bees working all night long, and in the dark.\n\nRain Tolerant - Water - Keep producing even when it is raining.\n\nHigh Fertility - Wintry - For breeding purposes, you want the maximum number of drones produced."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2212,"preRequisites":[1788,2218,2217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesArcane","UID0":"magicbees.speciesArcane","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Arcane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanting drops from Arcane bees are used to create Aromatic Lumps for use in the Swarmer. It has a higher chance of success than normal Royal Jelly. These bees are the other bedrock of the Magic Bees branch. Breed them from Esoteric and Mysterious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesArcane","UID0":"magicbees.speciesArcane"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2213,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEldritch","UID0":"magicbees.speciesEldritch","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Eldritch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eldritch are the start of the magic bee family. Breed them from Mystical and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEldritch","UID0":"magicbees.speciesEldritch"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2214,"preRequisites":[1788,2215,2216],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSupernatural","UID0":"magicbees.speciesSupernatural","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Supernatural","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What have those two brothers gotten into now? The Supernatural bee is a keystone of the Magical branch of bees. Check NEI for details on the best lunar phase for breeding. Breed it from Charmed and Enchanted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSupernatural","UID0":"magicbees.speciesSupernatural"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2215,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEnchanted","UID0":"magicbees.speciesEnchanted","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Enchanted","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted is the next step in the progression. Breed them from Charmed and Eldritch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEnchanted","UID0":"magicbees.speciesEnchanted"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2216,"preRequisites":[1788,2213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesCharmed","UID0":"magicbees.speciesCharmed","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Charmed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The power of three! Charmed bees are your next step up the magic bee tree. Breed them from Eldritch and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesCharmed","UID0":"magicbees.speciesCharmed"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2217,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesMysterious","UID0":"magicbees.speciesMysterious","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Mysterious","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just your mysterious stranger... Breed them from Eldritch and Esoteric."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesMysterious","UID0":"magicbees.speciesMysterious"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2218,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEsoteric","UID0":"magicbees.speciesEsoteric","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Esoteric","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another basic Magic branch bee. Breed them from Eldritch and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEsoteric","UID0":"magicbees.speciesEsoteric"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2219,"preRequisites":[1788,2212,2214],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEthereal","UID0":"magicbees.speciesEthereal","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ethereal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ethereal bees are critical for all the magical aspect bees. Breed them from Arcane and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEthereal","UID0":"magicbees.speciesEthereal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2220,"preRequisites":[1788,2227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCWater","UID0":"magicbees.speciesTCWater","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"magicbees.effectCurative","UID0":"magicbees.effectCurative","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aqua","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aqua requires a Water Crystal Cluster. It will produce Water infused dust. Staying nearby will clear potion effects, like drinking a bucket of milk. Might be useful for the clever industrial engineer! Breed them from two Watery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCWater","UID0":"magicbees.speciesTCWater"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2221,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesFirey","UID0":"magicbees.speciesFirey","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Firey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Firey bees must be bred on top of Lava. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesFirey","UID0":"magicbees.speciesFirey"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2222,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEarthen","UID0":"magicbees.speciesEarthen","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Earthen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Earthen bees must be bred on top of Bricks. Breed them from Supernatural and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEarthen","UID0":"magicbees.speciesEarthen"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2223,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWindy","UID0":"magicbees.speciesWindy","Slot":0},{"UID1":"forestry.speedFaster","UID0":"forestry.speedFaster","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Windy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Windy bees must be bred on top of Oak leaves. Breed them using Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWindy","UID0":"magicbees.speciesWindy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2224,"preRequisites":[1788,2223],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCAir","UID0":"magicbees.speciesTCAir","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringMaximum","UID0":"forestry.floweringMaximum","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"magicbees.effectMoveSpeed","UID0":"magicbees.effectMoveSpeed","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For Aer bees to appear, you must put an Air Crystal Cluster beneath the bee housing. They will produce Aer infused dust for you. Being nearby will grant a Swiftness buff. Breed them from two Windy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCAir","UID0":"magicbees.speciesTCAir"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2225,"preRequisites":[1788,2222],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEarth","UID0":"magicbees.speciesTCEarth","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectDigSpeed","UID0":"magicbees.effectDigSpeed","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Solum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Solum bees require Earth Crystal Clusters. They can produce Earth infused dust. It will also give you a mining speed boost. Breed them from two Earthen."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEarth","UID0":"magicbees.speciesTCEarth"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2226,"preRequisites":[1788,2221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCFire","UID0":"magicbees.speciesTCFire","Slot":0},{"UID1":"forestry.speedFaster","UID0":"forestry.speedFaster","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceDown3","UID0":"forestry.toleranceDown3","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ignis bees require Fire Crystal Clusters beneath the bee housing. They will produce Fire infused dust. Watch out! They will set nearby entities on fire! Breed them from two Firey."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCFire","UID0":"magicbees.speciesTCFire"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2227,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWatery","UID0":"magicbees.speciesWatery","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersSnow","UID0":"forestry.flowersSnow","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Watery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watery bees must be bred over Water. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWatery","UID0":"magicbees.speciesWatery"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2228,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAware","UID0":"magicbees.speciesAware","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not much to say about this bee. Breed them from Ethereal and Attuned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAware","UID0":"magicbees.speciesAware"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2229,"preRequisites":[1788,2228],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpirit","UID0":"magicbees.speciesSpirit","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spirit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Spirit bee is the first bee to give you Soul Combs, necessary for Soulful Wax, used in many magical frames. Breed them from Ethereal and Aware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpirit","UID0":"magicbees.speciesSpirit"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2230,"preRequisites":[1788,2229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSoul","UID0":"magicbees.speciesSoul","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Soul","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Soul bee has the highest chance of making Soul Combs, 20 percent. Breed them from Aware and Spirit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSoul","UID0":"magicbees.speciesSoul","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2231,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCChaos","UID0":"magicbees.speciesTCChaos","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Chaotic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chaotic bees require an Entropic Crystal Cluster. They will produce Entropy Infused Dust. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCChaos","UID0":"magicbees.speciesTCChaos"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2232,"preRequisites":[1788,2219,2212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCOrder","UID0":"magicbees.speciesTCOrder","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ordered","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ordered bees require Ordered Crystal Clusters. They can produce Order Infused Dust. Breed them from Arcane and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCOrder","UID0":"magicbees.speciesTCOrder"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2233,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCVis","UID0":"magicbees.speciesTCVis","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vis bees lead to some of the most powerful bees in the whole pack. They require a node within 75m of the bee housing. Make sure the lunar phase matches the requirments. Breed them from Ethereal and Eldritch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCVis","UID0":"magicbees.speciesTCVis"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2234,"preRequisites":[1788,2233],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCRejuvenating","UID0":"magicbees.speciesTCRejuvenating","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectVisRecharge","UID0":"magicbees.effectVisRecharge","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rejuvenating","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rejuvenating bees must be bred within 25m of a node. They will slowly charge the nearest node. Breed them from Vis and Attuned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCRejuvenating","UID0":"magicbees.speciesTCRejuvenating"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2235,"preRequisites":[1788,2234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEmpowering","UID0":"magicbees.speciesTCEmpowering","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectNodeEmpower","UID0":"magicbees.effectNodeEmpower","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Empowering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Empowering bee will randomly add aspects to nearby nodes, allowing enormous power to build up. The best chance to breed them is during the Full moon. Breed them from Rejuvenating and Vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEmpowering","UID0":"magicbees.speciesTCEmpowering"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2236,"preRequisites":[1788,2237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesEdenic","UID0":"forestry.speciesEdenic","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectExploration","UID0":"forestry.effectExploration","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Edenic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Edenic bee has the remarkable effect of giving experience points to players nearby. Breed it from Exotic and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesEdenic","UID0":"forestry.speciesEdenic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2237,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesExotic","UID0":"forestry.speciesExotic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Exotic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watch out, just like its parent the Exotic bee will poison you. But it is also a source of silk wisps. Breed them from Austere and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesExotic","UID0":"forestry.speciesExotic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2238,"preRequisites":[1788,2236,2226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumdust","UID0":"gregtech.bee.speciesThaumiumdust","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectExploration","UID0":"forestry.effectExploration","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thaumium Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumium is pretty easy to make, but with this bee you can automate and get enormous quantities. It requires a block of Thaumium. Breed them from Edenic and Ignis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumdust","UID0":"gregtech.bee.speciesThaumiumdust"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2239,"preRequisites":[1788,2213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSkulking","UID0":"magicbees.speciesSkulking","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Skulking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Skulking bees are the core of the various mob bees. Check out the rest of the recipes in NEI, there are too many to show here. Breed them using Eldritch and Modest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSkulking","UID0":"magicbees.speciesSkulking"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2240,"preRequisites":[1788,2239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpidery","UID0":"magicbees.speciesSpidery","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"magicbees.effectSpidery","UID0":"magicbees.effectSpidery","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spidery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watch out, the effect from this bee will attract spiders. But it has one nice trait - a large working area. Perfect for breeding into your fast pollinators or for providing useful effects. Breed it from Skulking and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpidery","UID0":"magicbees.speciesSpidery"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2241,"preRequisites":[1788,2238,2220],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumshard","UID0":"gregtech.bee.speciesThaumiumshard","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersSnow","UID0":"forestry.flowersSnow","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectGlacial","UID0":"forestry.effectGlacial","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thaumic Shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Thaumic Shards bee has a chance of giving you any shard propolis. It will require a Magical Forest biome. Breed them from Thaumium Dust and Aqua."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumshard","UID0":"gregtech.bee.speciesThaumiumshard"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2242,"preRequisites":[1788,2241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSalismundus","UID0":"gregtech.bee.speciesSalismundus","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Salis Mundus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of all the effort it takes to make Salis Mundus? After hours of breeding you can now do magic trouble free with this bee making all the Salis Mundus you need. It requires a Magical Forest Biome. Breed them from Thaumic Shards and Thaumium Dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSalismundus","UID0":"gregtech.bee.speciesSalismundus"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2243,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHeroic","UID0":"forestry.speciesHeroic","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectHeroic","UID0":"forestry.effectHeroic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Heroic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This one takes a little luck. You'll have to find Steadfast bees in a dungeon chest. Their useful effect is causing damage to hostile mobs. Breed them from Steadfast and Valiant."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHeroic","UID0":"forestry.speciesHeroic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2244,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesNameless","UID0":"magicbees.speciesNameless","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Nameless","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oblivion bees can be purchased with coins, or found in the End. Nameless is required to get Draconic bees. Nameless are also where you can get Amnesiac Wax. Breed them from Oblivion and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesNameless","UID0":"magicbees.speciesNameless"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2245,"preRequisites":[1788,2244],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAbandoned","UID0":"magicbees.speciesAbandoned","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectRepulsion","UID0":"forestry.effectRepulsion","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Abandoned","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Abandoned are the next step up. Breed them from Oblivion and Nameless."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAbandoned","UID0":"magicbees.speciesAbandoned"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2246,"preRequisites":[1788,2245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesDraconic","UID0":"magicbees.speciesDraconic","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Draconic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Draconic bee is required in order to get the dusts needed to recreate the Dragon Egg using magic. It must be bred in the End. Breed them from Imperial and Abandoned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesDraconic","UID0":"magicbees.speciesDraconic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2247,"preRequisites":[1788,2246,2248],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSparkeling","UID0":"gregtech.bee.speciesSparkeling","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Wither","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wither bee will let you generate Wither skulls and small amounts of Nether star dust. It requires a block of Nether Star, and must be bred in the End. Breed them from Withering and Draconic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSparkeling","UID0":"gregtech.bee.speciesSparkeling"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2248,"preRequisites":[1788,2249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWithering","UID0":"magicbees.speciesWithering","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"magicbees.effectWithering","UID0":"magicbees.effectWithering","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Withering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Inflicts Withering all those who come near. Must be bred in the Nether. Chances are going to be low, so now would be the time to look for frames that increase mutation rates. Breed them from Demonic and Spiteful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWithering","UID0":"magicbees.speciesWithering"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2249,"preRequisites":[1788,2250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpiteful","UID0":"magicbees.speciesSpiteful","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spiteful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sheer disdain this bee shows you is awe inspiring. Must be bred in the Nether. Don't walk around it without proper protection, it seems to laugh when you think about that. Breed them from Hateful and Infernal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpiteful","UID0":"magicbees.speciesSpiteful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2250,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesHateful","UID0":"magicbees.speciesHateful","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hateful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can feel the waves of hate radiating out of her eyes. Don't even think about getting close without an Apiarist Suit. Must be bred in the Nether. Breed them from Eldritch and Infernal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesHateful","UID0":"magicbees.speciesHateful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2251,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.excited","UID0":"extrabees.species.excited","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.redstone","UID0":"extrabees.flower.redstone","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.lightning","UID0":"extrabees.effect.lightning","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Excited","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You might be thinking to yourself, huh this sure is an easy bee to give redstone....well, it also gives destructive lightning strikes. You might want to place them far from you. Or set them up in a Creeper spawner to make charged creepers for...experiments. Breed them from Valiant and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.excited","UID0":"extrabees.species.excited"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2252,"preRequisites":[1788,2251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.celebratory","UID0":"extrabees.species.celebratory","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.fireworks","UID0":"extrabees.effect.fireworks","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Celebratory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nThis fun bee doesn't have any useful products, but it does produce a fun effect - constant fireworks! You can breed the effect into other lines, and the color of the fireworks will match the bee. Make the bees require sky and you can disable the effects by covering them up with a piston. Great for a celebration! Breed them from Austere and Excited."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.celebratory","UID0":"extrabees.species.celebratory"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2253,"preRequisites":[1093],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12726,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lToo much Mercury?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a couple of hours..days..weeks..of processing redstone for Ruby you'll have a massive stockpile of Mercury and not know what to do with it. You can store it all in supertanks, but really, how much hypochlorous acid does one need? Instead you can build an Acid Generator and at least get a little power out of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12726,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2254,"preRequisites":[1788,2197],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesArsenic","UID0":"gregtech.bee.speciesArsenic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Arsenic Princess","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This deadly little princess will get you Arsenic, perfect for use in your circuits. Requires a Block of Arsenic. Breed them from Silver and Zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesArsenic","UID0":"gregtech.bee.speciesArsenic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2255,"preRequisites":[1513],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameGentle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keep calm and bee on","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gentle frame can help protect your bees from the damaging effects of high productivity or mutation rates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameGentle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2256,"preRequisites":[2123,2127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.brazilnut","UID0":"extratrees.species.brazilnut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarger","UID0":"forestry.heightLarger","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.brazilnut","UID0":"extratrees.fruit.brazilnut","Slot":4},{"UID1":"forestry.yieldLow","UID0":"forestry.yieldLow","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Brazil Nut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Brazil Nuts don't give you much in the way of important attributes. Breed them from Common Beech and Jungle."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.brazilnut","UID0":"extratrees.species.brazilnut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2257,"preRequisites":[2123,2126,2256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.coconut","UID0":"extratrees.species.coconut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarger","UID0":"forestry.heightLarger","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"extratrees.fruit.coconut","UID0":"extratrees.fruit.coconut","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFast","UID0":"forestry.maturationFast","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Coconut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Coconut is King for seedoil production - 300L per nut. Breed them from Brazil Nut and Balsa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.coconut","UID0":"extratrees.species.coconut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2258,"preRequisites":[1122,2164],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:miscResources","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Aromatic Lump","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aromatic Lumps are twice as effective as Royal Jelly in an Alveary Swarmer. You'll need Enchanting Drops from Arcane bees and Pollen Clusters from Industrious bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:miscResources","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2259,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:magnet","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite bats! Wait, what??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of the constant chirping from the thousands of bats drawn to your world-bending activities? Use this handy device to attract them to a central location where they can be...disposed. The Corporeal Attractor can be configured to attract or repel mobs, and the redstone strength applied divided by two determines the range.\n\nYou can use Soul Moulds to filter the mobs the Attractor draws in or pushes away. This gives you some idea for automating..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:magnet","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"ThaumicTinkerer:soulMould","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2260,"preRequisites":[1997],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricBootsTraveller","Count":1,"tag":{"charge":100000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better boots with a little pizzazz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These Electric Boots of the Traveller will give a 2 percent vis discount along with the benefits of the normal Boots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":9,"OreDict":""}]}]},{"questID":2261,"preRequisites":[2260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanoBootsTraveller","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walk all over you","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nanosuit boots will give the nanosuit benefits along with a massive speed boost, higher jump, and better vis discount. Great boots for the master magical engineer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanoBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2262,"preRequisites":[2261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumBootsTraveller","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walking across the stars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantum boots of the traveller, for when you really need to run as fast as the wind. Might cause you some problems standing still! "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2263,"preRequisites":[2121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialGrafter","Count":1,"tag":{"charge":375000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Industrial Grafter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're tired of constantly replacing branchcutters, this Industrial Grafter is rechargeable."}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2264,"preRequisites":[1603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Do you taste metal?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Metal oreberries are a great source of new seeds. You can breed some or buy some from the Coins shop. I need some Copper myself, so give me some berries please."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TConstruct:oreBerries","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Copper Oreberry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2265,"preRequisites":[2264],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8503,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Deep blue sea of sapphires","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sapphirum are pretty easy to get from Copper Oreberries. You'll need a block of Sapphire beneath them to get them to maturity. They are a good source of aluminium and oxygen in LV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Sapphirum","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2266,"preRequisites":[2265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8527,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Red touch yellow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Garnets are actually more valuable than Sapphires. They're an early source of Chrome and Manganese, which you'll need for HV machines. To reach maturity, you will need a block of Garnet beneath these crops. You can get Garnets from the HV macerator and Spessartine Ore, or you can use an Implosion Compressor to turn Garnet Sands into crystals to make blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Garnydinia","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2267,"preRequisites":[292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:TrunkSpawner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A travel companion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lonely? The Traveling Trunk is a simple companion, giving you some extra space. With upgrades (one per trunk) it can offer you some nice advantages. Like other golems, you can pick it up with the Golemancer's Bell. It's brain is pretty small though, so it can easily get stuck. You can order it to stay in one spot via the GUI. It will attempt to teleport to you, as long as the chunk is still loaded. It can also follow you into different dimensions.\n\nThey will heal slowly on their own, or faster if you right-click on them with any food, including rotten meat. Keep away from lava.\n\nGolem upgrade effects:\nAer: Moves faster\nEarth: 1 more row of item slots\nFire: Attacks hostile mobs, setting them on fire\nWater: Nearly invulnerable. In SMP, can only be opened or picked up by player who placed it.\nEntropy: Sucks in loose items nearby if it has room\nOrder: Can be picked up with its contents, and nested in other inventories. Don't be stupid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:TrunkSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2268,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:luggage","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who needs friends?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Luggage is better than a dumb old traveling trunk. It automatically picks up dropped items, saving you time while mining. It's near-invulnerable, including in lava. It will follow you like an eager puppy, to the ends of the earth - but you probably should pick her up before changing dimensions. A lightning strike can provide more room. Shift right-clicking will turn it back into an item without losing its contents. Look for her in the GTNH tab of the Thaumonomicon"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:luggage","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2269,"preRequisites":[1788,2270,2273],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.magenta","UID0":"gendustry.bee.magenta","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth3","UID0":"forestry.toleranceBoth3","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Magenta","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magenta bees are also Fastest production, but come with +- 3 Climate. Breed them from Pink and Blue."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.magenta","UID0":"gendustry.bee.magenta","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2270,"preRequisites":[1788,2271,2272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.pink","UID0":"gendustry.bee.pink","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth3","UID0":"forestry.toleranceBoth3","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Pink","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pink princesses provide pink dye. They also have Fastest production and +-3 Humidity. Breed them from Red and White."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.pink","UID0":"gendustry.bee.pink","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2271,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.white","UID0":"gendustry.bee.white","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"White","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"White bees provide white dye. Breed them from Wintry and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.white","UID0":"gendustry.bee.white","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2272,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.red","UID0":"gendustry.bee.red","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Red","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dye bees obviously provide dyes, but some of them are also useful for their traits. There are many dye bees, these are just a sample. They can be useful for the hard to find dye colors from flowers. Breed Red from Common and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.red","UID0":"gendustry.bee.red","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2273,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.blue","UID0":"gendustry.bee.blue","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Blue princesses will provide a handy source of blue dye. Breed them from Forest and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.blue","UID0":"gendustry.bee.blue","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2274,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCBatty","UID0":"magicbees.speciesTCBatty","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"magicbees.effectBatty","UID0":"magicbees.effectBatty","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Batty","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Batty bees will spawn firebats. So prepare for battle. Their specialty is Gunpowder. Breed them from Skulking and Windy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCBatty","UID0":"magicbees.speciesTCBatty","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2275,"preRequisites":[1788,2274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesGhastly","UID0":"magicbees.speciesGhastly","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectGhastly","UID0":"magicbees.effectGhastly","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ghastly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ghastly bees will spawn Ghasts, so beeee careful. Their specialty is Ghast Tears. They only have 1 fertility so you want to make sure you breed the drones with your master template princess. Breed them from Batty and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesGhastly","UID0":"magicbees.speciesGhastly","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2276,"preRequisites":[1788,2275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSmouldering","UID0":"magicbees.speciesSmouldering","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectAblaze","UID0":"magicbees.effectAblaze","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Smouldering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smouldering drones will spawn blazes, and make Blaze Rods as their specialty. Breed the drones with your template princesses so you can prevent the harmful effects from destroying your base. Also, their Hellish temperature and Normal humidity requirements are interesting - use a Climate Acclimator or other methods to adjust the biome. Must be bred in the Nether. Breed them from Ghastly and Hateful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSmouldering","UID0":"magicbees.speciesSmouldering","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2277,"preRequisites":[1788,2278],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fuel","UID0":"extrabees.species.fuel","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Refined","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah, here it is. This bee has been known to power whole civilizations. Placed in a top tier bee housing like an Alveary or Industrial Apiary, with appropriate frames, it can produce oil faster than some wells. In addition, you will get small amounts of Diesel fuel as well! Breed them from Oily and Distilled."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fuel","UID0":"extrabees.species.fuel","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2278,"preRequisites":[1788,2279],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.distilled","UID0":"extrabees.species.distilled","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Distilled","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What's this? A step back you say! Yes, the Distilled bee doesn't make anything of use, but the potential is there. Breed them from Oily and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.distilled","UID0":"extrabees.species.distilled","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2279,"preRequisites":[1788,2280,2282],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.oil","UID0":"extrabees.species.oil","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Oily","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, the Oily bee! Its combs produce the most oil, but its output isn't that thrilling...yet. Breed them from Primeval and Ocean. As an alternative, you can breed them from Primeval and Frugal if you can't find an Ocean biome or used up all your Beekeeper coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.oil","UID0":"extrabees.species.oil","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2280,"preRequisites":[1788,2281],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.primeval","UID0":"extrabees.species.primeval","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Primeval","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Primeval. The next step. Breed them from Ancient and Secluded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.primeval","UID0":"extrabees.species.primeval","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2281,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ancient","UID0":"extrabees.species.ancient","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ancient","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ancient bees are the first step to the best oil bees in the game. Breed them from Diligent and Noble."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ancient","UID0":"extrabees.species.ancient","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2282,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ocean","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Ocean bee can be hard to breed since some servers use a worldgen that prevents ocean biomes from appearing. You might have luck trying in a Twilight Forest lake - you'll know you are in the right biome if you see Water Creepers! If you have trouble locating an appropriate spot, you can also purchase Ocean bees from the Coins tab. Breed them from Diligent and Water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2283,"preRequisites":[1788,2284,2280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.resin","UID0":"extrabees.species.resin","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Resinous","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well at least you can get a couple of Sticky Resin from this otherwise boring bee. Breed them from Miry and Primeval."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.resin","UID0":"extrabees.species.resin","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2284,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMiry","UID0":"forestry.speciesMiry","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersMushrooms","UID0":"forestry.flowersMushrooms","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Miry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Miry bees aren't too useful yet. They'll open up the Boggy branch for you. You'll need to find a biome with Warm/Damp to breed them. Use your Nature's Compass and Habitat Locator to find them. An easy one to find is Rainforest. Breed them from Marshy and Noble. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMiry","UID0":"forestry.speciesMiry","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2285,"preRequisites":[1788,2278,2283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.latex","UID0":"extrabees.species.latex","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Elastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally! A useful bee from the Boggy branch. The Elastic bee will actually produce rubber bars for you! No more smelly Sulfur! Breed them from Distilled and Resinous."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.latex","UID0":"extrabees.species.latex","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2286,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:masterRegistry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Master registry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The master beekeeper needs a master registry. Make sure you don't get any tears in your apiaries as you collect all the requirements!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Forestry:beeCombs","Count":64,"Damage":15,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":4,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":6,"OreDict":""},{"id":"MagicBees:comb","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Forestry:beeCombs","Count":64,"Damage":7,"OreDict":""},{"id":"MagicBees:comb","Count":64,"Damage":1,"OreDict":""},{"id":"ExtraBees:honeyComb","Count":64,"Damage":6,"OreDict":""},{"id":"Forestry:beeCombs","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"Forestry:royalJelly","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:masterRegistry","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2287,"preRequisites":[1788,2288],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAgrarian","UID0":"forestry.speciesAgrarian","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectFertile","UID0":"forestry.effectFertile","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Agrarian","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Agrarian bees are supposed to help crops nearby grow. The effect isn't really that noticeable, is it? You'll have to be in a Plains-like biome for these to appear. Breed them from Farmerly and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAgrarian","UID0":"forestry.speciesAgrarian","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2288,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFarmerly","UID0":"forestry.speciesFarmerly","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Farmerly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like most farmers, these bees seem to spend all their time complaining about the neighbors or the weather instead of actually doing much. They'll need a Plains-like biome. Breed them from Unweary and Rural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFarmerly","UID0":"forestry.speciesFarmerly","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2289,"preRequisites":[1788,2287,2274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSandwich","UID0":"gregtech.bee.speciesSandwich","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectFertile","UID0":"forestry.effectFertile","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sandwich","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"sudo make me a sandwich. Or a bee that makes sandwich parts anyways. Breed them from Batty and Agrarian."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSandwich","UID0":"gregtech.bee.speciesSandwich","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2290,"preRequisites":[1788,2291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFertilizer","UID0":"gregtech.bee.speciesFertilizer","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fertilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Fertilizer bee will make your crop empire purr. Or grow anyways. They are a good source of Fastest production and Faster pollination as well. Breed them from Apatite and Ash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFertilizer","UID0":"gregtech.bee.speciesFertilizer","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2291,"preRequisites":[1788,2292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesApatite","UID0":"gregtech.bee.speciesApatite","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Apatite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Apatite bee requires an Apatite Block beneath it to breed. Its Seedy comb will make seedoil as well. Breed them from Ash and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesApatite","UID0":"gregtech.bee.speciesApatite","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2292,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAsh","UID0":"gregtech.bee.speciesAsh","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ash","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A bee to make ashes? What insanity is this? At least you can get Large territory from them. You'll need to pay the Nether a visit. Breed them from Clay and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAsh","UID0":"gregtech.bee.speciesAsh","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2293,"preRequisites":[851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:NitrogenTetroxide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§9§lNitrogen Tetroxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make Nitrogen Tetroxide you need to combine some copper dust and nitric acid in a Chemical Dehydrator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:NitrogenTetroxide","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30653,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2294,"preRequisites":[147,1245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":793,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRocket Engine EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Rocket Engine is a very dirty device which generate power out of rocket fuels at 60% efficiency.\n200 to 2000 polution each sec."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":793,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"miscutils:RocketFuelMixB","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:RocketFuelMixA","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]}],"questLines":[{"quests":[{"sizeX":72,"x":0,"y":36,"id":0,"sizeY":72},{"sizeX":24,"x":120,"y":60,"id":1,"sizeY":24},{"sizeX":24,"x":84,"y":60,"id":2,"sizeY":24},{"sizeX":48,"x":252,"y":48,"id":3,"sizeY":48},{"sizeX":24,"x":216,"y":60,"id":4,"sizeY":24},{"sizeX":48,"x":324,"y":48,"id":5,"sizeY":48},{"sizeX":24,"x":408,"y":60,"id":6,"sizeY":24},{"sizeX":48,"x":480,"y":48,"id":7,"sizeY":48},{"sizeX":48,"x":324,"y":120,"id":8,"sizeY":48},{"sizeX":48,"x":324,"y":192,"id":9,"sizeY":48},{"sizeX":48,"x":204,"y":264,"id":10,"sizeY":48},{"sizeX":48,"x":252,"y":156,"id":11,"sizeY":48},{"sizeX":48,"x":300,"y":264,"id":12,"sizeY":48},{"sizeX":72,"x":468,"y":312,"id":13,"sizeY":72},{"sizeX":48,"x":12,"y":324,"id":14,"sizeY":48},{"sizeX":24,"x":216,"y":96,"id":440,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":442,"sizeY":24},{"sizeX":48,"x":396,"y":192,"id":444,"sizeY":48},{"sizeX":24,"x":204,"y":168,"id":446,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":448,"sizeY":24},{"sizeX":24,"x":204,"y":132,"id":450,"sizeY":24},{"sizeX":24,"x":408,"y":108,"id":469,"sizeY":24},{"sizeX":24,"x":444,"y":108,"id":470,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":471,"sizeY":24},{"sizeX":24,"x":408,"y":12,"id":484,"sizeY":24},{"sizeX":24,"x":240,"y":12,"id":865,"sizeY":24},{"sizeX":24,"x":288,"y":12,"id":946,"sizeY":24},{"sizeX":48,"x":156,"y":48,"id":1204,"sizeY":48},{"sizeX":24,"x":168,"y":276,"id":1475,"sizeY":24},{"sizeX":24,"x":168,"y":132,"id":1495,"sizeY":24},{"sizeX":24,"x":24,"y":120,"id":1500,"sizeY":24},{"sizeX":24,"x":24,"y":156,"id":1501,"sizeY":24},{"sizeX":24,"x":24,"y":0,"id":1834,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1841,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1842,"sizeY":24},{"sizeX":24,"x":132,"y":216,"id":1843,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":1844,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":1845,"sizeY":24},{"sizeX":24,"x":336,"y":12,"id":1849,"sizeY":24},{"sizeX":24,"x":408,"y":144,"id":1856,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":2145,"sizeY":24}],"lineID":0,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 0 - It begins","icon":{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The very first tier, tier zero. This chapter will introduce you to the basic mechanics of this modpack. Mods covered: Vanilla, Pam's Harvestcraft."}},"order":0},{"quests":[{"sizeX":72,"x":660,"y":144,"id":15,"sizeY":72},{"sizeX":48,"x":756,"y":156,"id":17,"sizeY":48},{"sizeX":48,"x":588,"y":156,"id":18,"sizeY":48},{"sizeX":24,"x":600,"y":228,"id":19,"sizeY":24},{"sizeX":24,"x":744,"y":120,"id":20,"sizeY":24},{"sizeX":24,"x":684,"y":228,"id":21,"sizeY":24},{"sizeX":24,"x":600,"y":264,"id":22,"sizeY":24},{"sizeX":24,"x":636,"y":264,"id":23,"sizeY":24},{"sizeX":48,"x":756,"y":252,"id":24,"sizeY":48},{"sizeX":24,"x":684,"y":264,"id":25,"sizeY":24},{"sizeX":24,"x":684,"y":300,"id":26,"sizeY":24},{"sizeX":48,"x":756,"y":492,"id":27,"sizeY":48},{"sizeX":24,"x":432,"y":504,"id":28,"sizeY":24},{"sizeX":24,"x":288,"y":504,"id":29,"sizeY":24},{"sizeX":48,"x":384,"y":336,"id":30,"sizeY":48},{"sizeX":48,"x":456,"y":336,"id":31,"sizeY":48},{"sizeX":24,"x":636,"y":300,"id":32,"sizeY":24},{"sizeX":48,"x":624,"y":336,"id":33,"sizeY":48},{"sizeX":24,"x":312,"y":384,"id":34,"sizeY":24},{"sizeX":48,"x":420,"y":156,"id":35,"sizeY":48},{"sizeX":48,"x":204,"y":168,"id":36,"sizeY":48},{"sizeX":48,"x":204,"y":408,"id":37,"sizeY":48},{"sizeX":24,"x":336,"y":264,"id":38,"sizeY":24},{"sizeX":24,"x":192,"y":240,"id":39,"sizeY":24},{"sizeX":72,"x":312,"y":0,"id":40,"sizeY":72},{"sizeX":48,"x":516,"y":156,"id":41,"sizeY":48},{"sizeX":48,"x":516,"y":336,"id":42,"sizeY":48},{"sizeX":24,"x":528,"y":264,"id":43,"sizeY":24},{"sizeX":48,"x":624,"y":408,"id":472,"sizeY":48},{"sizeX":24,"x":300,"y":264,"id":473,"sizeY":24},{"sizeX":48,"x":420,"y":408,"id":474,"sizeY":48},{"sizeX":24,"x":360,"y":504,"id":480,"sizeY":24},{"sizeX":24,"x":816,"y":288,"id":481,"sizeY":24},{"sizeX":24,"x":0,"y":156,"id":482,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":483,"sizeY":24},{"sizeX":24,"x":816,"y":240,"id":485,"sizeY":24},{"sizeX":24,"x":276,"y":180,"id":486,"sizeY":24},{"sizeX":24,"x":336,"y":132,"id":487,"sizeY":24},{"sizeX":24,"x":372,"y":132,"id":488,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":489,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":491,"sizeY":24},{"sizeX":24,"x":72,"y":156,"id":492,"sizeY":24},{"sizeX":24,"x":288,"y":468,"id":494,"sizeY":24},{"sizeX":24,"x":240,"y":240,"id":498,"sizeY":24},{"sizeX":24,"x":252,"y":468,"id":535,"sizeY":24},{"sizeX":24,"x":72,"y":228,"id":656,"sizeY":24},{"sizeX":24,"x":120,"y":228,"id":657,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":693,"sizeY":24},{"sizeX":24,"x":180,"y":84,"id":718,"sizeY":24},{"sizeX":24,"x":156,"y":240,"id":727,"sizeY":24},{"sizeX":24,"x":120,"y":276,"id":728,"sizeY":24},{"sizeX":24,"x":156,"y":276,"id":729,"sizeY":24},{"sizeX":24,"x":324,"y":504,"id":825,"sizeY":24},{"sizeX":24,"x":396,"y":504,"id":826,"sizeY":24},{"sizeX":24,"x":696,"y":348,"id":862,"sizeY":24},{"sizeX":24,"x":372,"y":264,"id":863,"sizeY":24},{"sizeX":24,"x":696,"y":420,"id":864,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":945,"sizeY":24},{"sizeX":24,"x":564,"y":264,"id":947,"sizeY":24},{"sizeX":24,"x":144,"y":84,"id":1085,"sizeY":24},{"sizeX":24,"x":144,"y":48,"id":1095,"sizeY":24},{"sizeX":24,"x":252,"y":504,"id":1129,"sizeY":24},{"sizeX":48,"x":420,"y":0,"id":1146,"sizeY":48},{"sizeX":24,"x":36,"y":156,"id":1476,"sizeY":24},{"sizeX":24,"x":432,"y":540,"id":1496,"sizeY":24},{"sizeX":24,"x":396,"y":540,"id":1497,"sizeY":24},{"sizeX":24,"x":360,"y":540,"id":1498,"sizeY":24},{"sizeX":24,"x":216,"y":84,"id":1504,"sizeY":24},{"sizeX":24,"x":684,"y":108,"id":1505,"sizeY":24},{"sizeX":24,"x":684,"y":72,"id":1506,"sizeY":24},{"sizeX":24,"x":108,"y":84,"id":1508,"sizeY":24},{"sizeX":24,"x":216,"y":48,"id":1546,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":1738,"sizeY":24},{"sizeX":24,"x":168,"y":420,"id":1790,"sizeY":24},{"sizeX":24,"x":72,"y":120,"id":1831,"sizeY":24},{"sizeX":24,"x":72,"y":84,"id":1851,"sizeY":24},{"sizeX":24,"x":0,"y":84,"id":1852,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1864,"sizeY":24},{"sizeX":24,"x":336,"y":348,"id":1866,"sizeY":24},{"sizeX":24,"x":276,"y":216,"id":1926,"sizeY":24}],"lineID":1,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 0.5 - Stone Age","icon":{"id":"IC2:itemToolBronzePickaxe","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Basically the \"Tier 0\" of all your progression. This set helps you through the first tier until you can build your first steam machine"}},"order":1},{"quests":[{"sizeX":24,"x":192,"y":648,"id":16,"sizeY":24},{"sizeX":72,"x":48,"y":72,"id":44,"sizeY":72},{"sizeX":48,"x":144,"y":84,"id":46,"sizeY":48},{"sizeX":24,"x":156,"y":48,"id":47,"sizeY":24},{"sizeX":48,"x":252,"y":84,"id":48,"sizeY":48},{"sizeX":48,"x":480,"y":84,"id":49,"sizeY":48},{"sizeX":48,"x":564,"y":84,"id":50,"sizeY":48},{"sizeX":48,"x":564,"y":336,"id":51,"sizeY":48},{"sizeX":48,"x":564,"y":216,"id":52,"sizeY":48},{"sizeX":48,"x":408,"y":432,"id":53,"sizeY":48},{"sizeX":48,"x":408,"y":240,"id":54,"sizeY":48},{"sizeX":24,"x":384,"y":180,"id":55,"sizeY":24},{"sizeX":24,"x":468,"y":444,"id":56,"sizeY":24},{"sizeX":24,"x":624,"y":372,"id":57,"sizeY":24},{"sizeX":24,"x":624,"y":72,"id":58,"sizeY":24},{"sizeX":24,"x":108,"y":156,"id":59,"sizeY":24},{"sizeX":24,"x":144,"y":192,"id":60,"sizeY":24},{"sizeX":24,"x":144,"y":156,"id":61,"sizeY":24},{"sizeX":24,"x":108,"y":192,"id":62,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":63,"sizeY":24},{"sizeX":24,"x":0,"y":60,"id":64,"sizeY":24},{"sizeX":48,"x":60,"y":540,"id":65,"sizeY":48},{"sizeX":48,"x":324,"y":648,"id":66,"sizeY":48},{"sizeX":48,"x":408,"y":648,"id":67,"sizeY":48},{"sizeX":48,"x":324,"y":720,"id":68,"sizeY":48},{"sizeX":48,"x":564,"y":648,"id":69,"sizeY":48},{"sizeX":72,"x":396,"y":792,"id":70,"sizeY":72},{"sizeX":48,"x":564,"y":804,"id":71,"sizeY":48},{"sizeX":48,"x":132,"y":804,"id":72,"sizeY":48},{"sizeX":48,"x":132,"y":648,"id":73,"sizeY":48},{"sizeX":24,"x":228,"y":648,"id":84,"sizeY":24},{"sizeX":24,"x":12,"y":552,"id":119,"sizeY":24},{"sizeX":48,"x":408,"y":540,"id":478,"sizeY":48},{"sizeX":48,"x":480,"y":540,"id":479,"sizeY":48},{"sizeX":48,"x":360,"y":84,"id":493,"sizeY":48},{"sizeX":24,"x":492,"y":180,"id":495,"sizeY":24},{"sizeX":48,"x":564,"y":540,"id":496,"sizeY":48},{"sizeX":24,"x":420,"y":504,"id":497,"sizeY":24},{"sizeX":24,"x":408,"y":612,"id":534,"sizeY":24},{"sizeX":24,"x":624,"y":660,"id":536,"sizeY":24},{"sizeX":24,"x":96,"y":648,"id":558,"sizeY":24},{"sizeX":48,"x":480,"y":336,"id":563,"sizeY":48},{"sizeX":24,"x":48,"y":480,"id":596,"sizeY":24},{"sizeX":24,"x":228,"y":684,"id":625,"sizeY":24},{"sizeX":24,"x":12,"y":600,"id":658,"sizeY":24},{"sizeX":48,"x":408,"y":336,"id":694,"sizeY":48},{"sizeX":24,"x":12,"y":516,"id":705,"sizeY":24},{"sizeX":48,"x":144,"y":312,"id":741,"sizeY":48},{"sizeX":24,"x":204,"y":360,"id":742,"sizeY":24},{"sizeX":24,"x":108,"y":360,"id":743,"sizeY":24},{"sizeX":24,"x":108,"y":324,"id":744,"sizeY":24},{"sizeX":48,"x":228,"y":720,"id":834,"sizeY":48},{"sizeX":48,"x":408,"y":720,"id":835,"sizeY":48},{"sizeX":24,"x":576,"y":144,"id":867,"sizeY":24},{"sizeX":24,"x":624,"y":120,"id":868,"sizeY":24},{"sizeX":24,"x":228,"y":612,"id":871,"sizeY":24},{"sizeX":24,"x":624,"y":528,"id":875,"sizeY":24},{"sizeX":24,"x":192,"y":684,"id":890,"sizeY":24},{"sizeX":24,"x":660,"y":660,"id":942,"sizeY":24},{"sizeX":24,"x":348,"y":252,"id":948,"sizeY":24},{"sizeX":24,"x":348,"y":288,"id":1008,"sizeY":24},{"sizeX":24,"x":348,"y":216,"id":1107,"sizeY":24},{"sizeX":24,"x":348,"y":180,"id":1108,"sizeY":24},{"sizeX":24,"x":468,"y":252,"id":1124,"sizeY":24},{"sizeX":24,"x":468,"y":216,"id":1125,"sizeY":24},{"sizeX":48,"x":144,"y":432,"id":1126,"sizeY":48},{"sizeX":24,"x":12,"y":480,"id":1127,"sizeY":24},{"sizeX":24,"x":576,"y":180,"id":1128,"sizeY":24},{"sizeX":24,"x":492,"y":288,"id":1130,"sizeY":24},{"sizeX":24,"x":468,"y":504,"id":1132,"sizeY":24},{"sizeX":24,"x":96,"y":480,"id":1133,"sizeY":24},{"sizeX":24,"x":624,"y":696,"id":1147,"sizeY":24},{"sizeX":24,"x":204,"y":324,"id":1151,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1156,"sizeY":24},{"sizeX":24,"x":660,"y":696,"id":1157,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1205,"sizeY":24},{"sizeX":24,"x":420,"y":180,"id":1507,"sizeY":24},{"sizeX":24,"x":624,"y":228,"id":1536,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":1735,"sizeY":24},{"sizeX":24,"x":624,"y":576,"id":1741,"sizeY":24},{"sizeX":24,"x":72,"y":684,"id":1789,"sizeY":24},{"sizeX":24,"x":456,"y":612,"id":1888,"sizeY":24},{"sizeX":24,"x":516,"y":504,"id":1908,"sizeY":24},{"sizeX":24,"x":624,"y":324,"id":1915,"sizeY":24},{"sizeX":24,"x":372,"y":444,"id":1919,"sizeY":24},{"sizeX":24,"x":48,"y":648,"id":1987,"sizeY":24},{"sizeX":24,"x":12,"y":648,"id":1988,"sizeY":24},{"sizeX":24,"x":348,"y":324,"id":2026,"sizeY":24},{"sizeX":24,"x":504,"y":612,"id":2056,"sizeY":24},{"sizeX":24,"x":12,"y":684,"id":2087,"sizeY":24},{"sizeX":24,"x":528,"y":216,"id":2140,"sizeY":24},{"sizeX":24,"x":420,"y":876,"id":2161,"sizeY":24}],"lineID":2,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 1 - Steam","icon":{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Quest set for all steam-based machines."}},"order":2},{"quests":[{"sizeX":72,"x":324,"y":120,"id":88,"sizeY":72},{"sizeX":48,"x":336,"y":0,"id":90,"sizeY":48},{"sizeX":48,"x":240,"y":288,"id":91,"sizeY":48},{"sizeX":48,"x":516,"y":432,"id":92,"sizeY":48},{"sizeX":48,"x":336,"y":288,"id":93,"sizeY":48},{"sizeX":48,"x":540,"y":288,"id":94,"sizeY":48},{"sizeX":48,"x":432,"y":288,"id":95,"sizeY":48},{"sizeX":48,"x":264,"y":0,"id":96,"sizeY":48},{"sizeX":72,"x":504,"y":588,"id":97,"sizeY":72},{"sizeX":48,"x":432,"y":1020,"id":98,"sizeY":48},{"sizeX":24,"x":444,"y":252,"id":100,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":101,"sizeY":24},{"sizeX":48,"x":84,"y":1020,"id":102,"sizeY":48},{"sizeX":72,"x":96,"y":120,"id":103,"sizeY":72},{"sizeX":48,"x":24,"y":132,"id":104,"sizeY":48},{"sizeX":48,"x":432,"y":840,"id":105,"sizeY":48},{"sizeX":24,"x":432,"y":96,"id":113,"sizeY":24},{"sizeX":24,"x":468,"y":48,"id":114,"sizeY":24},{"sizeX":24,"x":432,"y":48,"id":115,"sizeY":24},{"sizeX":24,"x":384,"y":84,"id":116,"sizeY":24},{"sizeX":24,"x":588,"y":540,"id":117,"sizeY":24},{"sizeX":24,"x":468,"y":504,"id":118,"sizeY":24},{"sizeX":24,"x":588,"y":48,"id":120,"sizeY":24},{"sizeX":24,"x":588,"y":96,"id":121,"sizeY":24},{"sizeX":24,"x":636,"y":48,"id":122,"sizeY":24},{"sizeX":24,"x":636,"y":96,"id":123,"sizeY":24},{"sizeX":24,"x":684,"y":48,"id":124,"sizeY":24},{"sizeX":24,"x":684,"y":96,"id":125,"sizeY":24},{"sizeX":48,"x":600,"y":432,"id":529,"sizeY":48},{"sizeX":48,"x":684,"y":432,"id":530,"sizeY":48},{"sizeX":24,"x":660,"y":612,"id":531,"sizeY":24},{"sizeX":24,"x":528,"y":348,"id":532,"sizeY":24},{"sizeX":24,"x":528,"y":252,"id":533,"sizeY":24},{"sizeX":24,"x":348,"y":384,"id":538,"sizeY":24},{"sizeX":48,"x":360,"y":756,"id":539,"sizeY":48},{"sizeX":48,"x":0,"y":1020,"id":540,"sizeY":48},{"sizeX":48,"x":0,"y":288,"id":541,"sizeY":48},{"sizeX":48,"x":768,"y":132,"id":542,"sizeY":48},{"sizeX":72,"x":276,"y":744,"id":543,"sizeY":72},{"sizeX":24,"x":480,"y":348,"id":544,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":545,"sizeY":24},{"sizeX":24,"x":96,"y":492,"id":546,"sizeY":24},{"sizeX":48,"x":84,"y":600,"id":547,"sizeY":48},{"sizeX":24,"x":192,"y":612,"id":548,"sizeY":24},{"sizeX":24,"x":192,"y":648,"id":549,"sizeY":24},{"sizeX":48,"x":288,"y":840,"id":550,"sizeY":48},{"sizeX":24,"x":144,"y":900,"id":551,"sizeY":24},{"sizeX":24,"x":180,"y":900,"id":552,"sizeY":24},{"sizeX":48,"x":264,"y":72,"id":554,"sizeY":48},{"sizeX":24,"x":372,"y":816,"id":555,"sizeY":24},{"sizeX":48,"x":372,"y":468,"id":579,"sizeY":48},{"sizeX":48,"x":180,"y":0,"id":587,"sizeY":48},{"sizeX":48,"x":516,"y":996,"id":597,"sizeY":48},{"sizeX":48,"x":516,"y":924,"id":598,"sizeY":48},{"sizeX":24,"x":828,"y":828,"id":599,"sizeY":24},{"sizeX":48,"x":516,"y":840,"id":608,"sizeY":48},{"sizeX":48,"x":612,"y":924,"id":609,"sizeY":48},{"sizeX":24,"x":732,"y":1104,"id":611,"sizeY":24},{"sizeX":24,"x":732,"y":1140,"id":612,"sizeY":24},{"sizeX":24,"x":864,"y":1068,"id":613,"sizeY":24},{"sizeX":24,"x":828,"y":1068,"id":614,"sizeY":24},{"sizeX":48,"x":924,"y":1056,"id":615,"sizeY":48},{"sizeX":24,"x":624,"y":1068,"id":616,"sizeY":24},{"sizeX":24,"x":624,"y":1140,"id":617,"sizeY":24},{"sizeX":24,"x":732,"y":1068,"id":618,"sizeY":24},{"sizeX":48,"x":852,"y":1128,"id":619,"sizeY":48},{"sizeX":24,"x":660,"y":1008,"id":620,"sizeY":24},{"sizeX":24,"x":744,"y":1008,"id":621,"sizeY":24},{"sizeX":48,"x":768,"y":924,"id":622,"sizeY":48},{"sizeX":24,"x":780,"y":1044,"id":623,"sizeY":24},{"sizeX":48,"x":852,"y":996,"id":624,"sizeY":48},{"sizeX":24,"x":264,"y":1032,"id":626,"sizeY":24},{"sizeX":24,"x":156,"y":648,"id":639,"sizeY":24},{"sizeX":24,"x":168,"y":852,"id":640,"sizeY":24},{"sizeX":24,"x":204,"y":720,"id":641,"sizeY":24},{"sizeX":24,"x":120,"y":936,"id":642,"sizeY":24},{"sizeX":24,"x":204,"y":936,"id":643,"sizeY":24},{"sizeX":24,"x":300,"y":936,"id":644,"sizeY":24},{"sizeX":24,"x":588,"y":1008,"id":646,"sizeY":24},{"sizeX":24,"x":468,"y":576,"id":661,"sizeY":24},{"sizeX":48,"x":996,"y":1128,"id":662,"sizeY":48},{"sizeX":24,"x":1056,"y":1140,"id":663,"sizeY":24},{"sizeX":48,"x":924,"y":1128,"id":664,"sizeY":48},{"sizeX":48,"x":300,"y":468,"id":673,"sizeY":48},{"sizeX":48,"x":636,"y":252,"id":716,"sizeY":48},{"sizeX":72,"x":600,"y":744,"id":717,"sizeY":72},{"sizeX":24,"x":264,"y":708,"id":726,"sizeY":24},{"sizeX":48,"x":444,"y":756,"id":745,"sizeY":48},{"sizeX":48,"x":612,"y":840,"id":747,"sizeY":48},{"sizeX":48,"x":516,"y":756,"id":748,"sizeY":48},{"sizeX":24,"x":252,"y":348,"id":771,"sizeY":24},{"sizeX":48,"x":696,"y":756,"id":795,"sizeY":48},{"sizeX":48,"x":768,"y":840,"id":836,"sizeY":48},{"sizeX":24,"x":204,"y":852,"id":840,"sizeY":24},{"sizeX":24,"x":480,"y":252,"id":869,"sizeY":24},{"sizeX":24,"x":276,"y":384,"id":891,"sizeY":24},{"sizeX":24,"x":276,"y":420,"id":892,"sizeY":24},{"sizeX":24,"x":312,"y":384,"id":898,"sizeY":24},{"sizeX":24,"x":744,"y":444,"id":930,"sizeY":24},{"sizeX":24,"x":444,"y":1104,"id":962,"sizeY":24},{"sizeX":24,"x":492,"y":1104,"id":1035,"sizeY":24},{"sizeX":48,"x":24,"y":600,"id":1084,"sizeY":48},{"sizeX":24,"x":144,"y":492,"id":1090,"sizeY":24},{"sizeX":24,"x":120,"y":1104,"id":1091,"sizeY":24},{"sizeX":24,"x":192,"y":492,"id":1092,"sizeY":24},{"sizeX":24,"x":156,"y":1104,"id":1094,"sizeY":24},{"sizeX":24,"x":588,"y":504,"id":1131,"sizeY":24},{"sizeX":24,"x":576,"y":852,"id":1134,"sizeY":24},{"sizeX":24,"x":312,"y":420,"id":1135,"sizeY":24},{"sizeX":24,"x":468,"y":540,"id":1136,"sizeY":24},{"sizeX":24,"x":264,"y":480,"id":1149,"sizeY":24},{"sizeX":24,"x":264,"y":528,"id":1150,"sizeY":24},{"sizeX":24,"x":216,"y":528,"id":1152,"sizeY":24},{"sizeX":24,"x":216,"y":576,"id":1153,"sizeY":24},{"sizeX":24,"x":300,"y":528,"id":1154,"sizeY":24},{"sizeX":48,"x":288,"y":564,"id":1155,"sizeY":48},{"sizeX":24,"x":372,"y":888,"id":1160,"sizeY":24},{"sizeX":24,"x":648,"y":216,"id":1166,"sizeY":24},{"sizeX":48,"x":852,"y":924,"id":1167,"sizeY":48},{"sizeX":24,"x":780,"y":1008,"id":1168,"sizeY":24},{"sizeX":48,"x":996,"y":1056,"id":1172,"sizeY":48},{"sizeX":48,"x":108,"y":60,"id":1266,"sizeY":48},{"sizeX":24,"x":348,"y":348,"id":1273,"sizeY":24},{"sizeX":24,"x":384,"y":348,"id":1274,"sizeY":24},{"sizeX":24,"x":396,"y":1104,"id":1285,"sizeY":24},{"sizeX":24,"x":264,"y":660,"id":1485,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1499,"sizeY":24},{"sizeX":24,"x":588,"y":576,"id":1510,"sizeY":24},{"sizeX":24,"x":372,"y":852,"id":1519,"sizeY":24},{"sizeX":24,"x":48,"y":1104,"id":1528,"sizeY":24},{"sizeX":24,"x":408,"y":720,"id":1540,"sizeY":24},{"sizeX":48,"x":516,"y":672,"id":1549,"sizeY":48},{"sizeX":24,"x":504,"y":48,"id":1599,"sizeY":24},{"sizeX":24,"x":408,"y":684,"id":1613,"sizeY":24},{"sizeX":24,"x":84,"y":1104,"id":1653,"sizeY":24},{"sizeX":24,"x":408,"y":648,"id":1791,"sizeY":24},{"sizeX":24,"x":624,"y":576,"id":1792,"sizeY":24},{"sizeX":24,"x":828,"y":876,"id":1796,"sizeY":24},{"sizeX":24,"x":672,"y":888,"id":1821,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1846,"sizeY":24},{"sizeX":24,"x":384,"y":528,"id":1863,"sizeY":24},{"sizeX":24,"x":456,"y":612,"id":1865,"sizeY":24},{"sizeX":24,"x":444,"y":216,"id":1887,"sizeY":24},{"sizeX":24,"x":576,"y":684,"id":1918,"sizeY":24},{"sizeX":24,"x":252,"y":252,"id":2142,"sizeY":24},{"sizeX":48,"x":240,"y":192,"id":2143,"sizeY":48}],"lineID":3,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 2 - 32 EU (LV)","icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17019,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The first \"voltage\" tier of this pack. Things are getting easier...\nBTW, if you can't see any quests, click in the quest window or use the mousewheel to zoom in and out. "}},"order":3},{"quests":[{"sizeX":24,"x":528,"y":204,"id":89,"sizeY":24},{"sizeX":48,"x":228,"y":420,"id":126,"sizeY":48},{"sizeX":24,"x":672,"y":348,"id":128,"sizeY":24},{"sizeX":24,"x":792,"y":312,"id":129,"sizeY":24},{"sizeX":24,"x":792,"y":264,"id":130,"sizeY":24},{"sizeX":24,"x":744,"y":264,"id":131,"sizeY":24},{"sizeX":24,"x":792,"y":228,"id":132,"sizeY":24},{"sizeX":24,"x":828,"y":312,"id":134,"sizeY":24},{"sizeX":24,"x":864,"y":312,"id":135,"sizeY":24},{"sizeX":24,"x":864,"y":264,"id":136,"sizeY":24},{"sizeX":24,"x":828,"y":264,"id":137,"sizeY":24},{"sizeX":24,"x":672,"y":228,"id":138,"sizeY":24},{"sizeX":24,"x":636,"y":192,"id":140,"sizeY":24},{"sizeX":24,"x":792,"y":192,"id":142,"sizeY":24},{"sizeX":24,"x":744,"y":228,"id":143,"sizeY":24},{"sizeX":24,"x":744,"y":192,"id":145,"sizeY":24},{"sizeX":24,"x":828,"y":156,"id":148,"sizeY":24},{"sizeX":24,"x":792,"y":156,"id":149,"sizeY":24},{"sizeX":24,"x":828,"y":192,"id":150,"sizeY":24},{"sizeX":24,"x":828,"y":120,"id":151,"sizeY":24},{"sizeX":24,"x":828,"y":84,"id":152,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":153,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":154,"sizeY":24},{"sizeX":24,"x":228,"y":192,"id":155,"sizeY":24},{"sizeX":24,"x":264,"y":192,"id":156,"sizeY":24},{"sizeX":24,"x":300,"y":192,"id":157,"sizeY":24},{"sizeX":24,"x":300,"y":228,"id":158,"sizeY":24},{"sizeX":24,"x":300,"y":156,"id":159,"sizeY":24},{"sizeX":24,"x":540,"y":600,"id":553,"sizeY":24},{"sizeX":24,"x":744,"y":312,"id":604,"sizeY":24},{"sizeX":24,"x":552,"y":492,"id":659,"sizeY":24},{"sizeX":24,"x":564,"y":540,"id":660,"sizeY":24},{"sizeX":24,"x":36,"y":348,"id":730,"sizeY":24},{"sizeX":24,"x":36,"y":384,"id":731,"sizeY":24},{"sizeX":24,"x":36,"y":444,"id":732,"sizeY":24},{"sizeX":24,"x":36,"y":528,"id":733,"sizeY":24},{"sizeX":24,"x":72,"y":528,"id":734,"sizeY":24},{"sizeX":24,"x":0,"y":528,"id":735,"sizeY":24},{"sizeX":24,"x":36,"y":600,"id":736,"sizeY":24},{"sizeX":48,"x":588,"y":480,"id":740,"sizeY":48},{"sizeX":48,"x":228,"y":924,"id":746,"sizeY":48},{"sizeX":48,"x":408,"y":516,"id":749,"sizeY":48},{"sizeX":72,"x":288,"y":660,"id":750,"sizeY":72},{"sizeX":48,"x":480,"y":588,"id":751,"sizeY":48},{"sizeX":48,"x":480,"y":924,"id":752,"sizeY":48},{"sizeX":72,"x":468,"y":660,"id":753,"sizeY":72},{"sizeX":48,"x":480,"y":516,"id":754,"sizeY":48},{"sizeX":24,"x":288,"y":468,"id":757,"sizeY":24},{"sizeX":24,"x":240,"y":372,"id":758,"sizeY":24},{"sizeX":48,"x":228,"y":672,"id":759,"sizeY":48},{"sizeX":48,"x":144,"y":180,"id":760,"sizeY":48},{"sizeX":24,"x":192,"y":684,"id":773,"sizeY":24},{"sizeX":24,"x":0,"y":408,"id":774,"sizeY":24},{"sizeX":24,"x":156,"y":684,"id":778,"sizeY":24},{"sizeX":24,"x":0,"y":444,"id":780,"sizeY":24},{"sizeX":48,"x":144,"y":84,"id":782,"sizeY":48},{"sizeX":48,"x":648,"y":924,"id":785,"sizeY":48},{"sizeX":48,"x":144,"y":0,"id":791,"sizeY":48},{"sizeX":48,"x":372,"y":84,"id":792,"sizeY":48},{"sizeX":48,"x":876,"y":0,"id":793,"sizeY":48},{"sizeX":48,"x":600,"y":0,"id":794,"sizeY":48},{"sizeX":48,"x":372,"y":0,"id":837,"sizeY":48},{"sizeX":72,"x":864,"y":912,"id":838,"sizeY":72},{"sizeX":24,"x":924,"y":876,"id":839,"sizeY":24},{"sizeX":24,"x":0,"y":600,"id":842,"sizeY":24},{"sizeX":24,"x":72,"y":636,"id":843,"sizeY":24},{"sizeX":24,"x":36,"y":636,"id":844,"sizeY":24},{"sizeX":24,"x":36,"y":684,"id":845,"sizeY":24},{"sizeX":48,"x":168,"y":504,"id":846,"sizeY":48},{"sizeX":48,"x":228,"y":588,"id":847,"sizeY":48},{"sizeX":24,"x":36,"y":732,"id":848,"sizeY":24},{"sizeX":24,"x":96,"y":684,"id":849,"sizeY":24},{"sizeX":24,"x":324,"y":516,"id":850,"sizeY":24},{"sizeX":24,"x":288,"y":516,"id":852,"sizeY":24},{"sizeX":48,"x":372,"y":420,"id":893,"sizeY":48},{"sizeX":24,"x":336,"y":432,"id":894,"sizeY":24},{"sizeX":48,"x":480,"y":420,"id":895,"sizeY":48},{"sizeX":48,"x":588,"y":420,"id":896,"sizeY":48},{"sizeX":48,"x":744,"y":420,"id":897,"sizeY":48},{"sizeX":24,"x":636,"y":384,"id":931,"sizeY":24},{"sizeX":24,"x":468,"y":120,"id":933,"sizeY":24},{"sizeX":24,"x":504,"y":120,"id":934,"sizeY":24},{"sizeX":24,"x":468,"y":156,"id":935,"sizeY":24},{"sizeX":24,"x":492,"y":756,"id":938,"sizeY":24},{"sizeX":24,"x":456,"y":756,"id":939,"sizeY":24},{"sizeX":24,"x":336,"y":468,"id":944,"sizeY":24},{"sizeX":48,"x":372,"y":672,"id":951,"sizeY":48},{"sizeX":24,"x":432,"y":636,"id":952,"sizeY":24},{"sizeX":24,"x":576,"y":684,"id":953,"sizeY":24},{"sizeX":48,"x":384,"y":792,"id":1013,"sizeY":48},{"sizeX":48,"x":384,"y":864,"id":1015,"sizeY":48},{"sizeX":48,"x":300,"y":864,"id":1020,"sizeY":48},{"sizeX":48,"x":300,"y":792,"id":1021,"sizeY":48},{"sizeX":48,"x":648,"y":480,"id":1081,"sizeY":48},{"sizeX":24,"x":312,"y":372,"id":1082,"sizeY":24},{"sizeX":24,"x":276,"y":372,"id":1083,"sizeY":24},{"sizeX":24,"x":108,"y":480,"id":1093,"sizeY":24},{"sizeX":72,"x":132,"y":324,"id":1148,"sizeY":72},{"sizeX":24,"x":660,"y":540,"id":1180,"sizeY":24},{"sizeX":24,"x":0,"y":684,"id":1226,"sizeY":24},{"sizeX":24,"x":312,"y":756,"id":1227,"sizeY":24},{"sizeX":24,"x":204,"y":288,"id":1267,"sizeY":24},{"sizeX":24,"x":240,"y":288,"id":1268,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":1269,"sizeY":24},{"sizeX":24,"x":672,"y":384,"id":1279,"sizeY":24},{"sizeX":24,"x":72,"y":408,"id":1320,"sizeY":24},{"sizeX":24,"x":0,"y":480,"id":1321,"sizeY":24},{"sizeX":24,"x":72,"y":480,"id":1322,"sizeY":24},{"sizeX":24,"x":36,"y":564,"id":1323,"sizeY":24},{"sizeX":24,"x":36,"y":780,"id":1324,"sizeY":24},{"sizeX":24,"x":576,"y":756,"id":1417,"sizeY":24},{"sizeX":48,"x":456,"y":228,"id":1477,"sizeY":48},{"sizeX":48,"x":372,"y":228,"id":1478,"sizeY":48},{"sizeX":24,"x":468,"y":192,"id":1482,"sizeY":24},{"sizeX":24,"x":540,"y":756,"id":1494,"sizeY":24},{"sizeX":24,"x":636,"y":228,"id":1518,"sizeY":24},{"sizeX":24,"x":660,"y":852,"id":1520,"sizeY":24},{"sizeX":24,"x":432,"y":684,"id":1524,"sizeY":24},{"sizeX":24,"x":672,"y":192,"id":1527,"sizeY":24},{"sizeX":24,"x":552,"y":636,"id":1537,"sizeY":24},{"sizeX":24,"x":132,"y":780,"id":1544,"sizeY":24},{"sizeX":24,"x":600,"y":384,"id":1547,"sizeY":24},{"sizeX":48,"x":648,"y":792,"id":1598,"sizeY":48},{"sizeX":24,"x":804,"y":432,"id":1614,"sizeY":24},{"sizeX":24,"x":636,"y":156,"id":1643,"sizeY":24},{"sizeX":24,"x":540,"y":432,"id":1736,"sizeY":24},{"sizeX":48,"x":228,"y":504,"id":1744,"sizeY":48},{"sizeX":24,"x":444,"y":876,"id":1819,"sizeY":24},{"sizeX":24,"x":852,"y":876,"id":1823,"sizeY":24},{"sizeX":24,"x":744,"y":348,"id":1835,"sizeY":24},{"sizeX":24,"x":528,"y":312,"id":1850,"sizeY":24},{"sizeX":48,"x":420,"y":336,"id":1867,"sizeY":48},{"sizeX":48,"x":600,"y":84,"id":1868,"sizeY":48},{"sizeX":24,"x":528,"y":240,"id":1869,"sizeY":24},{"sizeX":24,"x":564,"y":384,"id":1870,"sizeY":24},{"sizeX":24,"x":288,"y":600,"id":1872,"sizeY":24},{"sizeX":24,"x":324,"y":600,"id":1873,"sizeY":24},{"sizeX":24,"x":360,"y":600,"id":1874,"sizeY":24},{"sizeX":24,"x":708,"y":492,"id":1907,"sizeY":24},{"sizeX":24,"x":600,"y":540,"id":1910,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1911,"sizeY":24},{"sizeX":24,"x":372,"y":312,"id":1913,"sizeY":24},{"sizeX":24,"x":336,"y":312,"id":1914,"sizeY":24},{"sizeX":24,"x":384,"y":192,"id":1916,"sizeY":24},{"sizeX":24,"x":384,"y":156,"id":1917,"sizeY":24},{"sizeX":24,"x":696,"y":540,"id":2014,"sizeY":24},{"sizeX":24,"x":288,"y":432,"id":2043,"sizeY":24},{"sizeX":24,"x":708,"y":804,"id":2047,"sizeY":24},{"sizeX":24,"x":744,"y":156,"id":2086,"sizeY":24},{"sizeX":24,"x":528,"y":276,"id":2141,"sizeY":24},{"sizeX":24,"x":108,"y":444,"id":2253,"sizeY":24}],"lineID":4,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 3 - 128 EU (MV)","icon":{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Your second voltage tier. Don't mix different voltage levels, or you will be punished in a hard way. Start thinking about how to expand your base. \nAgain, use mousewheel to zoom out to see quests."}},"order":4},{"quests":[{"sizeX":24,"x":420,"y":348,"id":133,"sizeY":24},{"sizeX":24,"x":744,"y":180,"id":141,"sizeY":24},{"sizeX":24,"x":648,"y":228,"id":144,"sizeY":24},{"sizeX":24,"x":648,"y":264,"id":146,"sizeY":24},{"sizeX":24,"x":444,"y":876,"id":147,"sizeY":24},{"sizeX":72,"x":456,"y":156,"id":160,"sizeY":72},{"sizeX":48,"x":552,"y":564,"id":162,"sizeY":48},{"sizeX":24,"x":780,"y":264,"id":163,"sizeY":24},{"sizeX":24,"x":696,"y":264,"id":165,"sizeY":24},{"sizeX":24,"x":612,"y":264,"id":166,"sizeY":24},{"sizeX":24,"x":504,"y":276,"id":167,"sizeY":24},{"sizeX":24,"x":696,"y":228,"id":168,"sizeY":24},{"sizeX":24,"x":744,"y":264,"id":169,"sizeY":24},{"sizeX":24,"x":780,"y":132,"id":170,"sizeY":24},{"sizeX":24,"x":360,"y":132,"id":171,"sizeY":24},{"sizeX":24,"x":312,"y":132,"id":172,"sizeY":24},{"sizeX":24,"x":264,"y":132,"id":173,"sizeY":24},{"sizeX":24,"x":228,"y":132,"id":174,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":175,"sizeY":24},{"sizeX":24,"x":360,"y":912,"id":557,"sizeY":24},{"sizeX":48,"x":300,"y":324,"id":769,"sizeY":48},{"sizeX":48,"x":300,"y":408,"id":770,"sizeY":48},{"sizeX":48,"x":216,"y":324,"id":772,"sizeY":48},{"sizeX":24,"x":312,"y":288,"id":789,"sizeY":24},{"sizeX":24,"x":312,"y":252,"id":790,"sizeY":24},{"sizeX":48,"x":432,"y":48,"id":808,"sizeY":48},{"sizeX":24,"x":360,"y":876,"id":841,"sizeY":24},{"sizeX":24,"x":324,"y":876,"id":851,"sizeY":24},{"sizeX":24,"x":360,"y":828,"id":853,"sizeY":24},{"sizeX":24,"x":252,"y":828,"id":854,"sizeY":24},{"sizeX":24,"x":312,"y":828,"id":855,"sizeY":24},{"sizeX":24,"x":444,"y":948,"id":856,"sizeY":24},{"sizeX":24,"x":360,"y":792,"id":857,"sizeY":24},{"sizeX":24,"x":252,"y":984,"id":858,"sizeY":24},{"sizeX":24,"x":480,"y":984,"id":859,"sizeY":24},{"sizeX":72,"x":732,"y":636,"id":860,"sizeY":72},{"sizeX":24,"x":504,"y":348,"id":932,"sizeY":24},{"sizeX":48,"x":300,"y":720,"id":943,"sizeY":48},{"sizeX":24,"x":744,"y":336,"id":987,"sizeY":24},{"sizeX":24,"x":816,"y":180,"id":988,"sizeY":24},{"sizeX":24,"x":648,"y":180,"id":989,"sizeY":24},{"sizeX":24,"x":744,"y":300,"id":990,"sizeY":24},{"sizeX":24,"x":744,"y":132,"id":998,"sizeY":24},{"sizeX":24,"x":744,"y":96,"id":999,"sizeY":24},{"sizeX":24,"x":648,"y":132,"id":1000,"sizeY":24},{"sizeX":24,"x":696,"y":132,"id":1001,"sizeY":24},{"sizeX":48,"x":648,"y":564,"id":1011,"sizeY":48},{"sizeX":48,"x":744,"y":564,"id":1012,"sizeY":48},{"sizeX":72,"x":48,"y":312,"id":1014,"sizeY":72},{"sizeX":48,"x":60,"y":564,"id":1016,"sizeY":48},{"sizeX":48,"x":60,"y":408,"id":1017,"sizeY":48},{"sizeX":48,"x":216,"y":564,"id":1018,"sizeY":48},{"sizeX":48,"x":60,"y":492,"id":1019,"sizeY":48},{"sizeX":24,"x":564,"y":72,"id":1137,"sizeY":24},{"sizeX":24,"x":564,"y":36,"id":1138,"sizeY":24},{"sizeX":24,"x":600,"y":72,"id":1139,"sizeY":24},{"sizeX":24,"x":600,"y":36,"id":1140,"sizeY":24},{"sizeX":24,"x":564,"y":0,"id":1141,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":1142,"sizeY":24},{"sizeX":24,"x":360,"y":72,"id":1143,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":1144,"sizeY":24},{"sizeX":24,"x":600,"y":0,"id":1145,"sizeY":24},{"sizeX":48,"x":552,"y":480,"id":1164,"sizeY":48},{"sizeX":48,"x":144,"y":564,"id":1221,"sizeY":48},{"sizeX":48,"x":60,"y":240,"id":1222,"sizeY":48},{"sizeX":48,"x":60,"y":168,"id":1225,"sizeY":48},{"sizeX":72,"x":456,"y":396,"id":1231,"sizeY":72},{"sizeX":72,"x":288,"y":552,"id":1232,"sizeY":72},{"sizeX":48,"x":300,"y":648,"id":1233,"sizeY":48},{"sizeX":24,"x":156,"y":624,"id":1235,"sizeY":24},{"sizeX":48,"x":144,"y":408,"id":1236,"sizeY":48},{"sizeX":48,"x":216,"y":168,"id":1237,"sizeY":48},{"sizeX":48,"x":216,"y":252,"id":1238,"sizeY":48},{"sizeX":48,"x":144,"y":324,"id":1239,"sizeY":48},{"sizeX":48,"x":144,"y":168,"id":1240,"sizeY":48},{"sizeX":24,"x":540,"y":348,"id":1271,"sizeY":24},{"sizeX":24,"x":420,"y":444,"id":1289,"sizeY":24},{"sizeX":24,"x":396,"y":72,"id":1403,"sizeY":24},{"sizeX":24,"x":540,"y":276,"id":1404,"sizeY":24},{"sizeX":24,"x":816,"y":660,"id":1405,"sizeY":24},{"sizeX":24,"x":288,"y":876,"id":1411,"sizeY":24},{"sizeX":24,"x":612,"y":492,"id":1420,"sizeY":24},{"sizeX":48,"x":648,"y":648,"id":1424,"sizeY":48},{"sizeX":24,"x":612,"y":228,"id":1502,"sizeY":24},{"sizeX":24,"x":816,"y":216,"id":1509,"sizeY":24},{"sizeX":24,"x":504,"y":312,"id":1517,"sizeY":24},{"sizeX":24,"x":612,"y":420,"id":1521,"sizeY":24},{"sizeX":24,"x":780,"y":300,"id":1526,"sizeY":24},{"sizeX":24,"x":360,"y":384,"id":1529,"sizeY":24},{"sizeX":72,"x":540,"y":636,"id":1612,"sizeY":72},{"sizeX":24,"x":240,"y":732,"id":1615,"sizeY":24},{"sizeX":24,"x":180,"y":732,"id":1617,"sizeY":24},{"sizeX":24,"x":120,"y":780,"id":1620,"sizeY":24},{"sizeX":24,"x":120,"y":732,"id":1621,"sizeY":24},{"sizeX":24,"x":120,"y":828,"id":1622,"sizeY":24},{"sizeX":24,"x":264,"y":660,"id":1655,"sizeY":24},{"sizeX":24,"x":120,"y":876,"id":1660,"sizeY":24},{"sizeX":24,"x":216,"y":780,"id":1661,"sizeY":24},{"sizeX":24,"x":168,"y":780,"id":1662,"sizeY":24},{"sizeX":24,"x":168,"y":828,"id":1663,"sizeY":24},{"sizeX":24,"x":168,"y":876,"id":1664,"sizeY":24},{"sizeX":24,"x":108,"y":624,"id":1713,"sizeY":24},{"sizeX":24,"x":60,"y":624,"id":1714,"sizeY":24},{"sizeX":24,"x":648,"y":312,"id":1739,"sizeY":24},{"sizeX":24,"x":612,"y":132,"id":1811,"sizeY":24},{"sizeX":48,"x":396,"y":720,"id":1812,"sizeY":48},{"sizeX":48,"x":432,"y":648,"id":1813,"sizeY":48},{"sizeX":48,"x":432,"y":564,"id":1814,"sizeY":48},{"sizeX":24,"x":420,"y":312,"id":1815,"sizeY":24},{"sizeX":24,"x":756,"y":720,"id":1824,"sizeY":24},{"sizeX":24,"x":780,"y":216,"id":1858,"sizeY":24},{"sizeX":24,"x":456,"y":348,"id":1871,"sizeY":24},{"sizeX":24,"x":0,"y":228,"id":1876,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1877,"sizeY":24},{"sizeX":48,"x":300,"y":480,"id":1903,"sizeY":48},{"sizeX":24,"x":0,"y":276,"id":1906,"sizeY":24},{"sizeX":24,"x":456,"y":312,"id":1909,"sizeY":24},{"sizeX":48,"x":504,"y":48,"id":1921,"sizeY":48},{"sizeX":24,"x":324,"y":72,"id":1922,"sizeY":24},{"sizeX":24,"x":324,"y":36,"id":1923,"sizeY":24},{"sizeX":24,"x":324,"y":0,"id":1924,"sizeY":24},{"sizeX":24,"x":360,"y":252,"id":2069,"sizeY":24},{"sizeX":24,"x":324,"y":948,"id":2293,"sizeY":24}],"lineID":5,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 4 - 512 EU (HV)","icon":{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Finally some power to work with. This tier will help you reach distant planets and gather more rare resources to build even more advanced machines."}},"order":5},{"quests":[{"sizeX":72,"x":252,"y":324,"id":176,"sizeY":72},{"sizeX":48,"x":192,"y":468,"id":186,"sizeY":48},{"sizeX":24,"x":216,"y":396,"id":187,"sizeY":24},{"sizeX":48,"x":168,"y":336,"id":188,"sizeY":48},{"sizeX":48,"x":420,"y":336,"id":189,"sizeY":48},{"sizeX":48,"x":492,"y":336,"id":190,"sizeY":48},{"sizeX":24,"x":552,"y":432,"id":191,"sizeY":24},{"sizeX":24,"x":588,"y":432,"id":192,"sizeY":24},{"sizeX":48,"x":492,"y":420,"id":193,"sizeY":48},{"sizeX":24,"x":504,"y":264,"id":194,"sizeY":24},{"sizeX":24,"x":504,"y":300,"id":195,"sizeY":24},{"sizeX":24,"x":552,"y":348,"id":196,"sizeY":24},{"sizeX":24,"x":552,"y":300,"id":197,"sizeY":24},{"sizeX":24,"x":588,"y":480,"id":198,"sizeY":24},{"sizeX":24,"x":456,"y":216,"id":199,"sizeY":24},{"sizeX":24,"x":456,"y":180,"id":200,"sizeY":24},{"sizeX":24,"x":504,"y":216,"id":206,"sizeY":24},{"sizeX":24,"x":432,"y":516,"id":207,"sizeY":24},{"sizeX":24,"x":432,"y":480,"id":208,"sizeY":24},{"sizeX":24,"x":432,"y":552,"id":209,"sizeY":24},{"sizeX":24,"x":396,"y":516,"id":210,"sizeY":24},{"sizeX":24,"x":432,"y":444,"id":211,"sizeY":24},{"sizeX":24,"x":336,"y":240,"id":212,"sizeY":24},{"sizeX":24,"x":144,"y":168,"id":805,"sizeY":24},{"sizeX":24,"x":108,"y":168,"id":806,"sizeY":24},{"sizeX":24,"x":72,"y":132,"id":807,"sizeY":24},{"sizeX":72,"x":180,"y":672,"id":861,"sizeY":72},{"sizeX":24,"x":540,"y":180,"id":936,"sizeY":24},{"sizeX":24,"x":540,"y":144,"id":937,"sizeY":24},{"sizeX":24,"x":576,"y":180,"id":1003,"sizeY":24},{"sizeX":24,"x":576,"y":144,"id":1004,"sizeY":24},{"sizeX":24,"x":336,"y":408,"id":1005,"sizeY":24},{"sizeX":48,"x":0,"y":0,"id":1223,"sizeY":48},{"sizeX":48,"x":264,"y":84,"id":1224,"sizeY":48},{"sizeX":48,"x":348,"y":84,"id":1228,"sizeY":48},{"sizeX":48,"x":264,"y":228,"id":1229,"sizeY":48},{"sizeX":48,"x":264,"y":156,"id":1230,"sizeY":48},{"sizeX":48,"x":180,"y":84,"id":1234,"sizeY":48},{"sizeX":24,"x":72,"y":288,"id":1241,"sizeY":24},{"sizeX":24,"x":336,"y":276,"id":1242,"sizeY":24},{"sizeX":48,"x":120,"y":540,"id":1243,"sizeY":48},{"sizeX":48,"x":192,"y":540,"id":1244,"sizeY":48},{"sizeX":48,"x":192,"y":228,"id":1245,"sizeY":48},{"sizeX":48,"x":0,"y":156,"id":1246,"sizeY":48},{"sizeX":48,"x":0,"y":228,"id":1247,"sizeY":48},{"sizeX":48,"x":108,"y":0,"id":1248,"sizeY":48},{"sizeX":48,"x":108,"y":84,"id":1249,"sizeY":48},{"sizeX":48,"x":180,"y":0,"id":1250,"sizeY":48},{"sizeX":72,"x":252,"y":-12,"id":1251,"sizeY":72},{"sizeX":24,"x":108,"y":288,"id":1252,"sizeY":24},{"sizeX":48,"x":348,"y":0,"id":1261,"sizeY":48},{"sizeX":24,"x":504,"y":180,"id":1262,"sizeY":24},{"sizeX":24,"x":504,"y":144,"id":1263,"sizeY":24},{"sizeX":24,"x":504,"y":108,"id":1264,"sizeY":24},{"sizeX":24,"x":456,"y":144,"id":1265,"sizeY":24},{"sizeX":48,"x":180,"y":156,"id":1406,"sizeY":48},{"sizeX":24,"x":72,"y":168,"id":1407,"sizeY":24},{"sizeX":24,"x":180,"y":624,"id":1408,"sizeY":24},{"sizeX":24,"x":180,"y":396,"id":1415,"sizeY":24},{"sizeX":24,"x":132,"y":624,"id":1416,"sizeY":24},{"sizeX":24,"x":132,"y":696,"id":1418,"sizeY":24},{"sizeX":48,"x":120,"y":468,"id":1461,"sizeY":48},{"sizeX":24,"x":336,"y":324,"id":1474,"sizeY":24},{"sizeX":24,"x":144,"y":288,"id":1480,"sizeY":24},{"sizeX":24,"x":588,"y":516,"id":1481,"sizeY":24},{"sizeX":24,"x":336,"y":372,"id":1525,"sizeY":24},{"sizeX":24,"x":156,"y":432,"id":1656,"sizeY":24},{"sizeX":24,"x":120,"y":432,"id":1657,"sizeY":24},{"sizeX":24,"x":84,"y":432,"id":1658,"sizeY":24},{"sizeX":24,"x":48,"y":432,"id":1659,"sizeY":24},{"sizeX":24,"x":276,"y":696,"id":1847,"sizeY":24},{"sizeX":24,"x":72,"y":96,"id":1878,"sizeY":24},{"sizeX":24,"x":36,"y":60,"id":1879,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":1880,"sizeY":24},{"sizeX":48,"x":264,"y":540,"id":1891,"sizeY":48},{"sizeX":24,"x":552,"y":480,"id":1898,"sizeY":24},{"sizeX":24,"x":504,"y":480,"id":1899,"sizeY":24},{"sizeX":24,"x":504,"y":516,"id":1900,"sizeY":24},{"sizeX":24,"x":552,"y":516,"id":1901,"sizeY":24},{"sizeX":24,"x":456,"y":300,"id":1902,"sizeY":24},{"sizeX":48,"x":96,"y":228,"id":1925,"sizeY":48},{"sizeX":48,"x":264,"y":468,"id":2018,"sizeY":48},{"sizeX":48,"x":336,"y":540,"id":2023,"sizeY":48},{"sizeX":24,"x":384,"y":372,"id":2210,"sizeY":24},{"sizeX":24,"x":204,"y":288,"id":2294,"sizeY":24}],"lineID":6,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 5 - 2048 EU (EV)","icon":{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Titanium level, fissile energy sources, Applied Energistics 2."}},"order":6},{"quests":[{"sizeX":72,"x":456,"y":108,"id":213,"sizeY":72},{"sizeX":48,"x":468,"y":300,"id":214,"sizeY":48},{"sizeX":72,"x":456,"y":204,"id":215,"sizeY":72},{"sizeX":24,"x":720,"y":288,"id":216,"sizeY":24},{"sizeX":24,"x":456,"y":372,"id":217,"sizeY":24},{"sizeX":24,"x":504,"y":372,"id":218,"sizeY":24},{"sizeX":24,"x":672,"y":132,"id":219,"sizeY":24},{"sizeX":24,"x":720,"y":132,"id":220,"sizeY":24},{"sizeX":24,"x":720,"y":84,"id":221,"sizeY":24},{"sizeX":24,"x":768,"y":132,"id":222,"sizeY":24},{"sizeX":24,"x":768,"y":84,"id":223,"sizeY":24},{"sizeX":24,"x":168,"y":264,"id":1006,"sizeY":24},{"sizeX":24,"x":132,"y":300,"id":1007,"sizeY":24},{"sizeX":24,"x":600,"y":72,"id":1409,"sizeY":24},{"sizeX":24,"x":528,"y":72,"id":1410,"sizeY":24},{"sizeX":72,"x":348,"y":108,"id":1413,"sizeY":72},{"sizeX":72,"x":252,"y":204,"id":1414,"sizeY":72},{"sizeX":72,"x":600,"y":204,"id":1491,"sizeY":72},{"sizeX":24,"x":564,"y":72,"id":1522,"sizeY":24},{"sizeX":48,"x":384,"y":300,"id":1533,"sizeY":48},{"sizeX":48,"x":552,"y":300,"id":1534,"sizeY":48},{"sizeX":48,"x":264,"y":300,"id":1538,"sizeY":48},{"sizeX":48,"x":360,"y":216,"id":1539,"sizeY":48},{"sizeX":24,"x":684,"y":288,"id":1665,"sizeY":24},{"sizeX":48,"x":612,"y":468,"id":1666,"sizeY":48},{"sizeX":48,"x":264,"y":468,"id":1667,"sizeY":48},{"sizeX":48,"x":84,"y":216,"id":1669,"sizeY":48},{"sizeX":48,"x":264,"y":648,"id":1670,"sizeY":48},{"sizeX":48,"x":84,"y":648,"id":1671,"sizeY":48},{"sizeX":24,"x":168,"y":624,"id":1672,"sizeY":24},{"sizeX":48,"x":84,"y":336,"id":1673,"sizeY":48},{"sizeX":24,"x":60,"y":300,"id":1674,"sizeY":24},{"sizeX":48,"x":0,"y":216,"id":1675,"sizeY":48},{"sizeX":48,"x":0,"y":120,"id":1676,"sizeY":48},{"sizeX":48,"x":84,"y":120,"id":1677,"sizeY":48},{"sizeX":48,"x":180,"y":0,"id":1678,"sizeY":48},{"sizeX":48,"x":84,"y":0,"id":1679,"sizeY":48},{"sizeX":48,"x":948,"y":216,"id":1691,"sizeY":48},{"sizeX":48,"x":1032,"y":216,"id":1692,"sizeY":48},{"sizeX":48,"x":1032,"y":300,"id":1693,"sizeY":48},{"sizeX":48,"x":1032,"y":384,"id":1694,"sizeY":48},{"sizeX":48,"x":1032,"y":468,"id":1695,"sizeY":48},{"sizeX":48,"x":768,"y":216,"id":1696,"sizeY":48},{"sizeX":48,"x":1032,"y":612,"id":1697,"sizeY":48},{"sizeX":48,"x":948,"y":468,"id":1698,"sizeY":48},{"sizeX":48,"x":948,"y":384,"id":1699,"sizeY":48},{"sizeX":48,"x":864,"y":468,"id":1700,"sizeY":48},{"sizeX":48,"x":684,"y":468,"id":1701,"sizeY":48},{"sizeX":48,"x":864,"y":384,"id":1702,"sizeY":48},{"sizeX":48,"x":864,"y":300,"id":1703,"sizeY":48},{"sizeX":48,"x":768,"y":384,"id":1704,"sizeY":48},{"sizeX":48,"x":264,"y":0,"id":1705,"sizeY":48},{"sizeX":48,"x":360,"y":0,"id":1706,"sizeY":48},{"sizeX":48,"x":468,"y":0,"id":1707,"sizeY":48},{"sizeX":24,"x":60,"y":396,"id":1712,"sizeY":24},{"sizeX":48,"x":192,"y":396,"id":1715,"sizeY":48},{"sizeX":48,"x":192,"y":300,"id":1716,"sizeY":48},{"sizeX":48,"x":192,"y":468,"id":1717,"sizeY":48},{"sizeX":24,"x":480,"y":72,"id":1718,"sizeY":24},{"sizeX":24,"x":216,"y":600,"id":1719,"sizeY":24},{"sizeX":48,"x":264,"y":120,"id":1890,"sizeY":48},{"sizeX":24,"x":372,"y":444,"id":1896,"sizeY":24},{"sizeX":24,"x":372,"y":396,"id":1897,"sizeY":24},{"sizeX":24,"x":144,"y":132,"id":2148,"sizeY":24},{"sizeX":24,"x":180,"y":132,"id":2149,"sizeY":24},{"sizeX":24,"x":180,"y":168,"id":2150,"sizeY":24}],"lineID":7,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 6 - 8192 EU (IV)","icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Tungsten level, Asteriod dims, assembly line"}},"order":7},{"quests":[{"sizeX":24,"x":108,"y":48,"id":201,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":202,"sizeY":24},{"sizeX":48,"x":312,"y":96,"id":1489,"sizeY":48},{"sizeX":48,"x":240,"y":96,"id":1490,"sizeY":48},{"sizeX":72,"x":300,"y":0,"id":1493,"sizeY":72},{"sizeX":24,"x":180,"y":48,"id":1680,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":1681,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1682,"sizeY":24},{"sizeX":48,"x":240,"y":168,"id":1683,"sizeY":48},{"sizeX":24,"x":180,"y":252,"id":1684,"sizeY":24},{"sizeX":48,"x":240,"y":240,"id":1685,"sizeY":48},{"sizeX":24,"x":180,"y":180,"id":1686,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1687,"sizeY":24},{"sizeX":24,"x":180,"y":216,"id":1688,"sizeY":24},{"sizeX":48,"x":168,"y":96,"id":1689,"sizeY":48},{"sizeX":24,"x":108,"y":180,"id":1708,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1709,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":1710,"sizeY":24},{"sizeX":24,"x":324,"y":288,"id":1711,"sizeY":24},{"sizeX":24,"x":396,"y":60,"id":1720,"sizeY":24},{"sizeX":24,"x":432,"y":60,"id":1721,"sizeY":24},{"sizeX":48,"x":384,"y":96,"id":1722,"sizeY":48},{"sizeX":24,"x":384,"y":24,"id":2024,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":2041,"sizeY":24},{"sizeX":24,"x":252,"y":60,"id":2071,"sizeY":24}],"lineID":8,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 7 - 32768 EU (LuV)","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""},"bg_image":"","bg_size":256,"desc":"If you have made it this far, you should walk with your head held high - you are at the start of the lategame. Endgame is still a long road ahead of you, but you are now an expert at GTNH and most of the mods it comes with. Congrats, and be proud of your Big Dick Energy."}},"order":8},{"quests":[{"sizeX":48,"x":108,"y":84,"id":1197,"sizeY":48},{"sizeX":48,"x":228,"y":168,"id":1198,"sizeY":48},{"sizeX":48,"x":108,"y":168,"id":1199,"sizeY":48},{"sizeX":24,"x":24,"y":84,"id":1200,"sizeY":24},{"sizeX":24,"x":24,"y":120,"id":1201,"sizeY":24},{"sizeX":48,"x":228,"y":96,"id":1202,"sizeY":48},{"sizeX":48,"x":228,"y":12,"id":1203,"sizeY":48},{"sizeX":72,"x":0,"y":0,"id":1212,"sizeY":72},{"sizeX":48,"x":108,"y":12,"id":1213,"sizeY":48}],"lineID":9,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Fusion","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Making power for the lategame tiers, LuV-UMV"}},"order":9},{"quests":[{"sizeX":24,"x":306,"y":36,"id":627,"sizeY":24},{"sizeX":24,"x":342,"y":0,"id":628,"sizeY":24},{"sizeX":24,"x":378,"y":36,"id":629,"sizeY":24},{"sizeX":24,"x":504,"y":108,"id":630,"sizeY":24},{"sizeX":24,"x":342,"y":36,"id":631,"sizeY":24},{"sizeX":24,"x":468,"y":108,"id":632,"sizeY":24},{"sizeX":24,"x":468,"y":72,"id":633,"sizeY":24},{"sizeX":24,"x":270,"y":36,"id":634,"sizeY":24},{"sizeX":24,"x":270,"y":72,"id":635,"sizeY":24},{"sizeX":24,"x":270,"y":144,"id":636,"sizeY":24},{"sizeX":24,"x":270,"y":108,"id":637,"sizeY":24},{"sizeX":24,"x":270,"y":180,"id":638,"sizeY":24},{"sizeX":24,"x":342,"y":180,"id":665,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":718,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":719,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":720,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":721,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":722,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":723,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":724,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":725,"sizeY":24},{"sizeX":24,"x":504,"y":72,"id":1009,"sizeY":24},{"sizeX":24,"x":426,"y":72,"id":1010,"sizeY":24},{"sizeX":24,"x":270,"y":228,"id":1086,"sizeY":24},{"sizeX":24,"x":306,"y":180,"id":1087,"sizeY":24},{"sizeX":24,"x":342,"y":228,"id":1088,"sizeY":24},{"sizeX":24,"x":306,"y":228,"id":1089,"sizeY":24},{"sizeX":24,"x":426,"y":132,"id":1178,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1270,"sizeY":24},{"sizeX":24,"x":342,"y":72,"id":1272,"sizeY":24},{"sizeX":24,"x":378,"y":108,"id":1275,"sizeY":24},{"sizeX":24,"x":378,"y":72,"id":1276,"sizeY":24},{"sizeX":24,"x":552,"y":36,"id":1277,"sizeY":24},{"sizeX":24,"x":342,"y":108,"id":1278,"sizeY":24},{"sizeX":24,"x":552,"y":72,"id":1280,"sizeY":24},{"sizeX":24,"x":552,"y":108,"id":1281,"sizeY":24},{"sizeX":24,"x":588,"y":36,"id":1282,"sizeY":24},{"sizeX":24,"x":624,"y":36,"id":1283,"sizeY":24},{"sizeX":24,"x":624,"y":0,"id":1284,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1288,"sizeY":24},{"sizeX":24,"x":354,"y":366,"id":1483,"sizeY":24},{"sizeX":24,"x":402,"y":318,"id":1484,"sizeY":24},{"sizeX":24,"x":450,"y":366,"id":1486,"sizeY":24},{"sizeX":24,"x":498,"y":318,"id":1487,"sizeY":24},{"sizeX":24,"x":546,"y":366,"id":1488,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1541,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1542,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1543,"sizeY":24},{"sizeX":24,"x":270,"y":0,"id":1560,"sizeY":24},{"sizeX":24,"x":126,"y":228,"id":1600,"sizeY":24},{"sizeX":24,"x":180,"y":228,"id":1601,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1602,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1603,"sizeY":24},{"sizeX":24,"x":108,"y":300,"id":1604,"sizeY":24},{"sizeX":24,"x":180,"y":300,"id":1605,"sizeY":24},{"sizeX":24,"x":144,"y":300,"id":1606,"sizeY":24},{"sizeX":24,"x":126,"y":336,"id":1607,"sizeY":24},{"sizeX":24,"x":0,"y":264,"id":1737,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1793,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1794,"sizeY":24},{"sizeX":24,"x":180,"y":264,"id":1795,"sizeY":24},{"sizeX":24,"x":72,"y":300,"id":1797,"sizeY":24},{"sizeX":24,"x":36,"y":336,"id":1798,"sizeY":24},{"sizeX":24,"x":36,"y":372,"id":1799,"sizeY":24},{"sizeX":24,"x":0,"y":372,"id":1800,"sizeY":24},{"sizeX":24,"x":0,"y":336,"id":1801,"sizeY":24},{"sizeX":24,"x":108,"y":372,"id":1802,"sizeY":24},{"sizeX":24,"x":180,"y":336,"id":1803,"sizeY":24},{"sizeX":24,"x":216,"y":336,"id":1804,"sizeY":24},{"sizeX":24,"x":144,"y":408,"id":1805,"sizeY":24},{"sizeX":24,"x":72,"y":372,"id":1806,"sizeY":24},{"sizeX":24,"x":252,"y":408,"id":1807,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1808,"sizeY":24},{"sizeX":24,"x":0,"y":408,"id":1809,"sizeY":24},{"sizeX":24,"x":378,"y":180,"id":1836,"sizeY":24},{"sizeX":24,"x":306,"y":144,"id":1854,"sizeY":24},{"sizeX":24,"x":306,"y":108,"id":1855,"sizeY":24},{"sizeX":24,"x":342,"y":144,"id":1857,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1862,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1920,"sizeY":24},{"sizeX":24,"x":36,"y":408,"id":1927,"sizeY":24},{"sizeX":24,"x":72,"y":408,"id":1928,"sizeY":24},{"sizeX":24,"x":108,"y":408,"id":1929,"sizeY":24},{"sizeX":24,"x":216,"y":408,"id":1930,"sizeY":24},{"sizeX":24,"x":36,"y":300,"id":1931,"sizeY":24},{"sizeX":24,"x":180,"y":408,"id":1932,"sizeY":24},{"sizeX":24,"x":0,"y":300,"id":1933,"sizeY":24},{"sizeX":24,"x":216,"y":372,"id":1949,"sizeY":24},{"sizeX":24,"x":252,"y":372,"id":1950,"sizeY":24},{"sizeX":24,"x":288,"y":408,"id":1951,"sizeY":24},{"sizeX":24,"x":72,"y":264,"id":2048,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":2264,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":2265,"sizeY":24},{"sizeX":24,"x":36,"y":264,"id":2266,"sizeY":24}],"lineID":10,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Fishing Farming Cooking","icon":{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Catch it, grow it, eat it!"}},"order":10},{"quests":[{"sizeX":24,"x":204,"y":192,"id":139,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":645,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":647,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":648,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":649,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":650,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":651,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":652,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":653,"sizeY":24},{"sizeX":24,"x":24,"y":408,"id":654,"sizeY":24},{"sizeX":24,"x":0,"y":468,"id":655,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":683,"sizeY":24},{"sizeX":24,"x":204,"y":0,"id":684,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":685,"sizeY":24},{"sizeX":24,"x":180,"y":48,"id":686,"sizeY":24},{"sizeX":24,"x":204,"y":96,"id":687,"sizeY":24},{"sizeX":24,"x":252,"y":96,"id":688,"sizeY":24},{"sizeX":24,"x":300,"y":96,"id":689,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":690,"sizeY":24},{"sizeX":24,"x":108,"y":96,"id":691,"sizeY":24},{"sizeX":24,"x":120,"y":192,"id":692,"sizeY":24},{"sizeX":24,"x":120,"y":252,"id":775,"sizeY":24},{"sizeX":24,"x":180,"y":312,"id":776,"sizeY":24},{"sizeX":24,"x":60,"y":312,"id":777,"sizeY":24},{"sizeX":24,"x":120,"y":312,"id":779,"sizeY":24},{"sizeX":24,"x":228,"y":312,"id":796,"sizeY":24},{"sizeX":24,"x":228,"y":348,"id":797,"sizeY":24},{"sizeX":24,"x":216,"y":408,"id":799,"sizeY":24},{"sizeX":24,"x":96,"y":372,"id":800,"sizeY":24},{"sizeX":24,"x":144,"y":372,"id":801,"sizeY":24},{"sizeX":24,"x":120,"y":408,"id":802,"sizeY":24},{"sizeX":24,"x":96,"y":468,"id":803,"sizeY":24},{"sizeX":24,"x":144,"y":468,"id":804,"sizeY":24},{"sizeX":24,"x":204,"y":144,"id":991,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":997,"sizeY":24},{"sizeX":24,"x":180,"y":348,"id":1419,"sizeY":24},{"sizeX":24,"x":48,"y":216,"id":1442,"sizeY":24},{"sizeX":24,"x":48,"y":252,"id":1443,"sizeY":24},{"sizeX":24,"x":84,"y":252,"id":1444,"sizeY":24},{"sizeX":24,"x":252,"y":48,"id":1779,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":1781,"sizeY":24},{"sizeX":24,"x":324,"y":180,"id":1782,"sizeY":24},{"sizeX":24,"x":324,"y":216,"id":1783,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1784,"sizeY":24},{"sizeX":24,"x":324,"y":288,"id":1785,"sizeY":24},{"sizeX":24,"x":324,"y":324,"id":1786,"sizeY":24},{"sizeX":24,"x":348,"y":96,"id":1839,"sizeY":24},{"sizeX":24,"x":156,"y":252,"id":1848,"sizeY":24},{"sizeX":24,"x":396,"y":96,"id":2057,"sizeY":24},{"sizeX":24,"x":396,"y":144,"id":2058,"sizeY":24},{"sizeX":24,"x":372,"y":288,"id":2112,"sizeY":24},{"sizeX":24,"x":420,"y":216,"id":2113,"sizeY":24},{"sizeX":24,"x":420,"y":180,"id":2114,"sizeY":24},{"sizeX":24,"x":456,"y":324,"id":2115,"sizeY":24},{"sizeX":24,"x":420,"y":252,"id":2116,"sizeY":24},{"sizeX":24,"x":420,"y":288,"id":2117,"sizeY":24},{"sizeX":24,"x":420,"y":360,"id":2118,"sizeY":24},{"sizeX":24,"x":420,"y":324,"id":2139,"sizeY":24}],"lineID":11,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Armors and Jetpacks","icon":{"id":"GraviSuite:graviChestPlate","Count":1,"tag":{"charge":30000000},"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Guiding you through the armor and jetpacks and Adventure Backpacks."}},"order":11},{"quests":[{"sizeX":24,"x":204,"y":0,"id":45,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":74,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":75,"sizeY":24},{"sizeX":48,"x":84,"y":60,"id":76,"sizeY":48},{"sizeX":48,"x":84,"y":144,"id":77,"sizeY":48},{"sizeX":48,"x":84,"y":240,"id":78,"sizeY":48},{"sizeX":48,"x":84,"y":312,"id":79,"sizeY":48},{"sizeX":48,"x":252,"y":144,"id":80,"sizeY":48},{"sizeX":48,"x":144,"y":312,"id":81,"sizeY":48},{"sizeX":24,"x":264,"y":108,"id":82,"sizeY":24},{"sizeX":24,"x":36,"y":300,"id":83,"sizeY":24},{"sizeX":24,"x":324,"y":108,"id":85,"sizeY":24},{"sizeX":48,"x":84,"y":384,"id":86,"sizeY":48},{"sizeX":24,"x":204,"y":60,"id":87,"sizeY":24},{"sizeX":48,"x":144,"y":384,"id":475,"sizeY":48},{"sizeX":48,"x":144,"y":456,"id":476,"sizeY":48},{"sizeX":48,"x":84,"y":456,"id":477,"sizeY":48},{"sizeX":24,"x":204,"y":156,"id":556,"sizeY":24},{"sizeX":24,"x":396,"y":60,"id":559,"sizeY":24},{"sizeX":24,"x":396,"y":0,"id":560,"sizeY":24},{"sizeX":24,"x":444,"y":0,"id":561,"sizeY":24},{"sizeX":24,"x":444,"y":60,"id":562,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":695,"sizeY":24},{"sizeX":24,"x":36,"y":60,"id":696,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":697,"sizeY":24},{"sizeX":24,"x":204,"y":108,"id":698,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":699,"sizeY":24},{"sizeX":24,"x":36,"y":204,"id":755,"sizeY":24},{"sizeX":24,"x":36,"y":252,"id":756,"sizeY":24},{"sizeX":24,"x":264,"y":204,"id":761,"sizeY":24},{"sizeX":24,"x":324,"y":156,"id":762,"sizeY":24},{"sizeX":24,"x":324,"y":204,"id":763,"sizeY":24},{"sizeX":24,"x":204,"y":204,"id":764,"sizeY":24},{"sizeX":24,"x":360,"y":108,"id":765,"sizeY":24},{"sizeX":24,"x":468,"y":192,"id":766,"sizeY":24},{"sizeX":24,"x":492,"y":0,"id":767,"sizeY":24},{"sizeX":24,"x":420,"y":156,"id":768,"sizeY":24},{"sizeX":24,"x":156,"y":252,"id":781,"sizeY":24},{"sizeX":24,"x":588,"y":60,"id":783,"sizeY":24},{"sizeX":24,"x":540,"y":0,"id":784,"sizeY":24},{"sizeX":24,"x":492,"y":60,"id":786,"sizeY":24},{"sizeX":24,"x":492,"y":108,"id":787,"sizeY":24},{"sizeX":24,"x":468,"y":156,"id":788,"sizeY":24},{"sizeX":24,"x":360,"y":60,"id":870,"sizeY":24},{"sizeX":24,"x":444,"y":108,"id":876,"sizeY":24},{"sizeX":48,"x":240,"y":312,"id":940,"sizeY":48},{"sizeX":48,"x":0,"y":144,"id":941,"sizeY":48},{"sizeX":24,"x":156,"y":60,"id":954,"sizeY":24},{"sizeX":24,"x":156,"y":204,"id":1179,"sizeY":24},{"sizeX":48,"x":468,"y":432,"id":1412,"sizeY":48},{"sizeX":48,"x":252,"y":0,"id":1503,"sizeY":48},{"sizeX":24,"x":396,"y":108,"id":1545,"sizeY":24},{"sizeX":24,"x":420,"y":192,"id":1652,"sizeY":24},{"sizeX":24,"x":540,"y":60,"id":1654,"sizeY":24},{"sizeX":24,"x":540,"y":108,"id":1740,"sizeY":24},{"sizeX":24,"x":360,"y":156,"id":1742,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1743,"sizeY":24},{"sizeX":24,"x":552,"y":444,"id":1787,"sizeY":24},{"sizeX":48,"x":84,"y":528,"id":1817,"sizeY":48},{"sizeX":24,"x":360,"y":252,"id":1818,"sizeY":24},{"sizeX":24,"x":324,"y":396,"id":1820,"sizeY":24},{"sizeX":24,"x":516,"y":192,"id":1822,"sizeY":24},{"sizeX":24,"x":372,"y":396,"id":1825,"sizeY":24},{"sizeX":24,"x":420,"y":396,"id":1826,"sizeY":24},{"sizeX":24,"x":420,"y":432,"id":1827,"sizeY":24},{"sizeX":24,"x":372,"y":432,"id":1828,"sizeY":24},{"sizeX":24,"x":324,"y":432,"id":1829,"sizeY":24},{"sizeX":24,"x":324,"y":468,"id":1830,"sizeY":24},{"sizeX":24,"x":264,"y":60,"id":1832,"sizeY":24},{"sizeX":48,"x":144,"y":528,"id":1833,"sizeY":48},{"sizeX":24,"x":156,"y":156,"id":1853,"sizeY":24},{"sizeX":24,"x":588,"y":108,"id":1893,"sizeY":24},{"sizeX":24,"x":588,"y":156,"id":1894,"sizeY":24},{"sizeX":48,"x":192,"y":240,"id":1904,"sizeY":48},{"sizeX":24,"x":480,"y":396,"id":1905,"sizeY":24},{"sizeX":24,"x":552,"y":396,"id":2027,"sizeY":24},{"sizeX":24,"x":216,"y":468,"id":2044,"sizeY":24},{"sizeX":24,"x":264,"y":468,"id":2045,"sizeY":24},{"sizeX":24,"x":324,"y":324,"id":2144,"sizeY":24}],"lineID":12,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Multiblock Goals","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This set is a global tracker for multiblock structure goals. As you can build several parts of many multiblocks way earlier than the respective tier. Check back often."}},"order":12},{"quests":[{"sizeX":24,"x":36,"y":216,"id":1464,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":1935,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1936,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1937,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":1938,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":1939,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1940,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1941,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1942,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1943,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":1944,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1945,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1946,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1947,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1948,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1952,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":1953,"sizeY":24},{"sizeX":24,"x":216,"y":72,"id":1955,"sizeY":24},{"sizeX":24,"x":216,"y":108,"id":1956,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":1957,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1958,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":1959,"sizeY":24},{"sizeX":24,"x":216,"y":180,"id":1960,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1961,"sizeY":24},{"sizeX":24,"x":288,"y":180,"id":1962,"sizeY":24},{"sizeX":24,"x":216,"y":216,"id":1963,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1964,"sizeY":24},{"sizeX":24,"x":288,"y":144,"id":1965,"sizeY":24},{"sizeX":24,"x":288,"y":108,"id":1966,"sizeY":24},{"sizeX":24,"x":252,"y":72,"id":1967,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":1968,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1969,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1970,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1971,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1972,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":1973,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1974,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":1975,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1976,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1977,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1978,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1979,"sizeY":24},{"sizeX":24,"x":0,"y":252,"id":1980,"sizeY":24},{"sizeX":24,"x":36,"y":252,"id":1981,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1982,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":1983,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1984,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1985,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":1986,"sizeY":24},{"sizeX":24,"x":72,"y":252,"id":2070,"sizeY":24},{"sizeX":24,"x":180,"y":108,"id":2105,"sizeY":24},{"sizeX":24,"x":0,"y":288,"id":2138,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":2160,"sizeY":24}],"lineID":13,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Building Better Bases","icon":{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Tired of torches everywhere making your base look like a loser built it? Make your base look like a winner with these quests. (under construction)"}},"order":13},{"quests":[{"sizeX":24,"x":48,"y":96,"id":106,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":107,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":108,"sizeY":24},{"sizeX":24,"x":216,"y":48,"id":109,"sizeY":24},{"sizeX":24,"x":216,"y":96,"id":110,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":111,"sizeY":24},{"sizeX":24,"x":156,"y":48,"id":112,"sizeY":24},{"sizeX":24,"x":156,"y":204,"id":1208,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":1209,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1210,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":1211,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1550,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":1551,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1552,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1553,"sizeY":24}],"lineID":14,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Steve Carts","icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Basic auto farming and mining. Protect them from lightning strikes!"}},"order":14},{"quests":[{"sizeX":24,"x":0,"y":0,"id":1623,"sizeY":24},{"sizeX":24,"x":0,"y":42,"id":1624,"sizeY":24},{"sizeX":24,"x":0,"y":78,"id":1625,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":1626,"sizeY":24},{"sizeX":24,"x":48,"y":150,"id":1627,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":1628,"sizeY":24},{"sizeX":24,"x":48,"y":198,"id":1629,"sizeY":24},{"sizeX":24,"x":96,"y":120,"id":1630,"sizeY":24},{"sizeX":24,"x":150,"y":120,"id":1631,"sizeY":24},{"sizeX":24,"x":150,"y":78,"id":1632,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":1633,"sizeY":24},{"sizeX":24,"x":150,"y":162,"id":1634,"sizeY":24},{"sizeX":24,"x":204,"y":162,"id":1635,"sizeY":24},{"sizeX":24,"x":204,"y":78,"id":1636,"sizeY":24},{"sizeX":24,"x":204,"y":30,"id":1637,"sizeY":24},{"sizeX":24,"x":252,"y":30,"id":1638,"sizeY":24},{"sizeX":24,"x":252,"y":78,"id":1639,"sizeY":24},{"sizeX":24,"x":300,"y":78,"id":1640,"sizeY":24},{"sizeX":24,"x":150,"y":30,"id":1641,"sizeY":24},{"sizeX":24,"x":300,"y":30,"id":1642,"sizeY":24}],"lineID":15,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Project Red","icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Low tier storage and automation. You'll need a forming press to get started."}},"order":15},{"quests":[{"sizeX":24,"x":36,"y":0,"id":872,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":873,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":880,"sizeY":24},{"sizeX":24,"x":348,"y":0,"id":881,"sizeY":24},{"sizeX":24,"x":444,"y":0,"id":882,"sizeY":24},{"sizeX":24,"x":396,"y":0,"id":883,"sizeY":24},{"sizeX":24,"x":204,"y":0,"id":884,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":885,"sizeY":24},{"sizeX":24,"x":486,"y":0,"id":886,"sizeY":24},{"sizeX":24,"x":300,"y":0,"id":888,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":949,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":950,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":955,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":956,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":957,"sizeY":24},{"sizeX":24,"x":204,"y":144,"id":958,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":959,"sizeY":24},{"sizeX":24,"x":300,"y":144,"id":960,"sizeY":24},{"sizeX":24,"x":348,"y":144,"id":961,"sizeY":24},{"sizeX":24,"x":444,"y":144,"id":963,"sizeY":24},{"sizeX":24,"x":444,"y":180,"id":964,"sizeY":24},{"sizeX":24,"x":480,"y":108,"id":965,"sizeY":24},{"sizeX":24,"x":480,"y":144,"id":966,"sizeY":24},{"sizeX":24,"x":480,"y":180,"id":967,"sizeY":24},{"sizeX":24,"x":516,"y":180,"id":968,"sizeY":24},{"sizeX":24,"x":480,"y":216,"id":969,"sizeY":24},{"sizeX":24,"x":516,"y":216,"id":970,"sizeY":24},{"sizeX":24,"x":516,"y":252,"id":971,"sizeY":24},{"sizeX":24,"x":588,"y":144,"id":972,"sizeY":24},{"sizeX":24,"x":588,"y":108,"id":973,"sizeY":24},{"sizeX":24,"x":732,"y":144,"id":974,"sizeY":24},{"sizeX":24,"x":624,"y":144,"id":975,"sizeY":24},{"sizeX":24,"x":768,"y":144,"id":976,"sizeY":24},{"sizeX":24,"x":624,"y":108,"id":977,"sizeY":24},{"sizeX":24,"x":660,"y":108,"id":978,"sizeY":24},{"sizeX":24,"x":696,"y":108,"id":979,"sizeY":24},{"sizeX":24,"x":732,"y":108,"id":980,"sizeY":24},{"sizeX":24,"x":768,"y":108,"id":981,"sizeY":24},{"sizeX":24,"x":804,"y":144,"id":982,"sizeY":24},{"sizeX":24,"x":108,"y":276,"id":983,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":984,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1022,"sizeY":24},{"sizeX":24,"x":156,"y":180,"id":1023,"sizeY":24},{"sizeX":24,"x":204,"y":180,"id":1024,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1025,"sizeY":24},{"sizeX":24,"x":300,"y":180,"id":1026,"sizeY":24},{"sizeX":24,"x":348,"y":180,"id":1027,"sizeY":24},{"sizeX":24,"x":396,"y":180,"id":1028,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1029,"sizeY":24},{"sizeX":24,"x":156,"y":216,"id":1030,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1031,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1032,"sizeY":24},{"sizeX":24,"x":300,"y":216,"id":1033,"sizeY":24},{"sizeX":24,"x":348,"y":216,"id":1034,"sizeY":24},{"sizeX":24,"x":444,"y":216,"id":1036,"sizeY":24},{"sizeX":24,"x":516,"y":288,"id":1037,"sizeY":24},{"sizeX":24,"x":480,"y":252,"id":1038,"sizeY":24},{"sizeX":24,"x":480,"y":288,"id":1039,"sizeY":24},{"sizeX":24,"x":480,"y":324,"id":1040,"sizeY":24},{"sizeX":24,"x":480,"y":360,"id":1041,"sizeY":24},{"sizeX":24,"x":156,"y":276,"id":1042,"sizeY":24},{"sizeX":24,"x":804,"y":108,"id":1043,"sizeY":24},{"sizeX":24,"x":444,"y":252,"id":1044,"sizeY":24},{"sizeX":24,"x":444,"y":288,"id":1045,"sizeY":24},{"sizeX":24,"x":588,"y":0,"id":1046,"sizeY":24},{"sizeX":24,"x":0,"y":348,"id":1047,"sizeY":24},{"sizeX":24,"x":36,"y":384,"id":1048,"sizeY":24},{"sizeX":24,"x":0,"y":420,"id":1049,"sizeY":24},{"sizeX":24,"x":0,"y":276,"id":1050,"sizeY":24},{"sizeX":24,"x":36,"y":276,"id":1051,"sizeY":24},{"sizeX":24,"x":36,"y":312,"id":1052,"sizeY":24},{"sizeX":24,"x":36,"y":420,"id":1053,"sizeY":24},{"sizeX":24,"x":72,"y":420,"id":1054,"sizeY":24},{"sizeX":24,"x":36,"y":348,"id":1056,"sizeY":24},{"sizeX":24,"x":72,"y":348,"id":1057,"sizeY":24},{"sizeX":24,"x":108,"y":348,"id":1058,"sizeY":24},{"sizeX":24,"x":144,"y":348,"id":1059,"sizeY":24},{"sizeX":24,"x":180,"y":348,"id":1060,"sizeY":24},{"sizeX":24,"x":216,"y":348,"id":1061,"sizeY":24},{"sizeX":24,"x":252,"y":348,"id":1062,"sizeY":24},{"sizeX":24,"x":0,"y":384,"id":1063,"sizeY":24},{"sizeX":24,"x":288,"y":348,"id":1064,"sizeY":24},{"sizeX":24,"x":324,"y":348,"id":1065,"sizeY":24},{"sizeX":24,"x":360,"y":348,"id":1066,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1069,"sizeY":24},{"sizeX":24,"x":156,"y":36,"id":1073,"sizeY":24},{"sizeX":24,"x":204,"y":36,"id":1074,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":1075,"sizeY":24},{"sizeX":24,"x":300,"y":36,"id":1076,"sizeY":24},{"sizeX":24,"x":348,"y":36,"id":1077,"sizeY":24},{"sizeX":24,"x":396,"y":36,"id":1078,"sizeY":24},{"sizeX":24,"x":444,"y":36,"id":1079,"sizeY":24},{"sizeX":24,"x":486,"y":36,"id":1080,"sizeY":24},{"sizeX":24,"x":552,"y":180,"id":1161,"sizeY":24},{"sizeX":24,"x":552,"y":216,"id":1162,"sizeY":24},{"sizeX":24,"x":60,"y":144,"id":1163,"sizeY":24},{"sizeX":24,"x":624,"y":36,"id":1165,"sizeY":24},{"sizeX":24,"x":288,"y":420,"id":1169,"sizeY":24},{"sizeX":24,"x":324,"y":420,"id":1170,"sizeY":24},{"sizeX":24,"x":660,"y":0,"id":1171,"sizeY":24},{"sizeX":24,"x":696,"y":0,"id":1173,"sizeY":24},{"sizeX":24,"x":732,"y":0,"id":1174,"sizeY":24},{"sizeX":24,"x":768,"y":0,"id":1175,"sizeY":24},{"sizeX":24,"x":804,"y":0,"id":1176,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1192,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1193,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1194,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1195,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1196,"sizeY":24},{"sizeX":24,"x":660,"y":144,"id":1206,"sizeY":24},{"sizeX":24,"x":696,"y":144,"id":1207,"sizeY":24},{"sizeX":24,"x":360,"y":420,"id":1287,"sizeY":24},{"sizeX":24,"x":840,"y":360,"id":1297,"sizeY":24},{"sizeX":24,"x":840,"y":396,"id":1307,"sizeY":24},{"sizeX":24,"x":216,"y":420,"id":1366,"sizeY":24},{"sizeX":24,"x":204,"y":276,"id":1425,"sizeY":24},{"sizeX":24,"x":252,"y":276,"id":1438,"sizeY":24},{"sizeX":24,"x":300,"y":276,"id":1455,"sizeY":24},{"sizeX":24,"x":696,"y":36,"id":1479,"sizeY":24},{"sizeX":24,"x":588,"y":72,"id":1492,"sizeY":24},{"sizeX":24,"x":588,"y":36,"id":1523,"sizeY":24},{"sizeX":24,"x":552,"y":288,"id":1608,"sizeY":24},{"sizeX":24,"x":552,"y":324,"id":1609,"sizeY":24},{"sizeX":24,"x":60,"y":180,"id":1610,"sizeY":24},{"sizeX":24,"x":60,"y":216,"id":1611,"sizeY":24},{"sizeX":24,"x":552,"y":360,"id":1616,"sizeY":24},{"sizeX":24,"x":552,"y":252,"id":1618,"sizeY":24},{"sizeX":24,"x":660,"y":36,"id":1619,"sizeY":24},{"sizeX":24,"x":252,"y":420,"id":1644,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1780,"sizeY":24},{"sizeX":24,"x":552,"y":0,"id":1816,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1859,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1860,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":1861,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":1881,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1882,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1883,"sizeY":24},{"sizeX":24,"x":624,"y":72,"id":1884,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1885,"sizeY":24},{"sizeX":24,"x":552,"y":36,"id":1886,"sizeY":24},{"sizeX":24,"x":660,"y":72,"id":1889,"sizeY":24},{"sizeX":24,"x":804,"y":72,"id":1892,"sizeY":24},{"sizeX":24,"x":624,"y":0,"id":1895,"sizeY":24},{"sizeX":24,"x":156,"y":72,"id":1934,"sizeY":24},{"sizeX":24,"x":72,"y":312,"id":2080,"sizeY":24},{"sizeX":24,"x":732,"y":36,"id":2151,"sizeY":24},{"sizeX":24,"x":768,"y":36,"id":2152,"sizeY":24}],"lineID":16,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Coins, Coins, Coins","icon":{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"These quests will guide you to use your Coins wisely and buy some useful or fancy stuff.\nZoom out using mousewheel to see all the amazing things for sale!"}},"order":16},{"quests":[{"sizeX":24,"x":240,"y":0,"id":1416,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1417,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":1418,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1419,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1420,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":1421,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":1422,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":1423,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":2025,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":2028,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":2029,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":2030,"sizeY":24},{"sizeX":24,"x":384,"y":96,"id":2031,"sizeY":24},{"sizeX":24,"x":384,"y":48,"id":2032,"sizeY":24},{"sizeX":24,"x":384,"y":0,"id":2033,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":2034,"sizeY":24},{"sizeX":24,"x":264,"y":144,"id":2035,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":2036,"sizeY":24},{"sizeX":24,"x":120,"y":144,"id":2037,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2038,"sizeY":24},{"sizeX":24,"x":408,"y":144,"id":2039,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":2040,"sizeY":24},{"sizeX":24,"x":432,"y":72,"id":2049,"sizeY":24},{"sizeX":24,"x":432,"y":24,"id":2053,"sizeY":24},{"sizeX":24,"x":192,"y":192,"id":2054,"sizeY":24}],"lineID":17,"properties":{"betterquesting":{"visibility":"NORMAL","name":"GT++ ","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""},"bg_image":"","bg_size":256,"desc":"GT++ adds new functionality to GT, including high speed multiblocks - Under Construction"}},"order":17},{"quests":[{"sizeX":24,"x":48,"y":48,"id":576,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":577,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":578,"sizeY":24},{"sizeX":24,"x":48,"y":336,"id":580,"sizeY":24},{"sizeX":24,"x":168,"y":264,"id":581,"sizeY":24},{"sizeX":24,"x":204,"y":168,"id":582,"sizeY":24},{"sizeX":24,"x":204,"y":264,"id":583,"sizeY":24},{"sizeX":24,"x":240,"y":264,"id":584,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":585,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":586,"sizeY":24},{"sizeX":24,"x":204,"y":300,"id":588,"sizeY":24},{"sizeX":24,"x":168,"y":120,"id":589,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":590,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":591,"sizeY":24},{"sizeX":24,"x":168,"y":204,"id":592,"sizeY":24},{"sizeX":24,"x":240,"y":228,"id":593,"sizeY":24},{"sizeX":24,"x":276,"y":228,"id":594,"sizeY":24},{"sizeX":24,"x":312,"y":228,"id":595,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":994,"sizeY":24},{"sizeX":24,"x":336,"y":12,"id":1115,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":1214,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1215,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1216,"sizeY":24},{"sizeX":24,"x":132,"y":264,"id":1217,"sizeY":24},{"sizeX":24,"x":132,"y":228,"id":1218,"sizeY":24},{"sizeX":24,"x":132,"y":192,"id":1219,"sizeY":24},{"sizeX":24,"x":96,"y":228,"id":1220,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":2051,"sizeY":24},{"sizeX":24,"x":132,"y":144,"id":2052,"sizeY":24},{"sizeX":24,"x":96,"y":180,"id":2055,"sizeY":24},{"sizeX":24,"x":336,"y":60,"id":2083,"sizeY":24},{"sizeX":24,"x":372,"y":108,"id":2084,"sizeY":24},{"sizeX":24,"x":372,"y":12,"id":2085,"sizeY":24},{"sizeX":24,"x":300,"y":60,"id":2107,"sizeY":24},{"sizeX":24,"x":372,"y":156,"id":2121,"sizeY":24},{"sizeX":24,"x":372,"y":60,"id":2122,"sizeY":24},{"sizeX":24,"x":426,"y":12,"id":2124,"sizeY":24},{"sizeX":24,"x":426,"y":156,"id":2125,"sizeY":24},{"sizeX":24,"x":474,"y":156,"id":2126,"sizeY":24},{"sizeX":24,"x":426,"y":108,"id":2127,"sizeY":24},{"sizeX":24,"x":474,"y":12,"id":2128,"sizeY":24},{"sizeX":24,"x":522,"y":12,"id":2129,"sizeY":24},{"sizeX":24,"x":570,"y":12,"id":2130,"sizeY":24},{"sizeX":24,"x":522,"y":60,"id":2131,"sizeY":24},{"sizeX":24,"x":570,"y":60,"id":2132,"sizeY":24},{"sizeX":24,"x":522,"y":156,"id":2133,"sizeY":24},{"sizeX":24,"x":570,"y":156,"id":2134,"sizeY":24},{"sizeX":24,"x":570,"y":204,"id":2135,"sizeY":24},{"sizeX":24,"x":474,"y":108,"id":2256,"sizeY":24},{"sizeX":24,"x":522,"y":108,"id":2257,"sizeY":24},{"sizeX":24,"x":372,"y":204,"id":2263,"sizeY":24}],"lineID":18,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Forestry and Multi-farms","icon":{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Automated Farms, tree breeding, and more....."}},"order":18},{"quests":[{"sizeX":24,"x":48,"y":0,"id":1116,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1117,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":1118,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":1119,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1120,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":1121,"sizeY":24},{"sizeX":24,"x":192,"y":48,"id":1122,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":2153,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":2154,"sizeY":24},{"sizeX":24,"x":288,"y":48,"id":2155,"sizeY":24},{"sizeX":24,"x":240,"y":0,"id":2156,"sizeY":24},{"sizeX":24,"x":240,"y":48,"id":2157,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":2158,"sizeY":24},{"sizeX":24,"x":24,"y":24,"id":2159,"sizeY":24},{"sizeX":24,"x":288,"y":144,"id":2162,"sizeY":24},{"sizeX":24,"x":240,"y":144,"id":2163,"sizeY":24},{"sizeX":24,"x":192,"y":144,"id":2164,"sizeY":24},{"sizeX":24,"x":240,"y":240,"id":2165,"sizeY":24},{"sizeX":24,"x":288,"y":240,"id":2166,"sizeY":24},{"sizeX":24,"x":336,"y":240,"id":2167,"sizeY":24},{"sizeX":24,"x":288,"y":192,"id":2168,"sizeY":24},{"sizeX":24,"x":240,"y":192,"id":2169,"sizeY":24},{"sizeX":24,"x":192,"y":192,"id":2170,"sizeY":24},{"sizeX":24,"x":336,"y":48,"id":2171,"sizeY":24},{"sizeX":24,"x":336,"y":288,"id":2172,"sizeY":24},{"sizeX":24,"x":288,"y":288,"id":2173,"sizeY":24},{"sizeX":24,"x":240,"y":336,"id":2174,"sizeY":24},{"sizeX":24,"x":240,"y":288,"id":2175,"sizeY":24},{"sizeX":24,"x":192,"y":336,"id":2176,"sizeY":24},{"sizeX":24,"x":144,"y":336,"id":2177,"sizeY":24},{"sizeX":24,"x":144,"y":384,"id":2178,"sizeY":24},{"sizeX":24,"x":192,"y":288,"id":2179,"sizeY":24},{"sizeX":24,"x":144,"y":288,"id":2180,"sizeY":24},{"sizeX":24,"x":96,"y":288,"id":2181,"sizeY":24},{"sizeX":24,"x":240,"y":432,"id":2182,"sizeY":24},{"sizeX":24,"x":192,"y":432,"id":2183,"sizeY":24},{"sizeX":24,"x":144,"y":432,"id":2184,"sizeY":24},{"sizeX":24,"x":144,"y":240,"id":2185,"sizeY":24},{"sizeX":24,"x":336,"y":432,"id":2186,"sizeY":24},{"sizeX":24,"x":288,"y":432,"id":2187,"sizeY":24},{"sizeX":24,"x":288,"y":480,"id":2188,"sizeY":24},{"sizeX":24,"x":240,"y":480,"id":2189,"sizeY":24},{"sizeX":24,"x":240,"y":384,"id":2190,"sizeY":24},{"sizeX":24,"x":192,"y":384,"id":2191,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":2192,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":2193,"sizeY":24},{"sizeX":24,"x":336,"y":144,"id":2194,"sizeY":24},{"sizeX":24,"x":384,"y":96,"id":2195,"sizeY":24},{"sizeX":24,"x":336,"y":192,"id":2196,"sizeY":24},{"sizeX":24,"x":384,"y":192,"id":2197,"sizeY":24},{"sizeX":24,"x":384,"y":144,"id":2198,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":2199,"sizeY":24},{"sizeX":24,"x":384,"y":288,"id":2200,"sizeY":24},{"sizeX":24,"x":288,"y":384,"id":2201,"sizeY":24},{"sizeX":24,"x":336,"y":384,"id":2202,"sizeY":24},{"sizeX":24,"x":384,"y":384,"id":2203,"sizeY":24},{"sizeX":24,"x":336,"y":528,"id":2204,"sizeY":24},{"sizeX":24,"x":384,"y":528,"id":2205,"sizeY":24},{"sizeX":24,"x":288,"y":528,"id":2206,"sizeY":24},{"sizeX":24,"x":240,"y":576,"id":2207,"sizeY":24},{"sizeX":24,"x":240,"y":528,"id":2208,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":2209,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":2211,"sizeY":24},{"sizeX":24,"x":600,"y":144,"id":2212,"sizeY":24},{"sizeX":24,"x":504,"y":0,"id":2213,"sizeY":24},{"sizeX":24,"x":600,"y":48,"id":2214,"sizeY":24},{"sizeX":24,"x":552,"y":48,"id":2215,"sizeY":24},{"sizeX":24,"x":552,"y":0,"id":2216,"sizeY":24},{"sizeX":24,"x":552,"y":144,"id":2217,"sizeY":24},{"sizeX":24,"x":552,"y":96,"id":2218,"sizeY":24},{"sizeX":24,"x":648,"y":144,"id":2219,"sizeY":24},{"sizeX":24,"x":744,"y":288,"id":2220,"sizeY":24},{"sizeX":24,"x":696,"y":336,"id":2221,"sizeY":24},{"sizeX":24,"x":696,"y":240,"id":2222,"sizeY":24},{"sizeX":24,"x":696,"y":192,"id":2223,"sizeY":24},{"sizeX":24,"x":744,"y":192,"id":2224,"sizeY":24},{"sizeX":24,"x":744,"y":240,"id":2225,"sizeY":24},{"sizeX":24,"x":744,"y":336,"id":2226,"sizeY":24},{"sizeX":24,"x":696,"y":288,"id":2227,"sizeY":24},{"sizeX":24,"x":696,"y":48,"id":2228,"sizeY":24},{"sizeX":24,"x":744,"y":48,"id":2229,"sizeY":24},{"sizeX":24,"x":792,"y":48,"id":2230,"sizeY":24},{"sizeX":24,"x":696,"y":96,"id":2231,"sizeY":24},{"sizeX":24,"x":648,"y":192,"id":2232,"sizeY":24},{"sizeX":24,"x":696,"y":0,"id":2233,"sizeY":24},{"sizeX":24,"x":744,"y":0,"id":2234,"sizeY":24},{"sizeX":24,"x":792,"y":0,"id":2235,"sizeY":24},{"sizeX":24,"x":744,"y":384,"id":2236,"sizeY":24},{"sizeX":24,"x":696,"y":384,"id":2237,"sizeY":24},{"sizeX":24,"x":792,"y":336,"id":2238,"sizeY":24},{"sizeX":24,"x":504,"y":48,"id":2239,"sizeY":24},{"sizeX":24,"x":504,"y":96,"id":2240,"sizeY":24},{"sizeX":24,"x":840,"y":336,"id":2241,"sizeY":24},{"sizeX":24,"x":888,"y":336,"id":2242,"sizeY":24},{"sizeX":24,"x":504,"y":192,"id":2243,"sizeY":24},{"sizeX":24,"x":696,"y":144,"id":2244,"sizeY":24},{"sizeX":24,"x":744,"y":144,"id":2245,"sizeY":24},{"sizeX":24,"x":792,"y":144,"id":2246,"sizeY":24},{"sizeX":24,"x":840,"y":144,"id":2247,"sizeY":24},{"sizeX":24,"x":840,"y":96,"id":2248,"sizeY":24},{"sizeX":24,"x":840,"y":48,"id":2249,"sizeY":24},{"sizeX":24,"x":840,"y":0,"id":2250,"sizeY":24},{"sizeX":24,"x":48,"y":336,"id":2251,"sizeY":24},{"sizeX":24,"x":96,"y":336,"id":2252,"sizeY":24},{"sizeX":24,"x":384,"y":240,"id":2254,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":2258,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":2269,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":2270,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":2271,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2272,"sizeY":24},{"sizeX":24,"x":48,"y":192,"id":2273,"sizeY":24},{"sizeX":24,"x":504,"y":240,"id":2274,"sizeY":24},{"sizeX":24,"x":552,"y":240,"id":2275,"sizeY":24},{"sizeX":24,"x":600,"y":240,"id":2276,"sizeY":24},{"sizeX":24,"x":696,"y":432,"id":2277,"sizeY":24},{"sizeX":24,"x":648,"y":432,"id":2278,"sizeY":24},{"sizeX":24,"x":600,"y":432,"id":2279,"sizeY":24},{"sizeX":24,"x":552,"y":432,"id":2280,"sizeY":24},{"sizeX":24,"x":504,"y":432,"id":2281,"sizeY":24},{"sizeX":24,"x":552,"y":384,"id":2282,"sizeY":24},{"sizeX":24,"x":600,"y":480,"id":2283,"sizeY":24},{"sizeX":24,"x":552,"y":480,"id":2284,"sizeY":24},{"sizeX":24,"x":648,"y":480,"id":2285,"sizeY":24},{"sizeX":24,"x":552,"y":288,"id":2287,"sizeY":24},{"sizeX":24,"x":504,"y":288,"id":2288,"sizeY":24},{"sizeX":24,"x":600,"y":288,"id":2289,"sizeY":24},{"sizeX":24,"x":96,"y":240,"id":2290,"sizeY":24},{"sizeX":24,"x":48,"y":240,"id":2291,"sizeY":24},{"sizeX":24,"x":0,"y":240,"id":2292,"sizeY":24}],"lineID":19,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Be(e) Breeding","icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Mate":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergy","UID0":"gregtech.bee.speciesEnergy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]},"Health":60,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergy","UID0":"gregtech.bee.speciesEnergy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Breeding Bees for Better Bling (experimental, may cause honey leakage)"}},"order":19},{"quests":[{"sizeX":24,"x":0,"y":84,"id":500,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":501,"sizeY":24},{"sizeX":24,"x":72,"y":120,"id":502,"sizeY":24},{"sizeX":24,"x":114,"y":84,"id":503,"sizeY":24},{"sizeX":24,"x":156,"y":120,"id":504,"sizeY":24},{"sizeX":24,"x":204,"y":84,"id":505,"sizeY":24},{"sizeX":24,"x":108,"y":192,"id":506,"sizeY":24},{"sizeX":24,"x":156,"y":156,"id":507,"sizeY":24},{"sizeX":24,"x":108,"y":228,"id":508,"sizeY":24},{"sizeX":24,"x":36,"y":228,"id":509,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":510,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":511,"sizeY":24},{"sizeX":24,"x":0,"y":228,"id":512,"sizeY":24},{"sizeX":24,"x":156,"y":228,"id":513,"sizeY":24},{"sizeX":24,"x":72,"y":156,"id":514,"sizeY":24},{"sizeX":24,"x":36,"y":156,"id":515,"sizeY":24},{"sizeX":24,"x":0,"y":156,"id":516,"sizeY":24},{"sizeX":24,"x":72,"y":228,"id":517,"sizeY":24},{"sizeX":24,"x":72,"y":192,"id":518,"sizeY":24},{"sizeX":24,"x":342,"y":336,"id":519,"sizeY":24},{"sizeX":24,"x":90,"y":336,"id":520,"sizeY":24},{"sizeX":24,"x":162,"y":336,"id":521,"sizeY":24},{"sizeX":24,"x":54,"y":336,"id":522,"sizeY":24},{"sizeX":24,"x":18,"y":336,"id":523,"sizeY":24},{"sizeX":24,"x":270,"y":336,"id":524,"sizeY":24},{"sizeX":24,"x":126,"y":336,"id":525,"sizeY":24},{"sizeX":24,"x":198,"y":336,"id":526,"sizeY":24},{"sizeX":24,"x":306,"y":336,"id":527,"sizeY":24},{"sizeX":24,"x":234,"y":336,"id":528,"sizeY":24},{"sizeX":24,"x":72,"y":84,"id":992,"sizeY":24},{"sizeX":24,"x":72,"y":48,"id":993,"sizeY":24},{"sizeX":24,"x":108,"y":48,"id":995,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":996,"sizeY":24},{"sizeX":24,"x":204,"y":156,"id":1111,"sizeY":24},{"sizeX":24,"x":36,"y":120,"id":1112,"sizeY":24},{"sizeX":24,"x":114,"y":120,"id":1113,"sizeY":24},{"sizeX":24,"x":204,"y":192,"id":1114,"sizeY":24},{"sizeX":24,"x":252,"y":192,"id":1123,"sizeY":24},{"sizeX":24,"x":156,"y":48,"id":1367,"sizeY":24},{"sizeX":24,"x":36,"y":84,"id":1511,"sizeY":24},{"sizeX":24,"x":156,"y":84,"id":1512,"sizeY":24},{"sizeX":24,"x":204,"y":228,"id":1513,"sizeY":24},{"sizeX":24,"x":252,"y":228,"id":1514,"sizeY":24},{"sizeX":24,"x":300,"y":228,"id":1515,"sizeY":24},{"sizeX":24,"x":252,"y":264,"id":1516,"sizeY":24},{"sizeX":24,"x":252,"y":156,"id":2089,"sizeY":24},{"sizeX":24,"x":156,"y":192,"id":2090,"sizeY":24},{"sizeX":24,"x":300,"y":192,"id":2091,"sizeY":24},{"sizeX":24,"x":300,"y":156,"id":2092,"sizeY":24},{"sizeX":24,"x":348,"y":156,"id":2093,"sizeY":24},{"sizeX":24,"x":348,"y":192,"id":2094,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":2106,"sizeY":24},{"sizeX":24,"x":252,"y":84,"id":2108,"sizeY":24},{"sizeX":24,"x":252,"y":120,"id":2109,"sizeY":24},{"sizeX":24,"x":204,"y":264,"id":2255,"sizeY":24}],"lineID":20,"properties":{"betterquesting":{"visibility":"NORMAL","name":"How to be(e)","icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A non-tiered quest set that is meant as an in game, quest based tutorial and guide to bees. Since they are a really helpful tool to advance forward."}},"order":20},{"quests":[{"sizeX":24,"x":144,"y":0,"id":1954,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":2081,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":2082,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":2088,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":2095,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":2096,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":2097,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":2098,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":2099,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":2100,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":2101,"sizeY":24},{"sizeX":24,"x":216,"y":72,"id":2102,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":2103,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2104,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":2110,"sizeY":24}],"lineID":21,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Slice and splice","icon":{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"An introduction to using Binnie's Genetics mod for bees, trees, and Botany flowers. (under construction)"}},"order":21},{"quests":[{"sizeX":24,"x":216,"y":0,"id":224,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":225,"sizeY":24},{"sizeX":24,"x":396,"y":72,"id":226,"sizeY":24},{"sizeX":24,"x":312,"y":72,"id":227,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":229,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":230,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":231,"sizeY":24},{"sizeX":24,"x":432,"y":72,"id":232,"sizeY":24},{"sizeX":24,"x":84,"y":144,"id":233,"sizeY":24},{"sizeX":24,"x":432,"y":144,"id":234,"sizeY":24},{"sizeX":24,"x":360,"y":108,"id":235,"sizeY":24},{"sizeX":24,"x":396,"y":108,"id":236,"sizeY":24},{"sizeX":24,"x":360,"y":180,"id":237,"sizeY":24},{"sizeX":24,"x":360,"y":216,"id":238,"sizeY":24},{"sizeX":24,"x":312,"y":216,"id":239,"sizeY":24},{"sizeX":24,"x":312,"y":180,"id":240,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":241,"sizeY":24},{"sizeX":24,"x":84,"y":252,"id":242,"sizeY":24},{"sizeX":24,"x":180,"y":252,"id":243,"sizeY":24},{"sizeX":24,"x":288,"y":336,"id":244,"sizeY":24},{"sizeX":24,"x":360,"y":372,"id":245,"sizeY":24},{"sizeX":24,"x":432,"y":336,"id":246,"sizeY":24},{"sizeX":24,"x":288,"y":408,"id":247,"sizeY":24},{"sizeX":24,"x":432,"y":408,"id":248,"sizeY":24},{"sizeX":24,"x":288,"y":372,"id":249,"sizeY":24},{"sizeX":24,"x":432,"y":372,"id":250,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":251,"sizeY":24},{"sizeX":24,"x":312,"y":252,"id":252,"sizeY":24},{"sizeX":24,"x":312,"y":144,"id":253,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":254,"sizeY":24},{"sizeX":24,"x":240,"y":144,"id":255,"sizeY":24},{"sizeX":24,"x":240,"y":180,"id":256,"sizeY":24},{"sizeX":24,"x":312,"y":108,"id":257,"sizeY":24},{"sizeX":24,"x":432,"y":252,"id":258,"sizeY":24},{"sizeX":24,"x":396,"y":252,"id":259,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":610,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":798,"sizeY":24},{"sizeX":24,"x":180,"y":216,"id":1002,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1070,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1071,"sizeY":24},{"sizeX":24,"x":360,"y":72,"id":1096,"sizeY":24},{"sizeX":24,"x":432,"y":180,"id":1100,"sizeY":24},{"sizeX":24,"x":468,"y":180,"id":1101,"sizeY":24},{"sizeX":24,"x":504,"y":180,"id":1103,"sizeY":24},{"sizeX":24,"x":468,"y":216,"id":1104,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1106,"sizeY":24},{"sizeX":24,"x":84,"y":36,"id":1158,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":1159,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":1177,"sizeY":24},{"sizeX":24,"x":240,"y":216,"id":1286,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":1368,"sizeY":24},{"sizeX":24,"x":240,"y":108,"id":1369,"sizeY":24},{"sizeX":24,"x":276,"y":108,"id":1370,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":1565,"sizeY":24},{"sizeX":24,"x":276,"y":72,"id":1778,"sizeY":24},{"sizeX":24,"x":132,"y":36,"id":1837,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1838,"sizeY":24},{"sizeX":24,"x":396,"y":216,"id":1912,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":1995,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1996,"sizeY":24},{"sizeX":24,"x":144,"y":216,"id":1997,"sizeY":24},{"sizeX":24,"x":432,"y":216,"id":1998,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":2042,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2046,"sizeY":24},{"sizeX":24,"x":312,"y":36,"id":2050,"sizeY":24},{"sizeX":24,"x":132,"y":0,"id":2059,"sizeY":24},{"sizeX":24,"x":312,"y":288,"id":2060,"sizeY":24},{"sizeX":24,"x":342,"y":288,"id":2061,"sizeY":24},{"sizeX":24,"x":342,"y":324,"id":2062,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":2063,"sizeY":24},{"sizeX":24,"x":240,"y":36,"id":2065,"sizeY":24},{"sizeX":24,"x":276,"y":36,"id":2066,"sizeY":24},{"sizeX":24,"x":468,"y":252,"id":2067,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":2146,"sizeY":24},{"sizeX":24,"x":120,"y":108,"id":2147,"sizeY":24},{"sizeX":24,"x":396,"y":288,"id":2259,"sizeY":24}],"lineID":22,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Novice Thaumaturge","icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Magic lies beyond. Great achievements, but also a lot of work. I shall be your guide. Follow my instructions, and you shall become a great wizard, like me."}},"order":22},{"quests":[{"sizeX":24,"x":132,"y":96,"id":260,"sizeY":24},{"sizeX":24,"x":408,"y":132,"id":261,"sizeY":24},{"sizeX":24,"x":408,"y":96,"id":262,"sizeY":24},{"sizeX":24,"x":360,"y":132,"id":263,"sizeY":24},{"sizeX":24,"x":276,"y":120,"id":264,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":265,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":266,"sizeY":24},{"sizeX":24,"x":276,"y":192,"id":267,"sizeY":24},{"sizeX":24,"x":276,"y":156,"id":268,"sizeY":24},{"sizeX":24,"x":276,"y":36,"id":269,"sizeY":24},{"sizeX":24,"x":276,"y":0,"id":270,"sizeY":24},{"sizeX":24,"x":276,"y":72,"id":271,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":272,"sizeY":24},{"sizeX":24,"x":408,"y":204,"id":273,"sizeY":24},{"sizeX":24,"x":408,"y":168,"id":274,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":275,"sizeY":24},{"sizeX":24,"x":96,"y":168,"id":276,"sizeY":24},{"sizeX":24,"x":96,"y":132,"id":277,"sizeY":24},{"sizeX":24,"x":132,"y":216,"id":278,"sizeY":24},{"sizeX":24,"x":504,"y":168,"id":279,"sizeY":24},{"sizeX":24,"x":540,"y":168,"id":280,"sizeY":24},{"sizeX":24,"x":576,"y":168,"id":281,"sizeY":24},{"sizeX":24,"x":576,"y":132,"id":282,"sizeY":24},{"sizeX":24,"x":504,"y":204,"id":283,"sizeY":24},{"sizeX":24,"x":504,"y":252,"id":284,"sizeY":24},{"sizeX":24,"x":504,"y":132,"id":285,"sizeY":24},{"sizeX":24,"x":540,"y":96,"id":286,"sizeY":24},{"sizeX":24,"x":540,"y":132,"id":287,"sizeY":24},{"sizeX":24,"x":468,"y":132,"id":288,"sizeY":24},{"sizeX":24,"x":576,"y":96,"id":289,"sizeY":24},{"sizeX":24,"x":96,"y":288,"id":290,"sizeY":24},{"sizeX":24,"x":228,"y":252,"id":291,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":292,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":293,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":294,"sizeY":24},{"sizeX":24,"x":168,"y":288,"id":295,"sizeY":24},{"sizeX":24,"x":132,"y":288,"id":296,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":297,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":298,"sizeY":24},{"sizeX":24,"x":168,"y":252,"id":299,"sizeY":24},{"sizeX":24,"x":228,"y":288,"id":300,"sizeY":24},{"sizeX":24,"x":96,"y":252,"id":301,"sizeY":24},{"sizeX":24,"x":168,"y":132,"id":302,"sizeY":24},{"sizeX":24,"x":360,"y":168,"id":303,"sizeY":24},{"sizeX":24,"x":360,"y":204,"id":304,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":305,"sizeY":24},{"sizeX":24,"x":204,"y":132,"id":306,"sizeY":24},{"sizeX":24,"x":468,"y":96,"id":833,"sizeY":24},{"sizeX":24,"x":204,"y":36,"id":877,"sizeY":24},{"sizeX":24,"x":324,"y":168,"id":878,"sizeY":24},{"sizeX":24,"x":204,"y":72,"id":879,"sizeY":24},{"sizeX":24,"x":324,"y":204,"id":887,"sizeY":24},{"sizeX":24,"x":132,"y":48,"id":1055,"sizeY":24},{"sizeX":24,"x":132,"y":12,"id":1097,"sizeY":24},{"sizeX":24,"x":168,"y":12,"id":1098,"sizeY":24},{"sizeX":24,"x":96,"y":12,"id":1099,"sizeY":24},{"sizeX":24,"x":408,"y":48,"id":1102,"sizeY":24},{"sizeX":24,"x":408,"y":0,"id":1105,"sizeY":24},{"sizeX":24,"x":324,"y":132,"id":1191,"sizeY":24},{"sizeX":24,"x":48,"y":216,"id":1382,"sizeY":24},{"sizeX":24,"x":48,"y":168,"id":1383,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1401,"sizeY":24},{"sizeX":24,"x":444,"y":168,"id":1402,"sizeY":24},{"sizeX":24,"x":60,"y":12,"id":1875,"sizeY":24},{"sizeX":24,"x":204,"y":168,"id":1992,"sizeY":24},{"sizeX":24,"x":240,"y":132,"id":1993,"sizeY":24},{"sizeX":24,"x":240,"y":168,"id":1994,"sizeY":24},{"sizeX":24,"x":336,"y":72,"id":2020,"sizeY":24},{"sizeX":24,"x":378,"y":72,"id":2021,"sizeY":24},{"sizeX":24,"x":336,"y":36,"id":2022,"sizeY":24},{"sizeX":24,"x":48,"y":252,"id":2064,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":2068,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":2267,"sizeY":24},{"sizeX":24,"x":444,"y":48,"id":2268,"sizeY":24}],"lineID":23,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Adept Thaumaturgy","icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"orichalcum","rod":"neutronium_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":2000,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Warp included."}},"order":23},{"quests":[{"sizeX":24,"x":144,"y":0,"id":307,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":309,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":310,"sizeY":24},{"sizeX":24,"x":192,"y":180,"id":311,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":312,"sizeY":24},{"sizeX":24,"x":192,"y":108,"id":313,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":314,"sizeY":24},{"sizeX":24,"x":192,"y":144,"id":315,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":316,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":317,"sizeY":24},{"sizeX":24,"x":192,"y":72,"id":318,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":319,"sizeY":24},{"sizeX":24,"x":96,"y":72,"id":320,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":321,"sizeY":24},{"sizeX":24,"x":48,"y":180,"id":322,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":323,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":324,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":325,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":326,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":327,"sizeY":24},{"sizeX":24,"x":288,"y":72,"id":328,"sizeY":24},{"sizeX":24,"x":96,"y":36,"id":329,"sizeY":24},{"sizeX":24,"x":96,"y":180,"id":330,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":331,"sizeY":24},{"sizeX":24,"x":48,"y":36,"id":1109,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1110,"sizeY":24}],"lineID":24,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Kaaami, Haaaami, ... HA!","icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Ultimate (magical) POWER!!!"}},"order":24},{"quests":[{"sizeX":24,"x":132,"y":0,"id":1372,"sizeY":24},{"sizeX":24,"x":132,"y":36,"id":1373,"sizeY":24},{"sizeX":24,"x":84,"y":36,"id":1374,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1375,"sizeY":24},{"sizeX":24,"x":228,"y":36,"id":1376,"sizeY":24},{"sizeX":24,"x":132,"y":72,"id":1377,"sizeY":24},{"sizeX":24,"x":228,"y":72,"id":1378,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1380,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":1381,"sizeY":24},{"sizeX":24,"x":84,"y":72,"id":1384,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":1385,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1386,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":1387,"sizeY":24},{"sizeX":24,"x":84,"y":144,"id":1388,"sizeY":24},{"sizeX":24,"x":84,"y":180,"id":1389,"sizeY":24},{"sizeX":24,"x":132,"y":108,"id":1390,"sizeY":24},{"sizeX":24,"x":132,"y":180,"id":1391,"sizeY":24},{"sizeX":24,"x":180,"y":180,"id":1392,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1393,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1394,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1395,"sizeY":24},{"sizeX":24,"x":228,"y":180,"id":1396,"sizeY":24},{"sizeX":24,"x":228,"y":216,"id":1397,"sizeY":24},{"sizeX":24,"x":276,"y":216,"id":1398,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1399,"sizeY":24},{"sizeX":24,"x":276,"y":108,"id":1400,"sizeY":24}],"lineID":25,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Focus on Wand Foci","icon":{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Did you know which wand focus is useful and which not?"}},"order":25},{"quests":[{"sizeX":24,"x":42,"y":42,"id":1332,"sizeY":24},{"sizeX":24,"x":210,"y":42,"id":1333,"sizeY":24},{"sizeX":24,"x":252,"y":42,"id":1334,"sizeY":24},{"sizeX":24,"x":0,"y":42,"id":1335,"sizeY":24},{"sizeX":24,"x":42,"y":84,"id":1336,"sizeY":24},{"sizeX":24,"x":0,"y":84,"id":1337,"sizeY":24},{"sizeX":24,"x":42,"y":126,"id":1338,"sizeY":24},{"sizeX":24,"x":186,"y":0,"id":1339,"sizeY":24},{"sizeX":24,"x":168,"y":42,"id":1340,"sizeY":24},{"sizeX":24,"x":234,"y":0,"id":1341,"sizeY":24},{"sizeX":24,"x":210,"y":84,"id":1342,"sizeY":24},{"sizeX":24,"x":294,"y":0,"id":1343,"sizeY":24},{"sizeX":24,"x":294,"y":42,"id":1344,"sizeY":24},{"sizeX":24,"x":294,"y":84,"id":1345,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":1346,"sizeY":24},{"sizeX":24,"x":336,"y":42,"id":1347,"sizeY":24},{"sizeX":24,"x":336,"y":84,"id":1348,"sizeY":24},{"sizeX":24,"x":126,"y":0,"id":1349,"sizeY":24},{"sizeX":24,"x":126,"y":42,"id":1350,"sizeY":24},{"sizeX":24,"x":126,"y":84,"id":1351,"sizeY":24},{"sizeX":24,"x":84,"y":84,"id":1352,"sizeY":24},{"sizeX":24,"x":42,"y":0,"id":1353,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":1354,"sizeY":24},{"sizeX":24,"x":294,"y":126,"id":1355,"sizeY":24},{"sizeX":24,"x":294,"y":168,"id":1356,"sizeY":24},{"sizeX":24,"x":84,"y":42,"id":1357,"sizeY":24},{"sizeX":24,"x":168,"y":84,"id":1358,"sizeY":24},{"sizeX":24,"x":168,"y":126,"id":1359,"sizeY":24},{"sizeX":24,"x":210,"y":126,"id":1360,"sizeY":24},{"sizeX":24,"x":378,"y":0,"id":1361,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1362,"sizeY":24},{"sizeX":24,"x":378,"y":42,"id":2260,"sizeY":24},{"sizeX":24,"x":378,"y":84,"id":2261,"sizeY":24},{"sizeX":24,"x":378,"y":126,"id":2262,"sizeY":24}],"lineID":26,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Electro Magic","icon":{"id":"EMT:electricCloud","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This Tab focus on Electro Magic Tools and Thaumic Energistics. These are some nice mods, that will help you with machinery and magic."}},"order":26},{"quests":[{"sizeX":24,"x":66,"y":36,"id":332,"sizeY":24},{"sizeX":24,"x":156,"y":180,"id":333,"sizeY":24},{"sizeX":24,"x":168,"y":72,"id":334,"sizeY":24},{"sizeX":24,"x":396,"y":288,"id":335,"sizeY":24},{"sizeX":24,"x":210,"y":162,"id":336,"sizeY":24},{"sizeX":24,"x":204,"y":108,"id":337,"sizeY":24},{"sizeX":24,"x":588,"y":444,"id":338,"sizeY":24},{"sizeX":24,"x":348,"y":384,"id":339,"sizeY":24},{"sizeX":24,"x":300,"y":360,"id":340,"sizeY":24},{"sizeX":24,"x":264,"y":384,"id":341,"sizeY":24},{"sizeX":24,"x":276,"y":420,"id":342,"sizeY":24},{"sizeX":24,"x":324,"y":246,"id":343,"sizeY":24},{"sizeX":24,"x":456,"y":240,"id":344,"sizeY":24},{"sizeX":24,"x":336,"y":312,"id":345,"sizeY":24},{"sizeX":24,"x":456,"y":312,"id":346,"sizeY":24},{"sizeX":24,"x":480,"y":276,"id":347,"sizeY":24},{"sizeX":24,"x":360,"y":222,"id":348,"sizeY":24},{"sizeX":24,"x":324,"y":408,"id":349,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1554,"sizeY":24},{"sizeX":24,"x":108,"y":84,"id":1555,"sizeY":24},{"sizeX":24,"x":24,"y":204,"id":1556,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1557,"sizeY":24},{"sizeX":24,"x":48,"y":156,"id":1558,"sizeY":24},{"sizeX":24,"x":108,"y":120,"id":1559,"sizeY":24},{"sizeX":24,"x":24,"y":36,"id":1560,"sizeY":24},{"sizeX":24,"x":120,"y":156,"id":1561,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1562,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":1563,"sizeY":24},{"sizeX":24,"x":324,"y":132,"id":1564,"sizeY":24},{"sizeX":24,"x":372,"y":156,"id":1566,"sizeY":24},{"sizeX":24,"x":396,"y":204,"id":1567,"sizeY":24},{"sizeX":24,"x":84,"y":168,"id":1568,"sizeY":24},{"sizeX":24,"x":36,"y":120,"id":1569,"sizeY":24},{"sizeX":24,"x":444,"y":360,"id":1570,"sizeY":24},{"sizeX":24,"x":384,"y":336,"id":1571,"sizeY":24},{"sizeX":24,"x":456,"y":456,"id":1572,"sizeY":24},{"sizeX":24,"x":408,"y":384,"id":1573,"sizeY":24},{"sizeX":24,"x":396,"y":432,"id":1574,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":1575,"sizeY":24},{"sizeX":24,"x":516,"y":408,"id":1576,"sizeY":24},{"sizeX":24,"x":588,"y":396,"id":1577,"sizeY":24},{"sizeX":24,"x":648,"y":432,"id":1578,"sizeY":24},{"sizeX":24,"x":708,"y":468,"id":1579,"sizeY":24},{"sizeX":24,"x":684,"y":324,"id":1580,"sizeY":24},{"sizeX":24,"x":600,"y":348,"id":1581,"sizeY":24},{"sizeX":24,"x":792,"y":492,"id":1582,"sizeY":24},{"sizeX":24,"x":732,"y":528,"id":1583,"sizeY":24},{"sizeX":24,"x":540,"y":600,"id":1584,"sizeY":24},{"sizeX":24,"x":540,"y":480,"id":1585,"sizeY":24},{"sizeX":24,"x":504,"y":528,"id":1586,"sizeY":24},{"sizeX":24,"x":492,"y":576,"id":1587,"sizeY":24},{"sizeX":24,"x":576,"y":492,"id":1588,"sizeY":24},{"sizeX":24,"x":504,"y":492,"id":1589,"sizeY":24},{"sizeX":24,"x":456,"y":624,"id":1590,"sizeY":24},{"sizeX":24,"x":540,"y":528,"id":1591,"sizeY":24},{"sizeX":24,"x":540,"y":672,"id":1592,"sizeY":24},{"sizeX":24,"x":504,"y":636,"id":1593,"sizeY":24},{"sizeX":24,"x":588,"y":660,"id":1594,"sizeY":24},{"sizeX":24,"x":576,"y":624,"id":1595,"sizeY":24},{"sizeX":24,"x":468,"y":672,"id":1596,"sizeY":24},{"sizeX":24,"x":588,"y":576,"id":1597,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1645,"sizeY":24},{"sizeX":24,"x":306,"y":282,"id":1646,"sizeY":24},{"sizeX":24,"x":216,"y":456,"id":1647,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1648,"sizeY":24},{"sizeX":24,"x":120,"y":0,"id":1649,"sizeY":24},{"sizeX":24,"x":180,"y":12,"id":1650,"sizeY":24},{"sizeX":24,"x":204,"y":48,"id":1651,"sizeY":24}],"lineID":27,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Look to the edges","icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Granny Weatherwax would approve."}},"order":27},{"quests":[{"sizeX":24,"x":0,"y":0,"id":161,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":164,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":177,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":407,"sizeY":24},{"sizeX":24,"x":156,"y":72,"id":408,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":409,"sizeY":24},{"sizeX":24,"x":276,"y":0,"id":410,"sizeY":24},{"sizeX":24,"x":240,"y":120,"id":411,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":412,"sizeY":24},{"sizeX":24,"x":276,"y":96,"id":413,"sizeY":24},{"sizeX":24,"x":312,"y":72,"id":414,"sizeY":24},{"sizeX":24,"x":312,"y":120,"id":415,"sizeY":24},{"sizeX":24,"x":108,"y":120,"id":1325,"sizeY":24}],"lineID":28,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Paying the highest price","icon":{"id":"AWWayofTime:blankSlate","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"When regular magic just won't cover it, pay demons to do it for you! The cost might scare some people... But no risk no fun!"}},"order":28},{"quests":[{"sizeX":24,"x":336,"y":36,"id":228,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":416,"sizeY":24},{"sizeX":24,"x":72,"y":168,"id":417,"sizeY":24},{"sizeX":24,"x":0,"y":168,"id":418,"sizeY":24},{"sizeX":24,"x":36,"y":168,"id":419,"sizeY":24},{"sizeX":24,"x":372,"y":0,"id":420,"sizeY":24},{"sizeX":24,"x":300,"y":0,"id":421,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":422,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":423,"sizeY":24},{"sizeX":24,"x":300,"y":72,"id":424,"sizeY":24},{"sizeX":24,"x":336,"y":72,"id":425,"sizeY":24},{"sizeX":24,"x":300,"y":108,"id":426,"sizeY":24},{"sizeX":24,"x":372,"y":108,"id":427,"sizeY":24},{"sizeX":24,"x":372,"y":72,"id":428,"sizeY":24},{"sizeX":24,"x":300,"y":168,"id":429,"sizeY":24},{"sizeX":24,"x":264,"y":168,"id":430,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":431,"sizeY":24},{"sizeX":24,"x":216,"y":168,"id":432,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":433,"sizeY":24},{"sizeX":24,"x":144,"y":168,"id":434,"sizeY":24},{"sizeX":24,"x":180,"y":168,"id":435,"sizeY":24},{"sizeX":24,"x":108,"y":168,"id":436,"sizeY":24},{"sizeX":24,"x":216,"y":108,"id":437,"sizeY":24},{"sizeX":24,"x":336,"y":108,"id":438,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":463,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":926,"sizeY":24},{"sizeX":24,"x":264,"y":72,"id":927,"sizeY":24}],"lineID":29,"properties":{"betterquesting":{"visibility":"NORMAL","name":"More blood, more stuff","icon":{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Advanced Blood Magic? My veins feel weird..."}},"order":29},{"quests":[{"sizeX":24,"x":0,"y":72,"id":406,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":700,"sizeY":24},{"sizeX":24,"x":252,"y":72,"id":701,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":702,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":703,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":704,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":706,"sizeY":24},{"sizeX":24,"x":288,"y":36,"id":707,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":708,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":709,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":710,"sizeY":24},{"sizeX":24,"x":324,"y":36,"id":711,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":712,"sizeY":24},{"sizeX":24,"x":288,"y":72,"id":713,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":714,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":715,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":928,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":929,"sizeY":24}],"lineID":30,"properties":{"betterquesting":{"visibility":"NORMAL","name":"They are coming...","icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The spirits that I've called... Demon invasions and beyond. Really deep into dark magic!"}},"order":30},{"quests":[{"sizeX":24,"x":108,"y":42,"id":1745,"sizeY":24},{"sizeX":24,"x":90,"y":0,"id":1746,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1747,"sizeY":24},{"sizeX":24,"x":60,"y":60,"id":1748,"sizeY":24},{"sizeX":24,"x":156,"y":24,"id":1749,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":1750,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1751,"sizeY":24},{"sizeX":24,"x":60,"y":24,"id":1752,"sizeY":24},{"sizeX":24,"x":60,"y":144,"id":1753,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1754,"sizeY":24},{"sizeX":24,"x":30,"y":144,"id":1755,"sizeY":24},{"sizeX":24,"x":186,"y":144,"id":1756,"sizeY":24},{"sizeX":24,"x":126,"y":0,"id":1757,"sizeY":24},{"sizeX":24,"x":156,"y":60,"id":1758,"sizeY":24},{"sizeX":24,"x":108,"y":102,"id":1759,"sizeY":24},{"sizeX":24,"x":90,"y":144,"id":1760,"sizeY":24},{"sizeX":24,"x":138,"y":216,"id":1761,"sizeY":24},{"sizeX":24,"x":126,"y":144,"id":1762,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1763,"sizeY":24},{"sizeX":24,"x":198,"y":216,"id":1764,"sizeY":24},{"sizeX":24,"x":108,"y":270,"id":1765,"sizeY":24},{"sizeX":24,"x":126,"y":312,"id":1766,"sizeY":24},{"sizeX":24,"x":162,"y":312,"id":1767,"sizeY":24},{"sizeX":24,"x":54,"y":312,"id":1768,"sizeY":24},{"sizeX":24,"x":90,"y":312,"id":1769,"sizeY":24},{"sizeX":24,"x":18,"y":312,"id":1771,"sizeY":24},{"sizeX":24,"x":162,"y":348,"id":1772,"sizeY":24},{"sizeX":24,"x":126,"y":348,"id":1773,"sizeY":24},{"sizeX":24,"x":90,"y":348,"id":1774,"sizeY":24},{"sizeX":24,"x":54,"y":348,"id":1775,"sizeY":24},{"sizeX":24,"x":18,"y":348,"id":1776,"sizeY":24},{"sizeX":24,"x":72,"y":270,"id":1777,"sizeY":24}],"lineID":31,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Open Computers","icon":{"id":"OpenComputers:item","Count":1,"Damage":103,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The magical world of ingame programming!"}},"order":31},{"quests":[{"sizeX":24,"x":72,"y":0,"id":1989,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1990,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1991,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1999,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":2000,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":2001,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":2002,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":2003,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":2004,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":2009,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":2010,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2011,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":2012,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":2013,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2015,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":2016,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2017,"sizeY":24},{"sizeX":24,"x":72,"y":-36,"id":2019,"sizeY":24}],"lineID":32,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Stacy's Factory Manager","icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Right? Right."}},"order":32},{"quests":[{"sizeX":24,"x":132,"y":0,"id":490,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":666,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":667,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":668,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":669,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":670,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":671,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":672,"sizeY":24},{"sizeX":24,"x":408,"y":36,"id":674,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":675,"sizeY":24},{"sizeX":24,"x":384,"y":72,"id":676,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":677,"sizeY":24},{"sizeX":24,"x":216,"y":96,"id":866,"sizeY":24},{"sizeX":24,"x":132,"y":48,"id":874,"sizeY":24},{"sizeX":24,"x":264,"y":0,"id":1181,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":1182,"sizeY":24},{"sizeX":24,"x":312,"y":0,"id":1183,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":1184,"sizeY":24},{"sizeX":24,"x":408,"y":0,"id":1185,"sizeY":24},{"sizeX":24,"x":168,"y":96,"id":1186,"sizeY":24},{"sizeX":24,"x":216,"y":168,"id":1187,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":1188,"sizeY":24},{"sizeX":24,"x":264,"y":168,"id":1189,"sizeY":24},{"sizeX":24,"x":312,"y":168,"id":1190,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":1379,"sizeY":24},{"sizeX":24,"x":216,"y":216,"id":1810,"sizeY":24}],"lineID":33,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Transportation","icon":{"id":"minecraft:activator_rail","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"From four legged steeds to iron horses"}},"order":33},{"quests":[{"sizeX":24,"x":384,"y":336,"id":204,"sizeY":24},{"sizeX":24,"x":384,"y":372,"id":205,"sizeY":24},{"sizeX":24,"x":120,"y":0,"id":809,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":810,"sizeY":24},{"sizeX":24,"x":36,"y":60,"id":811,"sizeY":24},{"sizeX":24,"x":120,"y":60,"id":812,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":813,"sizeY":24},{"sizeX":24,"x":84,"y":96,"id":814,"sizeY":24},{"sizeX":24,"x":204,"y":96,"id":815,"sizeY":24},{"sizeX":24,"x":252,"y":132,"id":816,"sizeY":24},{"sizeX":24,"x":252,"y":96,"id":817,"sizeY":24},{"sizeX":24,"x":288,"y":132,"id":818,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":819,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":820,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":821,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":822,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":823,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":824,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":827,"sizeY":24},{"sizeX":24,"x":336,"y":132,"id":828,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":829,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":830,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":831,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":832,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1067,"sizeY":24},{"sizeX":24,"x":72,"y":252,"id":1068,"sizeY":24},{"sizeX":24,"x":168,"y":252,"id":1072,"sizeY":24},{"sizeX":24,"x":36,"y":336,"id":1371,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1426,"sizeY":24},{"sizeX":24,"x":300,"y":252,"id":1427,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1428,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1429,"sizeY":24},{"sizeX":24,"x":300,"y":216,"id":1430,"sizeY":24},{"sizeX":24,"x":336,"y":216,"id":1431,"sizeY":24},{"sizeX":24,"x":252,"y":252,"id":1432,"sizeY":24},{"sizeX":24,"x":252,"y":168,"id":1433,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":1434,"sizeY":24},{"sizeX":24,"x":288,"y":168,"id":1435,"sizeY":24},{"sizeX":24,"x":384,"y":168,"id":1436,"sizeY":24},{"sizeX":24,"x":204,"y":252,"id":1437,"sizeY":24},{"sizeX":24,"x":132,"y":336,"id":1439,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":1440,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":1441,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":1445,"sizeY":24},{"sizeX":24,"x":300,"y":372,"id":1446,"sizeY":24},{"sizeX":24,"x":336,"y":408,"id":1447,"sizeY":24},{"sizeX":24,"x":228,"y":468,"id":1448,"sizeY":24},{"sizeX":24,"x":336,"y":372,"id":1449,"sizeY":24},{"sizeX":24,"x":384,"y":408,"id":1450,"sizeY":24},{"sizeX":24,"x":420,"y":408,"id":1451,"sizeY":24},{"sizeX":24,"x":420,"y":372,"id":1452,"sizeY":24},{"sizeX":24,"x":300,"y":408,"id":1453,"sizeY":24},{"sizeX":24,"x":300,"y":540,"id":1454,"sizeY":24},{"sizeX":24,"x":336,"y":468,"id":1456,"sizeY":24},{"sizeX":24,"x":264,"y":468,"id":1457,"sizeY":24},{"sizeX":24,"x":384,"y":468,"id":1458,"sizeY":24},{"sizeX":24,"x":420,"y":468,"id":1459,"sizeY":24},{"sizeX":24,"x":192,"y":468,"id":1460,"sizeY":24},{"sizeX":24,"x":336,"y":252,"id":1462,"sizeY":24},{"sizeX":24,"x":300,"y":576,"id":1463,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":1464,"sizeY":24},{"sizeX":24,"x":228,"y":300,"id":1465,"sizeY":24},{"sizeX":24,"x":228,"y":336,"id":1466,"sizeY":24},{"sizeX":24,"x":264,"y":300,"id":1467,"sizeY":24},{"sizeX":24,"x":336,"y":300,"id":1468,"sizeY":24},{"sizeX":24,"x":264,"y":336,"id":1469,"sizeY":24},{"sizeX":24,"x":228,"y":372,"id":1470,"sizeY":24},{"sizeX":24,"x":264,"y":372,"id":1471,"sizeY":24},{"sizeX":24,"x":384,"y":252,"id":1472,"sizeY":24},{"sizeX":24,"x":156,"y":468,"id":1473,"sizeY":24},{"sizeX":24,"x":342,"y":540,"id":1530,"sizeY":24},{"sizeX":24,"x":384,"y":576,"id":1531,"sizeY":24},{"sizeX":24,"x":342,"y":576,"id":1532,"sizeY":24},{"sizeX":24,"x":342,"y":624,"id":1535,"sizeY":24},{"sizeX":24,"x":300,"y":624,"id":1723,"sizeY":24},{"sizeX":24,"x":228,"y":624,"id":1724,"sizeY":24},{"sizeX":24,"x":204,"y":564,"id":1725,"sizeY":24},{"sizeX":24,"x":96,"y":624,"id":1726,"sizeY":24},{"sizeX":24,"x":216,"y":720,"id":1727,"sizeY":24},{"sizeX":24,"x":156,"y":552,"id":1728,"sizeY":24},{"sizeX":24,"x":192,"y":648,"id":1729,"sizeY":24},{"sizeX":24,"x":192,"y":600,"id":1730,"sizeY":24},{"sizeX":24,"x":216,"y":528,"id":1731,"sizeY":24},{"sizeX":24,"x":426,"y":540,"id":1732,"sizeY":24},{"sizeX":24,"x":426,"y":576,"id":1733,"sizeY":24},{"sizeX":24,"x":384,"y":540,"id":1734,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1742,"sizeY":24},{"sizeX":24,"x":372,"y":300,"id":1743,"sizeY":24},{"sizeX":24,"x":168,"y":288,"id":1840,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2072,"sizeY":24}],"lineID":34,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Space Race","icon":{"id":"GalaxySpace:item.Tier6Rocket","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A guide to help you start Galacticraft and reach the Moon"}},"order":34},{"quests":[{"sizeX":24,"x":228,"y":48,"id":178,"sizeY":24},{"sizeX":24,"x":228,"y":12,"id":179,"sizeY":24},{"sizeX":24,"x":468,"y":48,"id":180,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":181,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":182,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":183,"sizeY":24},{"sizeX":24,"x":192,"y":72,"id":184,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":185,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":203,"sizeY":24},{"sizeX":24,"x":468,"y":96,"id":1253,"sizeY":24},{"sizeX":24,"x":468,"y":144,"id":1254,"sizeY":24},{"sizeX":24,"x":516,"y":48,"id":1255,"sizeY":24},{"sizeX":24,"x":516,"y":96,"id":1256,"sizeY":24},{"sizeX":24,"x":516,"y":144,"id":1257,"sizeY":24},{"sizeX":24,"x":144,"y":288,"id":1258,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1259,"sizeY":24},{"sizeX":24,"x":264,"y":180,"id":1260,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1290,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":1291,"sizeY":24},{"sizeX":24,"x":228,"y":96,"id":1292,"sizeY":24},{"sizeX":24,"x":228,"y":144,"id":1293,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1294,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1295,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":1296,"sizeY":24},{"sizeX":24,"x":144,"y":252,"id":1298,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":1299,"sizeY":24},{"sizeX":24,"x":144,"y":216,"id":1300,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1301,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1302,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1303,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1304,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1305,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1306,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1308,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1309,"sizeY":24},{"sizeX":24,"x":312,"y":48,"id":1310,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":1311,"sizeY":24},{"sizeX":24,"x":312,"y":144,"id":1312,"sizeY":24},{"sizeX":24,"x":360,"y":48,"id":1313,"sizeY":24},{"sizeX":24,"x":360,"y":96,"id":1314,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":1315,"sizeY":24},{"sizeX":24,"x":396,"y":48,"id":1316,"sizeY":24},{"sizeX":24,"x":396,"y":96,"id":1317,"sizeY":24},{"sizeX":24,"x":396,"y":144,"id":1318,"sizeY":24},{"sizeX":24,"x":432,"y":96,"id":1319,"sizeY":24},{"sizeX":24,"x":312,"y":180,"id":1326,"sizeY":24},{"sizeX":24,"x":264,"y":48,"id":1327,"sizeY":24},{"sizeX":24,"x":264,"y":12,"id":1328,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":1329,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":1330,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1331,"sizeY":24},{"sizeX":24,"x":192,"y":36,"id":2119,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":2120,"sizeY":24},{"sizeX":24,"x":192,"y":108,"id":2136,"sizeY":24},{"sizeX":24,"x":264,"y":144,"id":2137,"sizeY":24}],"lineID":35,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Applied Energistics","icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"tag":{},"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"AE2 focuses on creating a compact, easily accessible, considerably extendible storage system called an ME Network. "}},"order":35},{"quests":[{"sizeX":24,"x":0,"y":0,"id":2005,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2006,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":2007,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":2008,"sizeY":24}],"lineID":36,"properties":{"betterquesting":{"visibility":"NORMAL","name":"An Age of Tech","icon":{"id":"tectech:gt.blockcasingsTT","Count":1,"Damage":9,"OreDict":""},"bg_image":"","bg_size":256,"desc":"I've been keeping a watchful eye on your technological advance - it's time to see the dreams of a technological future! I shall guide you to a whole new complicated series of machinery. Be wary though, these machines will test your resolve (and energy limits) to the extreme. (under construction)"}},"order":36},{"quests":[{"sizeX":24,"x":336,"y":132,"id":537,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":900,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":901,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":902,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":903,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":904,"sizeY":24},{"sizeX":24,"x":240,"y":0,"id":905,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":906,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":907,"sizeY":24},{"sizeX":24,"x":384,"y":0,"id":908,"sizeY":24},{"sizeX":24,"x":444,"y":132,"id":909,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":910,"sizeY":24},{"sizeX":24,"x":372,"y":132,"id":911,"sizeY":24},{"sizeX":24,"x":408,"y":132,"id":912,"sizeY":24},{"sizeX":24,"x":228,"y":132,"id":913,"sizeY":24},{"sizeX":24,"x":264,"y":132,"id":914,"sizeY":24},{"sizeX":24,"x":300,"y":132,"id":915,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":916,"sizeY":24},{"sizeX":24,"x":408,"y":96,"id":917,"sizeY":24},{"sizeX":24,"x":0,"y":60,"id":918,"sizeY":24},{"sizeX":24,"x":48,"y":60,"id":919,"sizeY":24},{"sizeX":24,"x":96,"y":60,"id":920,"sizeY":24},{"sizeX":24,"x":144,"y":60,"id":921,"sizeY":24},{"sizeX":24,"x":192,"y":60,"id":922,"sizeY":24},{"sizeX":24,"x":240,"y":60,"id":923,"sizeY":24},{"sizeX":24,"x":288,"y":60,"id":924,"sizeY":24},{"sizeX":24,"x":336,"y":60,"id":925,"sizeY":24},{"sizeX":24,"x":192,"y":132,"id":985,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":2073,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":2074,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":2075,"sizeY":24},{"sizeX":24,"x":48,"y":132,"id":2076,"sizeY":24},{"sizeX":24,"x":0,"y":132,"id":2077,"sizeY":24},{"sizeX":24,"x":96,"y":132,"id":2078,"sizeY":24},{"sizeX":24,"x":48,"y":168,"id":2079,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":2111,"sizeY":24}],"lineID":37,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Kill all the things","icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This world is full of nasty things. Time to kill some and improve your reputation."}},"order":37},{"quests":[{"sizeX":24,"x":0,"y":0,"id":600,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":601,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":602,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":603,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":605,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":606,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":607,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":986,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":2286,"sizeY":24}],"lineID":38,"properties":{"betterquesting":{"visibility":"NORMAL","name":"To grind, or not to grind","icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"That is the question. Do you want good tools? Well, then go grind stuff! The rewards of these quests are worth it, trust me."}},"order":38},{"quests":[{"sizeX":24,"x":252,"y":72,"id":308,"sizeY":24},{"sizeX":24,"x":204,"y":72,"id":350,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":351,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":352,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":353,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":354,"sizeY":24},{"sizeX":24,"x":96,"y":36,"id":355,"sizeY":24},{"sizeX":24,"x":156,"y":36,"id":356,"sizeY":24},{"sizeX":24,"x":96,"y":72,"id":357,"sizeY":24},{"sizeX":24,"x":96,"y":108,"id":358,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":359,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":360,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":361,"sizeY":24}],"lineID":39,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Quests","icon":{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary quest-line with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":39},{"quests":[{"sizeX":24,"x":0,"y":32,"id":362,"sizeY":24},{"sizeX":24,"x":32,"y":32,"id":363,"sizeY":24},{"sizeX":24,"x":64,"y":32,"id":364,"sizeY":24},{"sizeX":24,"x":96,"y":32,"id":365,"sizeY":24},{"sizeX":24,"x":160,"y":32,"id":366,"sizeY":24},{"sizeX":24,"x":128,"y":32,"id":367,"sizeY":24},{"sizeX":24,"x":192,"y":32,"id":368,"sizeY":24},{"sizeX":24,"x":224,"y":32,"id":369,"sizeY":24},{"sizeX":24,"x":256,"y":32,"id":370,"sizeY":24},{"sizeX":24,"x":288,"y":32,"id":371,"sizeY":24},{"sizeX":24,"x":320,"y":32,"id":372,"sizeY":24},{"sizeX":24,"x":352,"y":32,"id":373,"sizeY":24},{"sizeX":24,"x":384,"y":32,"id":374,"sizeY":24},{"sizeX":24,"x":64,"y":64,"id":375,"sizeY":24},{"sizeX":24,"x":96,"y":64,"id":376,"sizeY":24},{"sizeX":24,"x":384,"y":64,"id":377,"sizeY":24},{"sizeX":24,"x":352,"y":64,"id":378,"sizeY":24},{"sizeX":24,"x":320,"y":64,"id":379,"sizeY":24},{"sizeX":24,"x":288,"y":64,"id":380,"sizeY":24},{"sizeX":24,"x":256,"y":64,"id":381,"sizeY":24},{"sizeX":24,"x":224,"y":64,"id":382,"sizeY":24},{"sizeX":24,"x":192,"y":64,"id":383,"sizeY":24},{"sizeX":24,"x":160,"y":64,"id":384,"sizeY":24},{"sizeX":24,"x":128,"y":64,"id":385,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":386,"sizeY":24},{"sizeX":24,"x":0,"y":64,"id":387,"sizeY":24},{"sizeX":24,"x":32,"y":64,"id":388,"sizeY":24},{"sizeX":24,"x":224,"y":128,"id":389,"sizeY":24},{"sizeX":24,"x":192,"y":128,"id":390,"sizeY":24},{"sizeX":24,"x":256,"y":128,"id":391,"sizeY":24},{"sizeX":24,"x":32,"y":96,"id":392,"sizeY":24},{"sizeX":24,"x":64,"y":96,"id":393,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":394,"sizeY":24},{"sizeX":24,"x":128,"y":96,"id":395,"sizeY":24},{"sizeX":24,"x":160,"y":128,"id":396,"sizeY":24},{"sizeX":24,"x":288,"y":128,"id":397,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":464,"sizeY":24}],"lineID":40,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Tier X","icon":{"id":"DraconicEvolution:chaosCrystal","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary quest-line with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":40},{"quests":[{"sizeX":24,"x":0,"y":0,"id":398,"sizeY":24},{"sizeX":24,"x":0,"y":32,"id":399,"sizeY":24},{"sizeX":24,"x":0,"y":64,"id":400,"sizeY":24},{"sizeX":24,"x":32,"y":0,"id":401,"sizeY":24},{"sizeX":24,"x":64,"y":32,"id":402,"sizeY":24},{"sizeX":24,"x":64,"y":0,"id":403,"sizeY":24},{"sizeX":24,"x":64,"y":64,"id":404,"sizeY":24},{"sizeX":24,"x":32,"y":32,"id":405,"sizeY":24}],"lineID":41,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Infinity","icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary questline with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":41},{"quests":[{"sizeX":24,"x":36,"y":0,"id":439,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":441,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":443,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":445,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":447,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":449,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":564,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":565,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":566,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":567,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":568,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":569,"sizeY":24},{"sizeX":24,"x":72,"y":48,"id":570,"sizeY":24},{"sizeX":24,"x":108,"y":48,"id":571,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":572,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":573,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":574,"sizeY":24},{"sizeX":24,"x":180,"y":96,"id":575,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":678,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":679,"sizeY":24},{"sizeX":24,"x":72,"y":192,"id":680,"sizeY":24},{"sizeX":24,"x":144,"y":192,"id":681,"sizeY":24},{"sizeX":24,"x":180,"y":192,"id":682,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1690,"sizeY":24}],"lineID":42,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Reward Area","icon":{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":44,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Upgrade your loot bags!"}},"order":42}],"questSettings":{"betterquesting":{"livesMax":10,"pack_name":"GT-New-Horizons","home_anchor_y":0,"livesDef":3,"home_anchor_x":0.5,"hardcore":0,"home_image":"dreamcraft:textures/gui/gtnh_title.png","party_enable":1,"pack_version":2075,"editMode":0,"home_offset_x":-128,"home_offset_y":0}}} diff --git a/src/Server/SampleData/DefaultQuests-2.0.7.7-dev-cleaned-minified.json b/src/Server/SampleData/DefaultQuests-2.0.7.7-dev-cleaned-minified.json new file mode 100644 index 0000000..5f17198 --- /dev/null +++ b/src/Server/SampleData/DefaultQuests-2.0.7.7-dev-cleaned-minified.json @@ -0,0 +1 @@ +{"format":"2.0.0","questDatabase":[{"questID":0,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§d§3§2§1§lYour first night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first task will be to find food, and a shelter for the night. The nights will be cruel, as this pack has hardcore darkness. It probably would be a good idea to collect some food now...\n\n§lNote: You don't need to keep this book, you can use tilde to open quests without the book.\n§5§5§o§o§n§m§m§n§n§l§n§e§d§c§b§a§9§8§8§7§6§5§4§r\nWe also maintain a wiki at §e§a§6§4https://gtnh.miraheze.org/wiki/Main_Page §rbe sure to check it out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1,"preRequisites":[2],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lWhere is the flint?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you might have noticed, while collecting gravel, no flint dropped for you. Well, there is a... recipe for that. Look up flint in NEI and craft some!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSticks 'n Stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This book has a built-in reading light, lucky you! Most probably you will read this text while you are waiting for the night to be over. Once it is, go out and collect some gravel and wood. Keep in mind that you need food, so look for Pam's Harvestcraft gardens. (And save some of the vegetables for seeds!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gravel","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":2,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:torch","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":3,"preRequisites":[4],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lStorage for days","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've unlocked 3x3 crafting, it's about time to make some storage for your goods. Take some of your wood, and craft a chest. You will need 4 wood, 4 planks and 1 flint."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:muttoncookedItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":4,"preRequisites":[1204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"questbook:ItemQuestBook","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMain Quests and Secondary Quests","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have made it this far notice the two new quests. See how these two quests look different? The quest with a crown is a main quest and is linked to other main quests by a thick line. You must complete the main quests to unlock the next tier. The other quest is an optional quest, and is not needed to unlock new tiers. However, optional quests often introduce you to useful items or processes.\n\nNot all main quests have a connecting line to guide you through your adventure because of book size. If there is not an obvious linked main quest at any point, try completing some of the other main quests available to you to progress."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":5,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":56,"Head":3,"HeadEXP":0,"BaseAttack":3,"Built":1,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":3,"Broken":0,"Shoddy":0,"RenderHandle":3,"Accessory":3,"MiningSpeed":400,"RenderAccessory":3,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":56},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lTools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've got a shelter, crafting table, and a place to store your items, you should make some tools. (Unless you'd like to continue punching trees with your bare hand...)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood"}},"Damage":4,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":2,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":6,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":8,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":6,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wheat_seeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lYou reap...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You won't always get food rewards from this book, so it might be a good idea to take care of that problem. As you've created a hoe already, go and find some water nearby and make a field. With this modpack you can only make farmland within range of water. Let's trade some sticks for a carrot, so you can start your own farm.\n\nTo get other wheat, use a hoe on grass away from water. You'll get Witchery seeds too, save those for later. Start planting a cotton field, it's a key early game resource."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:stick","Count":8,"Damage":0,"OreDict":"woodStick"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:carrot","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":7,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:carrot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§l...what you sow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you, by chance, did read the previous quest and planted the carrot I gave you, then you're fine. Meanwhile, you should turn some more fruits and vegetables into seeds, and increase the size of your farm to get a steady supply of food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:carrot","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potato","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":8,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:cobblestone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lGet that stone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Look at you, with your shiny flint pickaxe! Time to mine some cobblestone. Yay! (And maybe you can improve this dirt-hut too...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":9,"preRequisites":[8],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFire, fire, Grandpa!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to burn some stuff, isn't it? You can't make charcoal in it, but you sure will find some usage for it soon(tm)."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":10,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lRest in pieces","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's GLOPPing time! Go kill some pigs to gather meat. (And yes, they will drop cooked porkchops. Now isn't that useful...)"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":10,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"Saddle":0,"FallDistance":0,"InLove":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":10,"id":"Pig","Age":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-3998212785627166700,"Health":10,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14197274275598,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":5,"taskID":"bq_standard:hunt","target":"Pig","subtypes":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":11,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSharpness: Over... 5...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's about time to craft something more useful: A sword!\n\nNow that you have a sword, you will get credit for monster kills in the Kill all the things tab. Watch out, monsters in this world will chew you up and spit you out!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":12,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:wool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFluffy and red","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epic quest: Kill some sheep! (And try to get some wool, for a bed, obviously...)"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":8,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.23000000417232513,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"InLove":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":8,"id":"Sheep","Age":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":8005527541666259000,"Health":8,"Color":0,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14240014886935,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"Sheared":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":6,"taskID":"bq_standard:hunt","target":"Sheep","subtypes":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":13,"preRequisites":[12,7,444,10],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSO...TIRED...MUST...SLEEP...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sleepy time, and the end of Tier 0. Congratulations, you've built your first hideout, and you should have a steady supply of food by now. See you again in tier 1!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":14,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§5§lWhat is that...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've seen a lot of trees, but there are a few that look really special. You are sure that these trees are much more than just wood to build your home with or used to get charcoal.\nThe best place to find them is in a Magical Forest, but if you can't find them there you can try a Garden or Cherry Wood Grove.\nIf you have trouble finding them, you can build a special compass in LV to help you locate the biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":15,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"SpiceOfLife:lunchbag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lReady, set, go!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably should have a home by now. A steady supply of food is a fundamental requirement at all times. Take this journal to keep track of the things you've eaten. You will have to travel far in this tier, better be prepared!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"SpiceOfLife:lunchbag","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":16,"preRequisites":[84],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"irontank:ironTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lBetter Tank... Iron Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Storing more than 16 buckets of fluid in one tank? Sure! Just make an iron tank or upgrade the Buildcraft tank.\nDiamond tanks carry up to 64 buckets and obsidian ones are blast proof."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"irontank:ironTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":17,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSand: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In a strange vision you saw a big structure which would allow you to make charcoal. Finally some torches! According to your calculations, you will need a lot of sand for that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":128,"Damage":0,"OreDict":"sand"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:sand","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:leekbaconsoupItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":18,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBasic processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most things are unavailable at the moment, so let's begin with something simple. Take some of your cobblestone and smelt it into regular stone. Since this modpack is evil, you'll need to use wood for that. How much fun is that?!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:stone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:chisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":19,"preRequisites":[18],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lMaceration v0.1 Alpha","isGlobal":0,"lockedProgress":0,"ignoreNBT":1,"autoClaim":0,"isSilent":0,"desc":"This fancy little device works (almost...) like a macerator. Some people say it's even better, since it does not require power, yay! You only need to craft one for this quest, but you probably should make some more if you can..."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":"craftingToolMortar"}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":20,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGravel: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tools will eventually lose durability. You think it would be a good idea to collect more gravel in order to provide yourself with flint for more tools. Try searching near water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gravel","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:gravel","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:baconcheeseburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":21,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:clay_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lClay: The Gathering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While bored, you thought that it might be a good idea to take up pottery. You should go and find some clay, the riverbanks should have some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:clay_ball","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:clay_ball","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32233,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":22,"preRequisites":[23],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:cactus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFinite water!?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finite water is a problem, that's for sure. Last night, you had an idea. If you can drink cacti, you should also be able make water out of 8 cacti and use that for most recipes that require water. How cool is that? So what about another trade? 10 wood for... 3 cacti so you can setup a farm. Deal?\n\nTo automate the farm, place a string next to the cactus and a sand on top of the string. Now when the cactus grows, it will automatically break! You can stack this horizontally and vertically to make a very efficient cactus farm. Use water to redirect the cactus to a convenient pickup location or to above a hopper.\n\nFirst player to make a base running off of only cactus water gets a cape!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":10,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cactus","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":23,"preRequisites":[21,19],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IguanaTweaksTConstruct:clayBucketUnfired","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSomething to carry liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You tried to move water with your bare hands, which didn't work at all. Luckily, you remember how to make a bucket out of clay dust.\n\nPut it in a mortar to get small clay dust which can be crafted to clay dust."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IguanaTweaksTConstruct:clayBucketUnfired","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:peanutbuttercookiesItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:raisincookiesItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":24,"preRequisites":[25,17],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lGetting (char)coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to get yourself some charcoal. For that, we're going to build a coke oven. Good that you just collected a lot of resources! (What a coincidence...)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":26,"Damage":7,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":25,"preRequisites":[26],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:brick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnother brick in the wall","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your vision becomes more clear, you'll need bricks for your first multiblock structure. You think that 104 bricks should be enough. However, the bricks you'll need are somewhat special. Make sure to craft the correct ones!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredCokeOvenBrick","Count":104,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CokeOvenBrick","Count":104,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:baconmushroomburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":26,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lForming press v0.1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you may have noticed, you cannot turn clay into bricks directly. Well, to be fair, it wasn't a good recipe anyway. You'll probably end up with something bread-shaped. So in order to make bricks, you need a form. Get yourself a knife and a blank pattern, and cut a brick sized piece out. It's as easy as that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood","Damage":100}},"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":27,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finally, some power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a coke oven, you can start producing charcoal. The more, the better. Don't worry about the creosote oil; I have another deal for you..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:coal","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:maplecandiedbaconItem","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":28,"preRequisites":[27],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"ExtraUtilities:curtains","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper sky, Iron curtain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your newly acquired fuel source, you are now ready to process more advanced materials than stone or clay; Iron or copper, for example. Just in case you don't know, they spawn in rather large veins. Use the following quests to locate the most important veins."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":29,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8538,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnother fuel source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lignite and regular coal are the fuel sources you'll definitely need. The latter can be turned into coal coke, which is a superior fuel source to smelt your first large batch of ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":8538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":30,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11035,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Copper ingots can be created by smelting copper, chalcopyrite, or malachite ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":11035,"OreDict":"ingotAnyCopper"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:zucchinibreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:footlongItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":31,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11057,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tin ingots can be created by smelting Tin, Cassiterite, or Cassiterite Sand ore. Tin and Cassiterite ores are only found at high altitudes, but Cassiterite Sand ore is plentiful near the surface.\n\n§5§4Tip: If you get lucky and find a high altitude Tin/Cassiterite vein, save one of the Cassiterite ore to find your Mica vein later on using the ore finder wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11057,"OreDict":"ingotTin"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Natura:berryMedley","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":32,"preRequisites":[23],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:paper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBook parts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you found a way to move water around, you had another brilliant idea: Paper! Paper is no longer made with sugarcane, you will now need wood pulp. You will need a lot of wood to craft wood pulp, so better grab your axe and go chop some trees."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2809,"OreDict":"dustWood"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:paper","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:blankPattern","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":33,"preRequisites":[32],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTinker-time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While using your flint tools is fun in terms of killing pigs and cows, they are not very good, and can't be repaired. You discovered how to craft tools that could be repaired and upgraded, but for that you definitely need a more advanced crafting technique."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:ToolStationBlock","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":34,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:GravelOre","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAluminini...um...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"However it is spelled, you will need it. You can find it in chunks of gravel on the surface.\n\nUse as little as possible and save the rest for when you get a macerator in Steam age."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:GravelOre","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32233,"OreDict":""},{"id":"TConstruct:GravelOre","Count":16,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":35,"preRequisites":[31,30],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2300,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking bronze","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've found copper and tin, you should make yourself some bronze. Use your macer... mortar to grind up some copper and tin ingots, and mix them together!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2300,"OreDict":"dustBronze"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11300,"OreDict":"ingotBronze"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:curryItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":36,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lImportant tools","isGlobal":0,"lockedProgress":0,"ignoreNBT":1,"autoClaim":0,"isSilent":0,"desc":"In order to craft even basic machines, you'll need new tools. Most of them can be replaced by machines later. For now, you should become familiar with each of their recipes, as you will need a lot of these tools, starting today.\n\nYour new tools can also be used to make Railcraft water tanks, a very useful multiblock considering the finite water feature.\n\nYou want to make the non-electric versions of the screwdriver and wrench."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":12,"OreDict":"craftingToolHardHammer"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":16,"OreDict":"craftingToolWrench"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":18,"OreDict":"craftingToolFile"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":22,"OreDict":"craftingToolScrewdriver"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":10,"OreDict":"craftingToolSaw"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":20,"OreDict":"craftingToolCrowbar"}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""},{"id":"harvestcraft:zucchinibakeItem","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":37,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGetting iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron can be found in multiple veins. \nMagnetite veins (y 30-180), \nchalcopyrite veins (y 5-60), \nand limonite veins (y 10-40) all contain iron ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":72,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:pumpkin_pie","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":38,"preRequisites":[30,1866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":356,"Head":14,"HeadEXP":0,"BaseAttack":4,"Built":1,"ToolEXP":0,"HarvestLevel":3,"Attack":4,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":356},"display":{"Name":"Bronze Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking better tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With aluminium and copper, you can create a pretty durable material \"Aluminum Brass\", which can be used to cast better tools. These can be used to mine some more advanced ores.\n\nBut first you need a smeltery. See the Multiblock Goals chapter in this book, or find smeltery blocks in a village nearby."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:shovelHead","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":39,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBetter storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While standard chests are good for your basic items and goods, they are not ideal for storing a large amount of ore. You should build yourself some barrels in order to keep things organized."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:fullDrawers1","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":40,"preRequisites":[35,36,1738],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou shall proceed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you've gathered and crafted all materials and tools you need for your basic steam machinery, you may now proceed to the next tier. Keep in mind that you'll need mountains of resources in order to craft even the simplest things, so you probably should stock up on all ores in this tier. But that's up to you."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17300,"OreDict":"plateBronze"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredClayBrick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:brick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:brick_block","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":17032,"OreDict":"plateIron"},{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5121,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":41,"preRequisites":[43],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.OvenGlove","Count":1,"tag":{"Durability":1000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lDon't burn your fingers!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have decided it's time to make some tasty pizza, but your fingers got burned badly. Reading an ancient cookbook you discovered a pair of magical items that would allow you to carry anything hot, even lava in a bucket.\n\n§6§5The gloves have to be placed in the Baubles ring slots of Thaumcraft.\n\n§rFor the protection effect, the hot item has to be in your active slot. I wonder if there is some way to carry more than a few buckets at a time?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":6,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.OvenGlove","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.OvenGlove","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":42,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§r§2§lCow Tipper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you had to kill some pigs and sheep to complete quests. Now it's time to kill some cows and hopefully get some leather. If you are lucky and get a cow trophy you may never need to kill another cow in the future."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":6,"taskID":"bq_standard:hunt","target":"Cow","subtypes":1}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":43,"preRequisites":[42],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Natura:barleyFood","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cotton, cotton and more cotton","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You find out that cotton is very useful, it can be used to make string, wool, and some other useful items too. Make a small cotton plantation to get tons of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:barleyFood","Count":5,"Damage":3,"OreDict":""},{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:barley.seed","Count":10,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":44,"preRequisites":[40],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWelcome to Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome, and well done so far! This tier is all about your first machines, getting more stuff from your ores and making bronze ingots in a more efficient manner.\n\nFor water, check out the Water Siding Tank multiblock in the Multiblock goals tab.\n\nTo connect up your boilers, be sure to provide water from the bottom. Wooden pipes are fine for this. Make sure you never run out of water - adding water to a hot boiler will cause it to explode!\n\nSteam will come out from the sides. Remember, steam is hot! It will destroy wooden pipes. And it can burn you if you walk on bronze pipes full of steam. Cover them with wooden planks or paper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":2,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":8538,"OreDict":""}]}]},{"questID":45,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMultiblock tanks... Railcraft tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"576 buckets of fluid, that should be enough to store all the creosote you have accumulated thus far. If that isn't enough you can make this tank bigger. The smallest tanks are 3x4x3 while the biggest are 9x8x9.\n\nHint: Fluid will auto-output (without any pumps) if you place a valve on the bottom side of the tank. You can color the tank with Buildcraft paintbrushes and the GT spray can.\n\nUse only Buckets to move fluids because cells get destroyed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":30,"Damage":0,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":2,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:machine.beta","Count":1,"Damage":1,"OreDict":""},{"id":"Railcraft:machine.beta","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:oreBerries","Count":5,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":46,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":118,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMore advanced alloys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your smeltery does a great job mixing metals into alloys, but it's not very efficient, and limited in its complexity. You need something new, so why not put your steam to some use? \n\nIt might also come in handy when processing raw rubber. You should keep an eye on recipes to see when machines offer better options to make items...\n\n§4NOTE: Like all steam machines, the output port doubles as a steam outlet when recipes complete. It must not be blocked. Also, steam is hot, remember? Change the output sideby whacking with a wrench. The 3x3 grid will show you which side the output will move to when you whack it."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":118,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":47,"preRequisites":[46],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":119,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: High speed alloys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like most machines, there is a more advanced version of the alloy smelter. Keep in mind that this machine uses a lot of steam, so you better get some more boilers first. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":119,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":48,"preRequisites":[46],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11308,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA very important alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The most important alloy (until you reach a higher tier) is undoubtedly red alloy. Fortunately, you have an alloy smelter, so grab some redstone and combine it with copper to get yourself a handful of that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":11308,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11308,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":49,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe hell is that?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get more machines, you'll need pistons. But not those amateurish ones, you need special ones, and I shall guide you in the making of them."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17308,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:fence","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":7,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":6,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:sticky_piston","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":50,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMacerator v1.0!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally you are able to make a device that will replace your mortar. However, the \"no-durability\" feature of this device comes with a cost: You need 2 diamonds for the grinding heads.\n\nThe macerator will double your ore output. Put ores through it instead of smelting directly.\n\nNOTE: Remember, don't block the output port and don't stand behind it."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":106,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:jellybeansItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":51,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":109,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lExtracting stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you'll need rubber later to make cables from wires, you should get yourself a steam extractor. You can also use this machine to get more dyes from flowers, or process different fruits into juice."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":109,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":52,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§4§3§lA clear view","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you still living in your dirt hut/cobble hovel? How about letting in some sunlight? Grind up some sand and flint and craft some glass dust. Put it in your smeltery and pour it into a casting basin to make clear glass.\n\n§4Hint: In order to use it for recipes, you have to chisel it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2939,"OreDict":"dustQuartzSand"},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":802,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2890,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:GlassBlock","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"chisel:chisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:glass","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":53,"preRequisites":[694],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":112,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHammer time v2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using 6 ingots to craft a hammer seems pretty wasteful, as this tool has durability. How nice would it be to have a machine that does the same but without having durability and using three ingots to make two plates? Guess what, there is one! And you should totally get one."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":112,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_ingot","Count":6,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":54,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lCompressing stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This rather simple device does a very important job: compression. It's main function is to press 9 ingots into a block, but it's also useful for a variety of recipes, for example making firm tofu."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":115,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":55,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":116,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lUpgrade: A better compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam compressor. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":116,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spicymustardporkItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":56,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":113,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Forge hammer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam forge hammer. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":113,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:gummybearsItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":57,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Extractor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam extractor. Uses more steam, but is almost twice as fast. You probably want to craft this, as the extractor does also extract your nerves... (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":110,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:stuffedpepperItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":58,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":107,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Better macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam macerator. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":107,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:softpretzelandmustardItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":59,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.GregTech_FluidDisplay","Count":1,"tag":{"mFluidDisplayAmount":0,"mFluidDisplayHeat":375,"mFluidState":1},"Damage":48,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSteam alternatives","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There is more than one way to get steam for your machines. This completely optional quest shows you some alternative methods for producing steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11300,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":60,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Coal boiler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This is basically just an upgrade to your current coal boiler, however it produces more than twice as much steam. Something you should consider building if you're planning to get some of the upgraded machines."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":101,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:zeppoleItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":61,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAnother use for Java, I mean Lava","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a more durable steel casing, you can use lava to make steam."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":102,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberryjellysandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":62,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe power of the sun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sun has quite a bit of power, so why not use it to produce steam? \n\nFill it with water on the bottom side to produce steam. Unlike the other boilers, this only outputs steam on the output port side.\n\n§4Hint: The solar boiler calcifies and becomes less efficient over time."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":105,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:papayajellysandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":63,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUsing steam to cook things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A rather slow process, but it's more efficient than using a regular furnace."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":103,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:lamingtonItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":64,"preRequisites":[63],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":104,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrade: Better furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An updated version of the steam furnace. Uses more steam, but is almost twice as fast. (This quest is optional)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":104,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fairybreadItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11304,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":65,"preRequisites":[53,44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBlastoff!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's about time to make some steel. Look in the Multiblock Goals quest tab and build a Bricked Blast Furnace. Return here when you made at least 8 steel ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:breadedporkchopItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:iron_ore","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":66,"preRequisites":[67,871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32700,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lTime for some logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good news! You are now able to advance to the next tier! Bad news: You still have to craft a lot of things before you can begin. Fear not mortal, I shall guide you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":1360,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":26308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32012,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:turkeycookedItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":67,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lWired, weird?!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the very basic materials which you should memorize how to craft are wires and cables. Basically you just cut a plate into a wire with your wire cutter. Not very efficient, but there will be a better way later."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":2000,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":7,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":7,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fruitcrumbleItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":68,"preRequisites":[66,67,834,835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lYour first electronic circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steam machines are quite stupid, they just do one thing over and over again. As you advance into the electrical age, you've decided that you want the machines to have more features, like automatic output in order to create some automation. For that, you need electronic circuits."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:icecreamItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":69,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWire-Wrap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing wires without insulation seems to be a bad idea. Now that you have an extractor to extract raw rubber out of sticky resin and an alloy smelter to further process it using sulphur, you should work on getting some insulating rubber sheets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":120,"Damage":2896,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":2022,"OreDict":"dustSulfur"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":11880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:onionsoupItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":70,"preRequisites":[71,72,68],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSteam-a-licious!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You almost made it. One last crafting step is required in order to advance to Tier 2. Keep going!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberrybarItem","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":71,"preRequisites":[67,69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Motors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Motors are little devices that can turn electrical power into rotational energy. Very useful for all kind of machines, and not that difficult to craft. The pattern is always the same, only the materials change with tiers. For now you can use redstone to magnetize your iron rod. Later on you will build an Electromagnetic Polarizer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23354,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32600,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:melonsmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":72,"preRequisites":[73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Rotors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rotors are also crafted using an identical pattern with different materials. A bit annoying to craft at the moment, but you don't need a lot of them anyway."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28057,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21057,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:strawberrysmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":73,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBasic crafting: Casings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All machines need a hull to keep their private parts together. Good news is: They are crafted in the same way for every tier, only the materials change."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:poachedpearItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":74,"preRequisites":[18],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Smeltery","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§6§a§9§8§7§6§5§4§3§2§1§0§3§f§k§f§l§6§lYou are not prepared!!!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time for something really big: A smeltery! There's a lot to craft, so better gather some resources...\n\nThe aluminium oreberries can be planted on cropsticks, and macerated to get small quantites of aluminium for molds if you cannot find aluminium gravel.\n\nNote: The book says a 3x3 base, but you can make a smeltery with a smaller base. Taller/wider smelteries can do more items at one time, conserving fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":123,"Damage":0,"OreDict":"sand"},{"id":"minecraft:gravel","Count":123,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":82,"Damage":2805,"OreDict":"dustClay"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:CraftedSoil","Count":162,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.WoodenBrickForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredSearedBrick","Count":162,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":162,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":28,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":6,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":7,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:LavaTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":8,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:SearedBlock","Count":2,"Damage":1,"OreDict":""},{"id":"TConstruct:CastingChannel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":9,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":2,"Damage":1,"OreDict":""},{"id":"TConstruct:SearedBlock","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":10,"consume":0,"requiredItems":[{"id":"TConstruct:Smeltery","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":11,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:SearedBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":75,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThe water dilemma","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finite water is a problem. But fear not, there are solutions! I shall guide you to a steady supply of water. The Railcraft water siding tanks provides enough water to last the early game.\n\nThe humidity of a biome is very important and will increase the base fill rate.\n\nIf it is raining, the tank will fill much quicker.\n\nAt least one block of the water siding tank must see sky for the maximum output.\n\nThe best part is that you don't need a pump to extract water. Tanks and pipes placed next to it will be autofilled by the water siding tank.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockRubSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemTreetap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemHarz","Count":26,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":52,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:planks","Count":130,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":26,"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":10,"Damage":5101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":76,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to get some steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need steel? Uhh... fine. Let's get busy...\n\nHint: The bricked blast furnace can share walls with other ones, just like most GT multi blocks. How will this affect the air quality though...\n\nIf you are short on Stone Dust, you can get more by macerating cobblestone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:clay_ball","Count":720,"Damage":0,"OreDict":""},{"id":"minecraft:cobblestone","Count":24,"Damage":0,"OreDict":""},{"id":"minecraft:flint","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":28,"Damage":17032,"OreDict":"plateIron"},{"id":"minecraft:furnace","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMachine","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":144,"Damage":2805,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2299,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2939,"OreDict":"dustQuartzSand"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UnfiredClayBrick","Count":432,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:brick","Count":432,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":108,"Damage":2625,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":108,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":32110,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":8,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":32111,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":9,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2934,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":10,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":36,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":11,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":2,"choices":[{"id":"TConstruct:oreBerries","Count":10,"Damage":5,"OreDict":""},{"id":"TConstruct:oreBerries","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:oreBerries","Count":10,"Damage":1,"OreDict":""}]}]},{"questID":77,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§r§6§l§5§l§o§l§r§6§lEBF-Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get alumin(i)um ingots, you need an electric blast furnace. It's another very important step towards victory, so let's get started.\n\nGetting the heating coils might be a little tricky...\n\n§4(You need 2 LV hatches with 4A of 32V total, or 3 LV hatches with MOOOORE power if the multiblock is not fully repaired)\n\n§rA few recipes produce CO2/SO2 as fluid. You can put an output fluid hatch to the top layer of the EBF to collect it otherwise it gets auto voided. It depends on the muffler hatch how much fluid you can recover. Max muffler recovers = 78 percent.\n\nMoron always says - Make Muffler Moint Mup. Or point up, anyways.\n\nIf you want a really fancy EBF, you can add more input fluid hatches and store different fluids in each one.\n\n§4If the pollution gets really bad, check in GT++ Multiblocks for a pollution scrubber."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":11,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":71,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":81,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":91,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":41,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":128,"Damage":1341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":75,"Damage":0,"OreDict":""}]}]},{"questID":78,"preRequisites":[77,81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #1: More heat - Kanthal Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better materials need higher temperatures. You can just exchange the old coils with the new ones. Kanthal coils let you reach 2700 K. You can even reuse the old coils in other machines, how fancy is that!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":79,"preRequisites":[78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #2: Higher tier - Nichrome Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach the 3600k heat capacity of your EBF, so you can process high-tier materials like tungsten, you need nichrome heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":80,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCompress all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Martin's (DreamMasterXXL) favourite machine. Compress ALL the things! With explosives, of course. Boom today!\n\nNote: You might want to put this far from your living quarters, the pollution can get high really fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:cobblestone_compressed","Count":1,"Damage":3,"OreDict":""},{"id":"ExtraUtilities:cobblestone_compressed","Count":1,"Damage":11,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":81,"preRequisites":[940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1002,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAt the end of...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...the universe everything freezes eventually. But waiting for the heat death of the universe might take too long. Therefore we present you the vacuum freezer. It should be good enough to cool your hot stuff. You will need a minimum of 16 frost proof machine casings, the rest depends on your setup.\n\nYou will need to make EV circuits in a cleanroom to build this machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1002,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":21,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:neapolitanicecreamItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":82,"preRequisites":[684,698],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:tile.Charcoal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§7§6§lAn unexpected Bonus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Because we're nice developers, we decided to add a little bonus if you happen to compress charcoal. Not only does it allow you to process more than 16 steel at a time (not in the bricked blast furnace), it also yields 10 times the burn time of a piece of charcoal. So one charcoal for free. This bonus only occurs on the first compression step. (But for fanciness, you should definitely get a quintuple one!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:tile.QuintupleCompressedCharcoal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":10,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":10,"Damage":2,"OreDict":""}]}]},{"questID":83,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHigh speed charcoal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, those coke ovens are nice, but they aren't even remotely fast enough to keep up with a large steam boiler. Luckily, there is an upgrade available! The creosote oil will not be produced, but the process will speed up dramatically. Who needs that nasty yellowish flammable stuff anyway..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:netherbrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HotNetherrackBrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CokeOvenBrick","Count":68,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.InfernalBrick","Count":68,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.AdvancedCokeOvenBrick","Count":136,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":34,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockgem3","Count":10,"Damage":4,"OreDict":""},{"id":"minecraft:coal_block","Count":10,"Damage":0,"OreDict":""},{"id":"Railcraft:cube","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":84,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWhere I can put all the liquids?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your brand new alloy smelter you are able to combine two materials. What happens if you mix some obsidian dust and thickened glass? Obsidian glass, great. Your first tank that you can make would be a Buildcraft tank. This tank can carry up 16 buckets of a single fluid. It's possible to upgrade those tanks so they can hold up to 64 buckets.\nYou can also stack the tanks to increase capacity."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28032,"OreDict":"ringIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":"screwIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:GlassBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2804,"OreDict":"dustObsidian"},{"id":"ExtraUtilities:decorativeBlock2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"ExtraUtilities:decorativeBlock2","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":85,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1003,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Smelt all the things stack wise...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...with this great invention! Uses power to smelt up to 2 stacks of items at once! Can't go any faster! \n\nHint: Parallel smelting depends on coils, consult your local doctor before use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1003,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":12,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":86,"preRequisites":[79],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #3: Upgrade tier 4 - Tungstensteel Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like enderium, enriched naquadah or niobium-titanium you need more than 3600K. Time to upgrade your EBF... again."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":87,"preRequisites":[45,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":64,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSteel multiblock tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to have tanks that can hold double the amount of the iron ones? Go ahead and make a steel tank. All sizes allowed from 3x4x3 to 9x8x9 blocks (X and Z must be the same, and odd). Just like the iron tanks, the Buildcraft paintbrush and GT spray can colorize tanks for identification. Get started on that tank farm full of lube!\n\nHint: Fluid will auto-output (without any pumps) if you place a valve on the bottom side of the tank - valves cannot be on an edge!\n\nOnly use buckets or large fluid cells because 1000L GT cells get destroyed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":30,"Damage":13,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":15,"OreDict":""},{"id":"Railcraft:machine.beta","Count":2,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:machine.beta","Count":1,"Damage":14,"OreDict":""},{"id":"Railcraft:machine.beta","Count":1,"Damage":15,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":88,"preRequisites":[70],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§r§5§lWelcome to Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why, hello there! Seems you've made it into the electrical age. Don't be so quick to throw away your steam machines, you'll probably want to use them until you reach tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:bananasplitItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":89,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1121,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Steam Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to use steam in MV tier then it's time to build a steam turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1121,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":90,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":351,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDamn you, wire cutter!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enough is enough. No more wasting gazillions of ingots just for a couple of wires. Now that you have power, you should go for a wiremill!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":351,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":91,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32630,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first item you'll need a lot of. If you want to pull items out of chests or barrels you'll need one. \n\nHint: Goes pretty well with item pipes or GT machines, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32630,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":92,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fourth item you'll need a lot of, and is also a pain to craft. Arguably the most painful item ever. \n\n§4Hint: Works like a conveyor but can work with selected item slots, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":93,"preRequisites":[88,95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second item you'll need a lot. When you want to get fluid out of tanks you'll need one. \n\nHint: Attach to fluid pipes or GT machines. Adjust the direction and redstone behavior with a screwdriver. Place it on the side facing the tank or machine. When looking at a pipe or machine, you can use the grid to place it on a side already touching another thing. You can use the grid with a screwdriver to adjust a cover on that side as well.\n\nWhen a GT pipe or machine has any cover, including a pump cover, wrenching the machine back into an item keeps the cover on that machine. The cover stays with the machine in the same N S E W direction when it is placed down again. This way you can arrange pump and conveyor covers on a machine outside a tight spot and place it there. To remove covers, use the crowbar.\n\nIt can also be further upgraded into a fluid regulator that allows precise control of fluid transfer speed."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":94,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":301,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectric macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is highly recommended to get one of these, as the efficiency in terms of coal/steam used to macerate something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":301,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":95,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32640,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A piston, but more .. \"electrical\". The third item you are going to craft a lot of in the future."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32640,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":96,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":551,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSaving redstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of using 4 redstone for one magnetic iron rod? Well, good news for you! The polarizer doesn't need redstone, just a little bit of power. You don't need to attach this machine to a permanent power source, it runs fine on battery power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":551,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":97,"preRequisites":[92],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAvengers, assemble!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An absolute must have for fans of the movie. Oh, and to make all the things, of course.\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":98,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":291,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNo more filing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why waste a full ingot to make a rod by using a tool which loses durability and takes even MORE ingots? With this little device, all your rod-needs shall be fulfilled (for now)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":291,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":99,"preRequisites":[97,529],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bzzz... Whoom... (Defunct do not complete)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making some flawless crystals requires a precision laser engraver.\nAt MV level the precision laser engraver becomes more important."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":591,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":100,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":601,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPress all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the basic forming press you can make different food items, glass arrows and some Project Red components. \n\nAt MV/HV stage you can make rotors, various AE components and make copies of your molds and extruder shapes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":101,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMjolnir!!! (electric forge hammer)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not really required, but it is a lot faster than the steam one and it can be automated. If you feel like ore washing is too slow, use this hammer. There are no recipes that require anything more than steam level to hammer something."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":102,"preRequisites":[540],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":251,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCutting things apart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An absolutely mandatory machine to have. It will cut rods into bolts, plates into casings, logs into planks, and all of that will be done with the highest possible efficiency. Totally worth it! \n\n§4Hint: Just add water. Later on lubricant will help it run faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":251,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":103,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGet ready for Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to proceed forward, you need to get aluminium. A lot of it. But for now, eight is enough to unlock this quest. Probably the best source for aluminium is clay or hardened clay from canyons, however you need an MV machine for that. So you need to find an alternative until you have enough dusts for your initial setup. Check back in your Tier 0.5 quests for hints.\nOnce you have the dusts, you will need to do the EBF quest in Multiblock Goals to turn the dusts into ingots.\nAlso check the Armor and Jetpacks tab for new unlocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11019,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":104,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYour magic progression","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are able to produce aluminium, you may dig into magic. If you haven't unlocked basic thaumaturgy, try to find a silverwood and a greatwood sapling."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":105,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":221,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThe missing one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It was once said... But ffs, add a plate bender to the LV tier book ...and then it popped into existence."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":221,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":106,"preRequisites":[91,92,579,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockCartAssembler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, probably not the first, but definitely something big! You will need a cart assembler first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockCartAssembler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":107,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Power Coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar, or lava. But for now you have to use a simple coal engine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":108,"preRequisites":[106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockCargoManager","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated (un-)loading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can fill and empty your cart manually, but it's a lot more convenient to automate item transfer, isn't it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockCargoManager","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":109,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Farming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unfortunately, the basic farmer can't farm anything besides wheat, carrots and potatoes. It's not expensive at all, and probably the cheapest solution to give your automated food production a nice boost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":110,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A basic cart can't hold any items, so you need to attach special chests to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":111,"preRequisites":[106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A simple cart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to create or customize your cart you need a hull to attach your desired upgrades to. The wooden one can be used for really simple applications, but to farm wheat or wood, you need at least an iron one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":38,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":112,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Wood cutter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic wood cutter will break after a while, but you never have to replace it. It can easily be repaired with diamonds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":113,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:pipes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport pipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These pipes are rather simple and won't do anything on their own. But in combination with transfer nodes, you'll soon find out how great they are. Also, given the correct upgrades, they even surpass most other transfer systems."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:pipes","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:pipes","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":114,"preRequisites":[113],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport: Items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to transfer items, you need so called \"nodes\". There are some for pushing items into a pipe system, and later you'll have access to nodes that are able to pull items from attached inventories."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":115,"preRequisites":[113],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic transport: Fluids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like item nodes, liquid nodes transfer... liquids. But probably the best thing: They can all utilize the same transfer pipe!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:extractor_base","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":116,"preRequisites":[70,88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":201,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAlloy smelter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your steam alloy smelter to an LV one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":1,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":201,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:food","Count":2,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":117,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGotta catch 'em all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, you can use wheat/potatoes/carrots to make animals follow you back to your base, but that can be tedious. A golden lasso is a proper solution for animal transportation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":118,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:chandelier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic monster protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spawning monsters in or near your base can be annoying. Especially if you happen to get infernal creepers. Luckily, there is a good way to prevent them from spawning at all."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:chandelier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":119,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA quite different storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular chests can fill up rather quickly if you happen to collect mob drops like swords and/or armor. By using a cabinet, you can store up to 270 items of the same type. Also, it doesn't need a dolly - you can break it normally and it will retain contents. \nPerfect for storing ic2 crops, Forestry saplings, or bees!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:filing","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":120,"preRequisites":[121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lProtect your base; Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One needs proper protection for ones home. So why not get some turrets for safety? At the moment, 2 Turrets are available: \"Potato\" and \"disposable item\". I assume you can guess what they do and how they work..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:sensorTierOneItem","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierOne","Count":3,"Damage":0,"OreDict":""},{"id":"openmodularturrets:chamberTierOne","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":121,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPassive defence","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A more \"passive\" approach to base defence are walls and fences. But seriously, where is the fun in that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:hardWallTierOne","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:fenceTierOne","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":122,"preRequisites":[120],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierWood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lTurret base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Turrets must be placed on top of a turret base. Only the player who initially placed the base can access and configure the turret. So don't worry about people taking your ammunition."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierWood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":123,"preRequisites":[122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:disposeItemTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lWho needs that dirt anyway","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably have a ton of items floating around in your base. So why not use them to kill your enemies?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:disposeItemTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Forestry:canWater","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":124,"preRequisites":[122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:potatoCannonTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDon't play with your food!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use it to kill zombies instead. Does only a little damage, but hey, who cares?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:potatoCannonTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":125,"preRequisites":[124,123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:expanderInvTierOne","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lUpgrading intensifies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your turrets probably need more space to hold more ammunition, so why not get an upgrade for that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:expanderInvTierOne","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BuildCraft|Core:engineBlock","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":126,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lElectrolysing all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collected a lot of dusts since you started with macerating, washing and centrifuging ores? Until now you couldn't separate them. It's time to get all the pure and valuable materials out of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":127,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Project red beginning","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to Project Red!\n\nThis quest will teach you the basics of Projectred and show you how to set up a Ghetto AE system.\n\nThe Ghetto AE system will be really useful for sorting all of your first items\n\nFirst of all there are different types of pipes: \n\nItem Transport pipes are the most basic pipes, classified as Null-logic. They don't do anything besides connect other pipes together.\nItem Transport pipes only have the ability to take items that enter it and pass them along to another connected pipe. They will NOT connect to inventories at all. In a junction where there is more than 1 possible direction, item payloads will travel in a randomly selected direction.\n \nRouted pipes are the most advanced. These pipes 'communicate' with one-another to form pipe networks, in order to allow for incredibly complicated demand driven systems, with absolutely no redstone circuitry required.\n \nPressurized pipes are pipes that use a pressure based routing system where the payload travels to the closest inventory that can accept it. Finding the closest inventory is influenced by both distance and Pressure Resistance Pipes (which, to the path finder, are 1000 blocks long), but the actual path that items take is only influenced by distance.\n\nHowever, in order to control the logic of the routed pipes you will need special circuit chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":128,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockEnderIo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIO, IO, it's off to EnderIO we go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've probably used EnderIO before. It's quite useful for a lot of things. But a lot of stuff has changed here, so let's start from scratch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11365,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11369,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11378,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11369,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11378,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11365,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":129,"preRequisites":[1835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMachine chassis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All EnderIO machines still require the basic chassis, and it's almost the same recipe as before; Except that you need plates instead of ingots. But that shouldn't be a problem at all..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMachinePart","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""},{"id":"EnderIO:itemMachinePart","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":130,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPortable tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Until now, you had to use buildcraft tanks to carry liquids around. Which can be a pain to do. These little tanks from EnderIO are able to push and pull liquids by themselves, as they have a built-in pump which is powered by some magic energy source. How convenient.\n\n§4Just be careful, because it will eat water cells instead of returning them.\n\nPressurized tanks are twice as large."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":131,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockStirlingGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple RF power: Solid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By simply burning coal as fuel, this machine produces RF power. Enough for a basic machine setup. This machine will also accept compressed and multiple-compressed blocks. Want to burn for 250+ days? Also, with double or octadic capacitors the output will increase and efficiency will improve. GT wiring can convert EU to RF, but EnderIO machines can be left safely out in the rain. \n\nMight be useful for Genetics machines since they consume excessive power when attached to GT wiring - Forestry and EnderIO machines work fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockStirlingGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":132,"preRequisites":[130],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCombustionGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple RF power: Liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This generator requires both water as coolant, and a burnable liquid as fuel. The amount of power it produces depends on the type of liquid used."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockCombustionGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":133,"preRequisites":[129,1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThe power of enderman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elevators are nice, but they are limited to vertical teleportation, and their range is also somewhat limited. Travel anchors do not have that limitation. You can teleport from one anchor to any other within range. You can name them and even set them as private. They have a 2s cooldown."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockTravelAnchor","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":134,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemPowerConduit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lConduits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Probably the most awesome way to transport just anything in multiple different ways. Get some conduits of each type. Higher tiers of each exist."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemItemConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemLiquidConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":8,"Damage":0,"OreDict":""},{"id":"EnderIO:itemRedstoneConduit","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemItemConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemLiquidConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemRedstoneConduit","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":135,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemYetaWrench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYet another wrench","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Yeta Wrench is more than just a regular wrench. While holding it, you are able to switch between conduit types, eventually allowing you to remove one specific conduit type from a bundle of many. Ctrl-Mousewheel will switch modes, also Shift-Leftclick allows you to open the configuration interface even if you don't have access to that side of the conduit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemYetaWrench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":136,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemBasicFilterUpgrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lImproving conduits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Conduits on their own are pretty awesome, but you can do better. By using filters and speed upgrades, you gain even more control over what they do and how fast they work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemExtractSpeedUpgrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicFilterUpgrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:itemItemConduit","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":137,"preRequisites":[134],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockPainter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMaking things pretty","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While conduits on their own are already awesome, you can also hide them if you want. There are 2 types of facades, basic and hardened. While basic ones are simple and easy, the reinforced ones are able to withstand explosions and mining with tools. You have to use your Yeta Wrench to remove it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":128,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemConduitFacade","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:itemConduitFacade","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:blockPainter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemConduitFacade","Count":64,"Damage":1,"OreDict":""},{"id":"EnderIO:itemConduitFacade","Count":64,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":138,"preRequisites":[128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemAlloy","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lCome to the dark side...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...we have cookies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemAlloy","Count":32,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:cookie","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":139,"preRequisites":[138,692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Luke, I'm your father","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With that dark steel you got, you may now craft yourself a new set of armor. While pretty basic at first, it can be upgraded later to unlock powerful features."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11364,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":140,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDark steel tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are also tools made of dark steel. Each of them can receive upgrades. Hold shift to get the tooltip which will explain what you need in order to upgrade them.\n\nThese tools can also be enchanted like vanilla tools.\n\nThe Ender will increase wither skull and ender pearl drops. It can be upgraded to teleport the player.\n\nDark shears can be empowered, and then will shear a large area, including leaves. Handy for clearing away that giant redwood! Maybe you will find other uses for it.\n\nThe axe, once empowered, can be recharged wirelessly while in farming station.\n\nThe pick? Well, it can mine cobalt I guess if you haven't gotten a tool capable of that yet. You could keep it around to use for base decorations if your normal pick is too fast, I supose."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_axe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemAlloy","Count":4,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":141,"preRequisites":[989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMaterial","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lVibrant Crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vibrant capacitor banks also need this magical crystal. Armor and tools can be upgraded too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":8,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:exp_bottle_consistent","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":142,"preRequisites":[132],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockVat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBrewing liquids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine is not only capable of brewing more powerful burnable liquids, it can also be used to brew nutrient distillation, which might have further usage soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockVat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":143,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockAlloySmelter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSmelting all-joy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This combination smelter allows you to produce fused quartz and quite clear glass of all variants."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockAlloySmelter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":144,"preRequisites":[146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCrafter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAutomated crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You know, yet another automated crafting solution...\nThe left grid sets the recipe. The center box on the left will show the output. The right item grid is where you place resources. The output products will show up on the right center box.\nThis machine supports automation.\nYou can upgrade the machine with a Double-Layer or Octadic capacitor to increase power usage and speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockCrafter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":145,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSagMill","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOre processing kind of...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The endless ware between macerators and SAG mills rages on eternal, so why does it matter which one you choose?\n\nHV Macerators are still required for the final byproducts on many ore chains, but a SAG mill still shines through with\nupgraded grinding heads! SAG mills are perfect machine for getting the most from your ores without using bees and crops.\nYou can get bonus outputs with tungsten grinding heads, but that doesn't mean you can dupe materials (like ingots) with it.\n\nPlus for many of them you'll get the final output directly without any need for further processing. Handy for processing Redstone to get Chrome!\n\nIt's great for lead, copper, tin, silver, nickel, redstone, ruby, lapis, certus quartz, and malachite ores. Other ores will give you better outputs as well if you use a good enough head.\n\nEven coal, charcoal,bones, wheat, ender pearls, and charcoal non-ores will give bonus outputs.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSagMill","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":146,"preRequisites":[166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSliceAndSplice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTorture device","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When the subjects don't want to cooperate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSliceAndSplice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":147,"preRequisites":[856],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:RocketFuelMixA","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRocket fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rocket fuel are used in the future for galacticraft rockets. It does generate a lot of Power in the rocket Engine. Use your centrifuge to make some. Will generate 30720000 eu per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30654,"OreDict":""},{"id":"miscutils:NitrogenTetroxide","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:RocketFuelMixA","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":148,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketNutrient_distillation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTasty...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yeah, that is... Well.. You are sure it will have an usage for something... some day... eventually... maybe..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketNutrient_distillation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":149,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketFire_water","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFirewater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not exactly what you think it is. Better to not consume that liquid. When used in the Combustion Generator, it will produce 80 RF/t."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketFire_water","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":150,"preRequisites":[142],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:bucketHootch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHootch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The lowest tier of renewable, burnable fluid. Generates 60 RF/t, but can be automated for \"green\" infinite power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:bucketHootch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":151,"preRequisites":[148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockKillerJoe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAutomated mob-farming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course... zombies love that... disgusting liquid. While using a small amount per hit, he will attack everything that is within his range. That also includes players, so be careful. Rumors are there might be a weapon that will never break when used in this \"machine\"..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockKillerJoe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":152,"preRequisites":[151],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:ethericsword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAnd it will never break","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using an etheric sword, your killer joe will run.. forever. Proper enchantments are a requirement for it to be efficient, but that shouldn't be a problem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:ethericsword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":153,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Translocator:translocator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple item transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Translocators can only transfer items over a distance of 1 block. But they're quite cheap, and a good solution to build compact machine setups. They include a free simple item filter which can be enabled on the input or output side. And they support multiple inputs and outputs! Glowstone will make it transfer faster - try investigating other upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Translocator:translocator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Translocator:diamondNugget","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":154,"preRequisites":[153],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Translocator:translocator","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSimple fluid transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like the item translocators, the fluid ones transfer... fluids. Same restrictions apply, 1 block distance. These can also be upgraded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Translocator:translocator","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Translocator:diamondNugget","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":155,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierTwo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHarder, stronger, faster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No, actually not faster. But more durable than tier 1."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierTwo","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierTwo","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":156,"preRequisites":[155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierTwo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lProtect your base: Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slightly better protection. Now with a real gun. No more wasting food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierTwo","Count":1,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierTwo","Count":1,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierTwoItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":157,"preRequisites":[156],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierOneBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTier 2 turret base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nothing to see here. Proceed..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierOneBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":158,"preRequisites":[157],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:machineGunTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSometimes, a bullet will do","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They hit hard. You have been warned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:machineGunTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"openmodularturrets:bulletCraftable","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":159,"preRequisites":[157],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:incendiaryTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBurn them. Burn them all!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hmmm, crispy bacon. What would happen if you enable neutral mobs as targeting...?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:incendiaryTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"openmodularturrets:blazingClayCraftable","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":160,"preRequisites":[753,750,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTier 4§7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first hull as usual..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":161,"preRequisites":[241,240,239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paying the highest price","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When regular magic just isn't enough, you need something... stronger. Which is paid with blood. Your blood, and maybe others.\n\nIn tier 1 you only need to place the blood altar. Plan for the configuration to grow in size"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":162,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimensional goal: Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HV is the age where you should focus on reaching the Moon, as soon as possible. You will need titanium in large quantities. \n\n§4Hint: more info will be found in the Space Race quest tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":8,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":22,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":163,"preRequisites":[169],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockInventoryPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lI see everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The inventory panel is an alternative to your (hopefully?) existing project red storage system. Just like project red, you have to connect every chest/barrel with an item conduit. In addition to that, you also have to install a \"remote awareness\" upgrade into every conduit side you want the panel to see."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockInventoryPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemFunctionUpgrade","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:itemFunctionUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"EnderIO:itemItemConduit","Count":16,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":4,"Damage":4,"OreDict":""},{"id":"EnderIO:itemFunctionUpgrade","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":164,"preRequisites":[177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:weakBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Portable battery...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not exactly a \"battery\", more a portable access point for your life points, aka blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":165,"preRequisites":[146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSoulBinder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSoul eater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wouldn't it be great to actually make use of the intelligence or abilities a certain creature has? For example: enderman teleportation or brain capacity of a zombie for simple logic? (He doesn't use it anyway...) With this machine, you are able to bind a captured soul to an item, which can then be used in machines to improve their functionality."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSoulBinder","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":166,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11379,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lA new alloy Soularium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are some... \"Darker\" uses for machines. Stuff that might be considered \"magic\". Anyway, for that you need a new alloy: Soularium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11379,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":167,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockExperienceObelisk","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lExperience storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dying is painful, isn't it? As your precious experience is lost. But fear not, there is a solution! By using an experience obelisk, you are now able to store all your collected experience in a safe location."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockExperienceObelisk","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":168,"preRequisites":[165],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lA soul vessel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new machine, you need something to actually capture souls from monsters. The soul vials are reusable vessels. Just right-click any living entity to steal its soul."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemSoulVessel","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"EnderIO:itemSoulVessel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.6000000238418579,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.7999999523162842,"HungerOverhaulCheck":5},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27127316897707,"UUIDLeast":182634832621765120,"Amount":0.012908903102869372,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":1.8,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":26,"id":"Thaumcraft.TaintedCreeper","Fuse":30,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-1910302092572580900,"Health":26,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[10,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27127316341783,"CustomName":"\"\"","Pos":[222,4,1471],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"ExplosionRadius":3,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.5,"ezModsApp":1,"smi":1,"WITCInitialHeight":0.800000011920929,"HungerOverhaulCheck":4},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":6,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.4,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27178571439803,"UUIDLeast":-4879626912252909000,"Amount":-0.03553818567513433,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":2.7,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":6,"id":"Thaumcraft.TaintedChicken","Motion":[0,0,0],"Leashed":0,"UUIDLeast":2120839428921693200,"Health":6,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[167,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27178571304768,"CustomName":"\"\"","Pos":[223,4,1473],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.8999999761581421,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.2999999523162842,"HungerOverhaulCheck":8},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":36,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.27,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27170415539521,"UUIDLeast":55055077136148616,"Amount":0.05541744393087603,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":5.4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":36,"id":"Thaumcraft.TaintedCow","Motion":[0,0,0],"Leashed":0,"UUIDLeast":7340828040503510000,"Health":36,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[-124,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27170415457974,"CustomName":"\"\"","Pos":[220,4,1475],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""},{"id":"EnderIO:itemSoulVessel","Count":1,"tag":{"ForgeData":{"WITCInitialWidth":0.6000000238418579,"ezModsApp":1,"smi":1,"WITCInitialHeight":1.7999999523162842},"Attributes":[{"Base":-2,"Modifiers":[{"UUIDMost":2189974539282499600,"UUIDLeast":-6477178668949725000,"Amount":1,"Operation":0,"Name":"UNLOCKED"}],"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.3,"Name":"generic.movementSpeed"},{"Base":16,"Modifiers":[{"UUIDMost":27159316027577,"UUIDLeast":3351821129110176000,"Amount":-0.02643265509317006,"Operation":1,"Name":"Random spawn bonus"}],"Name":"generic.followRange"},{"Base":3.6,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":26,"id":"Thaumcraft.TaintedVillager","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5486064703714104000,"Health":26,"Air":300,"OnGround":1,"Dimension":0,"Rotation":[153,-23],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27159315945153,"CustomName":"\"\"","Pos":[221,4,1475],"Fire":-1,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":169,"preRequisites":[165,141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockPoweredSpawner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThe creation of life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By utilizing large amounts of energy, you're able to re-activate those broken spawners you may have found in the past. If you haven't, you should get one of them now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBrokenSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockPoweredSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":170,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSpecific enchantments","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanting books is, just as it is for items, random. And that is annoying if you need a specific enchantment on your tool or armor. Now there is a way to actually select enchantments, for a price, obviously."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":171,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierThree","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAlmost like steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next-gen protection against nasty zombies, creepers and other \"stuff\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierThree","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierThree","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":172,"preRequisites":[171],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierThree","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lProtect your base: Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we're talking: Grenades! The next in big badda boom hardware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierThree","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierThree","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierThreeItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":173,"preRequisites":[172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierTwoBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTier 3 base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More storage, more power, and a lot more slots for possible upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierTwoBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":174,"preRequisites":[173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:relativisticTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lThis is relatively useful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For... some things... maybe... At least it is fun to watch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:relativisticTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":175,"preRequisites":[173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:grenadeTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFire in the hole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah, there is nothing like an explosion and the certainty that your enemies have been blasted into tiny pieces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:grenadeTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"openmodularturrets:grenadeCraftable","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":176,"preRequisites":[160,860,1014,1612,1231,1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main goal here is to get a tier 2 rocket, and reach Mars. You also might want to rethink your power setup, as more and more machines will be upgraded. This quest set will teach you about a couple of options you have regarding power production.\n\nMultiblock goals includes quests for the large gas turbine, large combustion engine, and multiblock ore drill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":177,"preRequisites":[161],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:sacrificialKnife","Count":1,"tag":{"sacrifice":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"*Poke*","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get some blood. You will have to start with your own..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sacrificialKnife","Count":1,"tag":{"sacrifice":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":178,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It's storage time!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've reached the High Voltage age, you might consider starting to work on your applied energistics system. It might be small, and it might be tricky to power it at first, but it's really worth the effort. You should start by getting all 4 different inscriber patterns."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":13,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":14,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":19,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":179,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find them all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a lot of asteroids on the surface, but there are more underground. In order to find those, you need a compass. The compass will only tell you the chunk has an asteroid in it, with your ancient ore finder wand, you can get a better idea where in the chunk the meteor is hiding.\n\nFor more details on AE2, check out https://tinyurl.com/GTNH-AE2"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":180,"preRequisites":[1316,1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.16k","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Middle tier storage cell, which can contain 16,384 bytes of storage. 16,384 bytes of storage can hold 2,032 stacks of a single item, or 1,040 stacks, while holding 63 different items. The 16k storage cell uses 128 bytes of data to store a single type. When placed inside a drive or chest will consume 1.5 ae/t. Must be in an ME Drive or ME chest to be usable. You can remove the 16k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.16k","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":181,"preRequisites":[1290],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluix crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not \"flux\"! Even if the color is the same. You need to add redstone and netherquartz to a charged certus crystal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":64,"Damage":0,"OreDict":"dustRedstone"},{"id":"minecraft:quartz","Count":64,"Damage":0,"OreDict":"crystalNetherQuartz"},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":128,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":182,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockMolecularAssembler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Applied crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting can be a pain. So why not automate it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockMolecularAssembler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""},{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":52,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":183,"preRequisites":[178],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting your first circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making the circuits is quite different from what you're used to, so it's advised to check NEI for the new recipes. Get 8 of each circuit for now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":23,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":24,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":184,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To have access to your applied energistics network from your entire base, you'll need cables. A lot of them. For now, the basic ones will do, but eventually, you'll end up using dense cables and p2p channels. Glass and Covered cables are functionally identical, just different in looks. Each can carry 8 channels. Quartz fibers don't carry channels but can carry energy. This is useful for providing power from your main network to independant subnetworks.\n\nYou can also color your cables - cables with different colors will not connect, so those can be used to expand network capacity by running parallel cables. Only fluix colored cables connect to all other colors. Later it will probably be more efficient to use P2P channels to jam a bunch of channels into 1.\n\nAnchors are like covers, keeping things from connecting when you don't want them to."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":64,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":24,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":185,"preRequisites":[1290],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":380,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Terminals everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME Terminal is a HID which gives you access to an ME network's networked storage.\n\nIt has the ability to sort and search, as well as filter by using a view cell. It requires a channel to function.\n\nCan be upgraded into an ME crafting terminal.\n\nThe ME crafting terminal is the upgraded version of the ME terminal which has an integrated crafting grid with access to an ME network's networked storage.\n\nLike the ME terminal it also requires a channel to function.\n\nGives remote access to all interface pattern slots on your network separated by which type of machine they are on. It will show the type of machine in the terminal, however you can name the ME interface in the inscriber or an anvil to alter the name displayed in the ME interface terminal.\n\nCombined with the fact that you can toggle if the interface shows up at all this gets you control over your interface terminal's display."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":380,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":360,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":480,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":360,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":480,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":186,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDimensional goal: Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mars has many new ores you need to find like tungsten, uranium and plutonium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.mars","Count":8,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":187,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§k§l§r§a§lDimensional goal: Phobos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A smaller goal, as the main goal is Mars. But you'll find different ores on this moon also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":1,"OreDict":""},{"id":"GalaxySpace:phobosblocks","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":188,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDimensional goal: Deimos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A smaller goal, as the main goal is Mars. But you'll find different ores on this moon also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:deimosblocks","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:deimosblocks","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":189,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lHEV Mark III protective system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some things are dirty, and some things are even dangerous. You'll play with nasty stuff here, so better prepare yourself for the worst.\n\nSome items will give you a Radiation debuff without protection. How fast you get it depends on the item. Some items will give you enormous amounts of time with it, which will kill you because there is no way to get rid of it. \n\nOther items will give you a general sickness with many debuffs, but not Radiation. That can be removed the normal ways, Milk, Terrawart, Aqua bees, etc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemArmorRubBoots","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":190,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lAppropriate power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Whether you used magic, steam, oil or biogas for power until now, you will run into problems as you advance to higher tiers. So you need to upgrade your power grid, at least for your blast furnaces. So let's start with something more powerful: A nuclear reactor!\n\n§4Hint:\nThe multiplier is set to 10x in this pack. That means your nuclear reactor is 10 times more efficient.\n\nFor some ideas on nuke setups, check out https://tinyurl.com/GTNH-Nukes"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},{"id":"IC2:itemFuelRod","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":191,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumSimple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 2 fuel: Uranium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just \"regular\" uranium fuel, nothing special about it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumSimple","Count":2,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":192,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXSimple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 3 fuel: MOX","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highly radioactive, the most powerful fuel rod you can get. Burns twice as fast as uranium, but produces massive amounts of power. Rumors are, that peaks up to 11k EU/t are possible..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXSimple","Count":2,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":193,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 1 fuel: Thorium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The weakest of all rods, but very easy to produce, very easy to keep cool and runs twice as long as uranium. A perfect \"fission and forget\" power source.\n\nHint:\nAfter they are used up you can recycle them to get Lutetium which is used for make americium in the fusion reactor.\nAmericium is needed for top tier materials later, so start stockpiling now. Plus, you get power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Thoriumcell","Count":4,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":194,"preRequisites":[195],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMonitoring your reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's important to monitor your reactor (Or just fancy to have a big screen somewhere...). So now that you've gained knowledge about the available fuel rods, you can start to build yourself a power plant. Here is something to help you out.\n\nUse the sensor kit on the block you want to monitor, then put the sensor card in the display panel. Next select which lines of information you want to display."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},{"id":"IC2NuclearControl:blockNuclearControlMain","Count":5,"Damage":5,"OreDict":""},{"id":"IC2NuclearControl:ItemRemoteSensorKit","Count":1,"Damage":0,"OreDict":""},{"id":"IC2NuclearControl:ItemUpgrade","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":195,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockReactorChamber","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lIncreasing the capacity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To unleash the full potential of your reactor, you have to attach six reactor chambers to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockReactorChamber","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":196,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMove the heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reactors heat up, well the rods do, so you need to \"move the heat away\" to somewhere else. You should get one of each, and try to figure out what each individual heat exchanger does, in order to figure out a good setup."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:reactorHeatSwitch","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchCore","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchSpread","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"tag":{},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:reactorHeatSwitch","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchCore","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchSpread","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorHeatSwitchDiamond","Count":2,"tag":{},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":197,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorVentDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lVenting heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can't just move the heat around, eventually you need to get rid of it. Just like the exchangers, there are different types of vents, each of them has a certain usage you'll need to find out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:reactorVent","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentCore","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentGold","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentDiamond","Count":1,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentSpread","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:reactorVent","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentCore","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentGold","Count":2,"tag":{},"Damage":1,"OreDict":""},{"id":"IC2:reactorVentSpread","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":198,"preRequisites":[192],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXDual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":199,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuit exhaling dusts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The QED is used for stuff like the ender quarry (yay!) and advanced mob-protection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:endConstructor","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:endConstructor","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":200,"preRequisites":[199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:magnumTorch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lAdvanced mob-protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like the chandelier, the magnum torch prevents monsters from spawning. However, its range is quite big, so a single one might be enough for your entire base.\n\n§4Don't forget, monsters can still follow you home!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:magnumTorch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":201,"preRequisites":[199,1412,1680,1213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAutomated mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The QED enables you to assemble the most convenient device for mining: The ender quarry.\n\nAs 0lafe says, \"This small black box is life-changing\" and \"Sympathy for the amount of dense obsidian plates you need.\"\n\nGuess you better get compressing!\n\n§4NOTE: It's best to place your quarry and markers on orevein boundaries. This way you start getting ores right away, especially from planets and the deep dark dimension."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":202,"preRequisites":[201],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If an ender quarry won't satisfy your needs for MOOORE. A speed upgrade is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":203,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":460,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bundled AE channels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"P2P tunnels. You will need a lot of them! These are fancy fluid/item pipes that will transport fluids or items from one \"point\" to \"another\". Items transportered will not show up on crafting terminals etc, they just use the network as transport.\n\nThey can also pack up to 32 channels into 1 bundle and transport those to the destination p2p bus. Each P2P tunnel requires 1 free channel. The network carrying the P2P must be separate from the network with the channels. These P2P connections cannot be nested, but one transport cable can carry multiple P2P connections.\n\nA nice online guide can be found at https://tinyurl.com/GTNH-AE2 under P2P tunnels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":2,"Damage":460,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":204,"preRequisites":[186,205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Load and unload the rocket","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What use has an automated rocket, if you can't load and unload it with automation?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.cargo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":205,"preRequisites":[186,1449],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cargo rocket: For the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No need to fly to distant planets on your own, just to grab ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":3,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":206,"preRequisites":[199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockMolecularTransformer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTurning A into B with C","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Molecular transforming at its finest! The most important recipe here is sunnarium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockMolecularTransformer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":207,"preRequisites":[208],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierThreeBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTurret base tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Even more range, power and upgrade slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierThreeBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":208,"preRequisites":[211],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierFour","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lProtect your base: Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The small parts for the powerful turrets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierFour","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierFour","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierFourItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":209,"preRequisites":[207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:teleporterTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMake love, not war","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For those who don't want to kill things. Just teleport them away, however this takes a large amount of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:teleporterTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":210,"preRequisites":[207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:rocketTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWhy grenades...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when you can use rockets? Yes, rockets! They search and destroy, and go off with a huge boom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:rocketTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"openmodularturrets:rocketCraftable","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":211,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierFour","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lTier 4 fence and walls","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another upgrade for your walls. One more to go!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierFour","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierFour","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":212,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MoonStoneDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPulverize the Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Literally. You can grind the rock of most planets, to get a chance for higher tier metal dusts. Does consume quite a bit of power, but can really help you out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MoonStoneDust","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2081,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":213,"preRequisites":[176,861,1251,2296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§b§l§1§2§3§4§5§4§6§7§8§9§a§b§c§d§e§c§b§lTier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"IV-Level. You will need tungstensteel for machines. Suggested planets and moons to visit: Mars, Phobos, Deimos. \n\nMake sure to get a set of Tungstensteel coils for your EBF.\n\nYou should've learned \"how to gregtech\" by now, if not go clean up the machine craters in your base...\n\nGT++ multiblock processing machines unlock at this tier. Make sure you have an Alloy Blast Smelter from EV tier ready to go."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":214,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:end_portal_frame","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lThis is the end.... ?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Basically the \"end\" of the conventional tiered game play. However! This is just the start of your journey, as you'll have access to even more powerful and awesome stuff. You have proven yourself worthy, and mastered the challenges up to this Tier. Congratulations!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":2,"OreDict":""},{"id":"GalacticraftMars:tile.asteroidsBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":215,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOn your way to Asteriods and other Tier 3 DIMs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier is defined as \"Asteroids-Dimension\" and \"8192 EU/t machines\". The machines now reached their full potential, and some asteroids may contain precious ores to improve your power generation."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Reach asteroid belt","range":-1,"index":0,"dimension":30,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.asteroidsBlock","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":216,"preRequisites":[1665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1191,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l\"Clean\" energy..?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a reliable and powerful source of energy for your base. And why waste your time with a 2k generator? Go for a 8k one! \n\n§4Hint: It's probably a good idea to wear your hazmat suit before claiming your reward..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1191,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":23326,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":217,"preRequisites":[214,218],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"utilityworlds:uw_portal_void","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"§b§lFinal choice: Personal Dimension","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of mobs in your base? Want to build somewhere... different? Probably in a personal dimension? Then this is your chance. But choose wisely; You can only pick one option."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"utilityworlds:uw_portal_void","Count":1,"Damage":0,"OreDict":""},{"id":"utilityworlds:uw_portal_garden","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":218,"preRequisites":[214,217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"§b§lFinal choice: Loot","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Don't need a personal dimension, eh? Well, then you'll probably be happy with some extra loot. Choose wisely; You can only pick one."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":10,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":10,"Damage":8,"OreDict":""},{"id":"Thaumcraft:blockLootCrate","Count":10,"Damage":2,"OreDict":""},{"id":"DraconicEvolution:dezilsMarshmallow","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":219,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:fenceTierFive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lAlmost unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Probably not required any more, but you made so many walls. So why not to get the best ones?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:fenceTierFive","Count":4,"Damage":0,"OreDict":""},{"id":"openmodularturrets:hardWallTierFive","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":220,"preRequisites":[219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:chamberTierFive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lProtect your base: Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tough materials, for tough weapons. Railguns, and lasers, and... stuff. I assume you want a lot of those soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:chamberTierFive","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:barrelTierFive","Count":2,"Damage":0,"OreDict":""},{"id":"openmodularturrets:sensorTierFiveItem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":221,"preRequisites":[220],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:baseTierFourBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lTurret base Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last one, I promise. Used for the most powerful turrets available. You wonder if they might help you take out some more... \"Dangerous\" enemies?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:baseTierFourBlock","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":222,"preRequisites":[221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:laserTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPewPew!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Requires no ammo, but still does a ton of damage. All you need to do is feed it power, a lot of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:laserTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":223,"preRequisites":[221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"openmodularturrets:railGunTurret","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lRailguns, what else","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Massive power, and a wonderful sound when they fire. I recommend to use upgrades to increase range and damage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"openmodularturrets:railGunTurret","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"openmodularturrets:ferroSlug","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":224,"preRequisites":[14],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Strange things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You came across those weird trees, they seem to be more than just plants. You felt something... different. There is something going on, but you are not sure what exactly yet. But you're sure you'll find out very soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":225,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Searching for answers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Last night you had a dream. A dimension, so strange and different, exactly like the sapling you found. You decided to go there and look for answers.\n\nFirst you need a portal crystal to open it up. And no, a diamond is not enough."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Twilight arrival","range":-1,"index":1,"dimension":7,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":226,"preRequisites":[1096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemThaumometer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See the unseen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Everything is made of 6 primal aspects. Those aspects can be combined to form compound aspects, but in the end, there are only 6. Like the infused shards you found. You noticed that those shards start to vibrate when you bring them next to something that is made of the respective aspect. Maybe you can create a device to actually \"scan\" items, and reveal their compounds? This could be very useful later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemThaumometer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":227,"preRequisites":[1778],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockTable","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tables to work on","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Indeed, the idea with the bookshelf did work. Now you need a nice table to do some research on, and probably something to infuse items with vis while crafting. Maybe you should try to smite a table with your wand."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:blockTable","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":228,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:waterSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloody water","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By sacrificing some blood to the water spirits, they'll grant you some of their precious element."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:waterSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":229,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":541,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This whole place here is filled with magic. No matter where you look at, it's just everywhere. You wonder what happens to regular stone if it's exposed to large amounts of magic for such a long time. Maybe it's time to go mining?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":543,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":542,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":545,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":541,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":544,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":540,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":230,"preRequisites":[225,224],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are sure that this place will give you all the answers you are looking for! To continue, you need something to handle the magic energy called \"vis\". Guess it's time to craft your first wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:oakStick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TwilightForest:item.nagaScale","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"ordo":0,"perditio":0,"aer":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":98,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":231,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemThaumonomicon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tome of knowledge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All the things you've discovered so far, you need to write them down. But you are lazy, and you have a wand, so why not try a magical way to \"write down\" your research? You wonder if you could enchant a book with your wand, so that it will keep track of your progress... You should try that on a bookshelf!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemThaumonomicon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":232,"preRequisites":[226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Improving your wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wand does a great job in storing and releasing vis as you please. However, those iron caps are... Weak. If you don't pay enough attention to it, it might hurt the node. Maybe you should try to improve it with caps made out of a more valuable material. Like.. gold, perhaps?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":233,"preRequisites":[229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you found all six primal types of infused stone, you need to break those up in order to get the shards. The easiest way to do that, is to throw these stones in your Forge Hammer. Later when you have a Sifter, you can sift purified ores for more shards. An autoclave can turn shard dust into a shard. Maybe there is a magical way to do the same thing?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":16,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemShard","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":234,"preRequisites":[232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A \"greater\" wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While doing all your research and mining of these infused stones, you had an idea how to actually use the wood of a Greatwood tree to make a new wand. Actually, it turned out to be pretty simple, but you lacked one important thing back then: vis!. The vis makes sure the wood doesn't lose it's magical conductivity while forming the rod."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":235,"preRequisites":[232,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unfortunately, your aluminium screws don't work with the greatwood rod. Somehow, the wood seems to repel the material. Luckily, you already have a blast furnace, so you can get a better material than aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":236,"preRequisites":[232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LichBone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A more powerful \"scale\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The naga scales are weak, they can only hold a very limited amount of vis. You need a better, more powerful component to store vis in your wand. You've heard rumors about an evil wizard in the Twilight Forest. Maybe he has... something... that can be used?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LichBone","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":237,"preRequisites":[798],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Stores 50 vis\" wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now combine your new wand, and be more powerful than before! You have a feeling, that this new wand will come in handy very soon(tm).\nMake sure you use the NEI 'U' command on the gold caps to find the correct GT:NH recipe for the wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"cap":"gold","rod":"greatwood","ordo":0,"perditio":0,"aer":0},"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":4,"Damage":95,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":238,"preRequisites":[239,237,240],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fuuuuuu...(sion)!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your arcane table does a great job with infusing primal vis into items while crafting. However, you feel that there must be more. What if you could infuse items with all kinds of magic aspects? The possibilities are endless..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockStoneDevice","Count":6,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":239,"preRequisites":[251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Yet another brick in the wall...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A magical one this time. You are on your way to infusion, and you need 8 of those in total."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":240,"preRequisites":[255,256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia cooking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get essentia, you need to dissolve items. Obviously, you only want to dissolve those items you don't really need, and only those with essentia you need to craft things.\n\nMake sure you keep your furnace as empty as possible. If it fills up with essentia, it can cause a large TPS drop."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockJar","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":241,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not for soup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At least not for edible soup, but for essentia slurry. Get yourself a Cauldron and give it a solid whack with your wand. Place the netherrack under the crucible and set it on fire with the flint and steel. Now you need to fill it with water (works with pipes too = auto refill)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":242,"preRequisites":[233,1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Balanced shards sdrahs decnalaB","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining all six primal aspects in a crucible, you are able to make balanced shards. They can be ground up into \"Salis Mundus\", an absolutely crucial thing to have, trust me!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":10,"Damage":6,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":10,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":243,"preRequisites":[242],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crystal clusters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You, as a Thaumaturge, like shiny things. And what could be more shiny than a cluster made of those shards? You totally should get one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":244,"preRequisites":[245,246,247,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"ignis"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"ignis"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":245,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockAiry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The choice...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By now, you should've collected a few (or a lot) of locations for aura nodes to get vis from. You might also have noticed, that you probably are low on a certain aspect, like ordo or ignis. Well, good news. In exchange for some crystal clusters, I will give you one of my old nodes. They are all pale, but they will help you out. You may only choose one, so think twice before you make your decision."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemShard","Count":6,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":246,"preRequisites":[245,244,247,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"terra"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Terra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"terra"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":247,"preRequisites":[245,244,246,248,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"perditio"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Perditio","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"perditio"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":248,"preRequisites":[245,244,246,247,249,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"ordo"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Ordo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"ordo"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":249,"preRequisites":[245,244,246,247,248,250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"aqua"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Aqua","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"aqua"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":250,"preRequisites":[245,244,246,247,248,249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"Aspects":[{"amount":30,"key":"aer"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"XOR","name":"The choice: Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In exchange for 6 clusters, I will give you this node. May it serve you well. Oh, don't place it too close to another node, or it might start to drain vis..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["Second hand. But who cares?"],"Name":"Used Auranode"},"Aspects":[{"amount":30,"key":"aer"}],"nodemod":1,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":251,"preRequisites":[243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not just for decoration","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, they look pretty, but they serve a much more important purpose: Channeling vast amounts of vis and essentia. This might be useful soon(tm)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":92,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":252,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:cake","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"This is the end...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...of your apprenticeship. You have mastered all 6 primal aspects, you mastered the weak and strong infusion of essentia and vis, and you've already made your adept wand. But be warned, young one. The further you progress, the more darkness, and evil will tempt you to follow the forbidden ways of magic. I have seen things... weather changing, random teleportation, or even a Wither tearing its way into our universe right next to someone. Be careful, my friend..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":253,"preRequisites":[254,240],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockBoiler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Turning liquids into essentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What a simple idea. So many people wasted tons of buckets just to get aqua from water, or sano from milk. Why didn't they just dissolve the liquid itself? Stupid ones..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockBoiler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":254,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia filtering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This nifty little device will filter out essentia. Once it has received a single unit of any type, it will only accept this type until it is completely empty. How convenient. You can place more than one on top of an alchemical furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":255,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An alternative to torches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And lava! It's an excellent magical heat source."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":256,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Way better. To be fair, it's a waste to use coal itself, but it also works with charcoal and lignite dust. And it speeds up the dissolving of items in an alchemical furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":257,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Save the squids, we must","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A very convenient way to make PETA activists happy and get ink at the same time. \n\nHint: The essentia in those roses might be useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32414,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":258,"preRequisites":[259],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite... lava?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, it does need some ignis centi-vis, but hey, it's free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:everburnUrn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":259,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:everburnUrn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite water!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The struggle is over. You finally discovered a way to get infinite amounts of water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":260,"preRequisites":[252],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Adept thaumaturgy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have mastered the basics. Master warned me about forbidden magic, but it sounds so promising. I think a bit of forbidden stuff can't hurt..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":261,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.fieryTears","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An awesome magic conductor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These tears, WOW! I've never felt something so strong. Could it be? Could I use those to actually finalize my Silverwood wand?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.fieryTears","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":262,"preRequisites":[263,266],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":10000,"terra":10000,"ignis":10000,"cap":"thaumium","rod":"silverwood","ordo":10000,"perditio":10000,"aer":10000},"Damage":54,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An even better conductor?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More... I want MOOORE! There must be something even stronger than the hydra. Something older, more ancient."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":263,"preRequisites":[266],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.fieryBlood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It doesn't work","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I tried to combine the lich bones I had with this new wand rod. The result: A pile of ashes. It crumbled to dust within seconds. I need a better conductor. The hydra in the Twilight Forest has the ability to regrow an entire head! Her blood must contain a large amount of magic. I guess I need a bit of that for my next wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:misc","Count":1,"tag":{"display":{"Lore":["It crumbled to dust within seconds..."],"Name":"Lich Bone"}},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":264,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Obsidian rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using obsidian and some earth clusters, I'm able to create a magical infused rod, that will slowly recharge its own terra vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":265,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":2500,"terra":2500,"ignis":2500,"ordo":2500,"perditio":2500,"aer":2500},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Creating a better wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This greatwood wand is nice, but it can only store 50 vis. Not enough to move nodes. My tries to use silverwood failed, but I've come across other mundane materials that I could use to make a new wand core."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":266,"preRequisites":[264,860,271,269,270,268,267],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27028,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"More durable screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Those stainless steel screws don't work on these rods. Due to the huge amounts of vis those wands can carry, the screws somehow \"melt\" away. I need a more durable material. I guess I will try titanium next."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"tag":{"display":{"Lore":["It.. melted..?!"],"Name":"Stainless Steel screw"}},"Damage":9306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":267,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quartz rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using nether quartz and some order clusters, I'm able to create a magical infused rod, that will slowly recharge its own ordo vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":268,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reed rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using sugar cane and some air clusters, I'm able to create a magical infused rod, that will slowly recharge its own aer vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":269,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blazing rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using a blaze rod and some fire clusters, I'm able to create a magical infused rod, that will slowly recharge its own ignis vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":270,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Icy rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By using hardened ice and some water clusters, I'm able to create a magical infused rod, that will slowly recharge its own aqua vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":271,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bone rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forbidden? Pah. I don't care about headaches. By using bone and entropy clusters, I'm able to create an infused rod, that will slowly recharge its own perditio vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":272,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Best wand caps ever","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course! Thaumium! What could conduct vis better than... a magical metal?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":273,"preRequisites":[274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SnowQueenBlood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"She let go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This blood seems pretty common, but she had advanced magic abilities. I'm sure I can use this as a medium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SnowQueenBlood","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27083,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":274,"preRequisites":[261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.carminite","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reactor material","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This stuff is interesting... Maybe I can use it as a wand conductor?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.carminite","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27030,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":275,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Centi-vis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many advanced machines require vis in order to do what they're supposed to. But using a wand as some sort of battery to transfer vis from a node to your machine didn't work as expected. What if you could rip open a node?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":276,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bring it home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably have a nice collection of bookmarked nodes. But running around to recharge your wand(s) isn't really the way an adept thaumaturge should get his required vis. Moving nodes is not that hard, but without doubt, you need something to protect them from each other."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":277,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated wand-recharge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So you found a way to gather nodes now. What about automated wand recharge? Wouldn't that be extremely convenient?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":278,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Centi-vis stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You totally should get yourself some centi-vis things to transport and use the vis from stabilized nodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockMetalDevice","Count":8,"Damage":14,"OreDict":""},{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":279,"preRequisites":[280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockLootCrate","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The dark realm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We found the way... my precious. We found it! Only need 4 tasty eyes, and some magic to open the door. The secret door, they didn't see it. Hehehe! All the time. It was there... Aaaall the time!"}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Visit \"Outer Lands\"","range":-1,"index":0,"dimension":50,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":280,"preRequisites":[281],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"They see me, they watch me","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eyes. Yes. Eyes! I need eyes, my precious. Not spidery ones, no. Nasty hairy things. Don't taste good. Eldritch eyes! I will rip those from their bodies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":281,"preRequisites":[282],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Really (Really!) dark magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fools. FOOLS I say! They know nothing! This book will guide me, yes. Yes it will, my precious. It will lead us to even more POWER!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":282,"preRequisites":[289],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetCultistRobe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secrets","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I can feel it. Yess. Yeeeess. We will gain more power nigh. Nigh! Yes. My precious. The voices gave me a hint, there is a dimension filled with unbelievable sources of magic energy. I must go there. I must! The crimson people know the secret. I will rip them aparrrt.. They will tell me!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":4,"taskID":"bq_standard:hunt","target":"Thaumcraft.CultistKnight","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":283,"preRequisites":[279],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find the key","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No, nooo! They have hidden it! Must find the keeey. Must find it! We need the tablet to open the door my precious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":284,"preRequisites":[283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of creation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What... What am I doing here? Where am I?! What is this place?! Oh those headaches... (It seems that the pulsating pearl you just found cured your brain from... something. Something old, probably some kind of trap to keep away unworthy ones.)\n\n/iskamiunlocked will tell you if you have successfully unlocked Kami. If not, try researching the Thaumium Crowbar and the Cursed Spirits Blade."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:blockLootCrate","Count":5,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":285,"preRequisites":[252],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":17,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Concentrated darkness","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For some reason, you decided to infuse darkness into a seed. It appeared to be promising. For what? You don't know..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":286,"preRequisites":[287],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetVoidFortress","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Armor\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This new metal, it's so... appealing. You feel comfortable while holding it, so why not get yourself some armor? What could go wrong? It sure will protect you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemHelmetVoidFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemChestplateVoidFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsVoidFortress","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":4,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":287,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockEssentiaReservoir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What could possibly go wrong?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"256 essentia in one block! Now that is what I call storage. Does make weird sounds, but I guess it's nothing special..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockEssentiaReservoir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":288,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.something","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Let's try this","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mortals. Pah. What do they know about REAL power. The voices tell me I need to focus on alienis and tenebrae if I want to advance. So what about food?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.something","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":289,"preRequisites":[286],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusHellbat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An appropriate weapon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"My new armor needs an appropriate weapon to go along with. I should make something to fire creatures of the nether at enemies!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusHellbat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemSpawnerEgg","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":290,"preRequisites":[272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemHelmetFortress","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Improved armor: Ninja style","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get some decent armor. With this, those infernal monsters won't be as much of a pain as they are now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemHelmetFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemChestplateFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsFortress","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":4,"id":34},{"lvl":2,"id":154}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":291,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Little helpers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A state of the art thaumaturge doesn't work any more. He has little helpers. Golems can and will do all the things for you, just as you command them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"tag":{"gadomancy":{}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":292,"preRequisites":[291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Slightly better","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wood is somewhat better than straw. They are still to be considered weak, but an ideal little cutie for farms."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":293,"preRequisites":[292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sticks and stones...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...will break your bones! These guys are hard as rock (Insert audience laugh here) and will protect your claim as good as possible."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":294,"preRequisites":[293],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The best of all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highly durable, can carry a lot of items and is considered the \"top tier\" golem. But you are sure there is more...\n\nYou'll need to chisel a thaumium block to get the right kind you need for the golem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"tag":{"gadomancy":{}},"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":295,"preRequisites":[291,272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sure, you could just go with gazillions of jars, but it's way more convenient to store essentia in a chest or barrel. Isn't it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:blockTube","Count":1,"Damage":7,"OreDict":""},{"id":"ForbiddenMagic:UmbralBush","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicExploration:everfullUrn","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemPlacer","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":296,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ordo"}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The basic elements","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course you know where and how to get the basic essentia types. Do you..?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ordo"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"aqua"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"terra"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ignis"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"aer"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"perditio"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"radio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"superbia"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"alienis"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"nebrisum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"strontio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"tempus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"luxuria"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"ira"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"spiritus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"mortuus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"venenum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"infernus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"tenebrae"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"corpus"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":1,"tag":{"Aspects":[{"amount":1,"key":"exanimis"}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"nebrisum"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"superbia"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"strontio"}]},"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemCrystalEssence","Count":32,"tag":{"Aspects":[{"amount":1,"key":"luxuria"}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":297,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia transmission","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What if... you could send essentia from a different location to your infusion matrix? You could finally get rid of all those jars around your altar. Also, there might be an additional use for those mirrors.\n\nYou have an intuition that a more energetic metal would allow for very interesting uses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockMirror","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":298,"preRequisites":[297,299],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockEssentiaLocusAggregator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"(Almost) automated essentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining the essentia locus, the essentia mirror and an essentia aggregator, you are now able to transmit essentia from almost anywhere. Fancy essentia-storage facility incomming!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockEssentiaLocusAggregator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalEye","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockJar","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":299,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:crystalEye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia monitoring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Manually checking your jars can be tedious, especially if you want to infuse a bunch of stuff at once. Luckily, the essentia locus can help you with that, as it monitors all jars that have been targeted with a crystalline eye."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockEssentiaLocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalEye","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":300,"preRequisites":[295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:TaintShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cleaning the goo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you do more and more infusions, you're getting tired of removing all the flux that's generated. The shovel of the purifier will help you cleaning up flux, and is a must-have."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:TaintShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":301,"preRequisites":[272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:fireFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"One does not simply...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...play with magic. Be warned, these fires are very dangerous! But who doesn't want a patch of snow in the nether?\n\n�4Fire spread is disabled in the configs of servers to prevent massive lag and world destruction."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:fireChaos","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireAir","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireFire","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireEarth","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicTinkerer:fireWater","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicTinkerer:fireOrder","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":302,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Useful plant life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While regular plants are mostly used to make food, you are wondering if you could get some... \"more useful\" plant life going..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:redlonSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"thaumicbases:lucriteSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"thaumicbases:lazulliaSeeds","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"thaumicbases:knoseSeed","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"thaumicbases:redlonSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:lucriteSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:lazulliaSeeds","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:rainbowCactus","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:knoseSeed","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":303,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:overchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pushing the limits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular enchantments have a limit, like III for Fortune. Utilizing magic, you should be able to bypass that limitation, at least a tiny bit; Eventually creating enchantments like Fortune IV. It comes with limitations, but your book shall tell you more about those."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:overchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":304,"preRequisites":[303],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:enchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanting like a pro","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a device where you can actually choose which enchantments you want to have. Powered by vis, it can create the most powerful combinations one could imagine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:enchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":305,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:cryingObsidian","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crying obsidian...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...it mourns the dead. This might come in handy for some cases. By placing 2 on top of each other, you're able to set your respawn point to that location, without the need for a bed. It's up to you to imagine the possibilities..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:cryingObsidian","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":306,"preRequisites":[302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Useful trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like plants, there are trees that will attract various friendly and \"not so friendly\" creatures. (No warranty when placed in desolated biome!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"thaumicbases:goldenOakSapling","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":307,"preRequisites":[284],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of gods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The pearl you've found has some interesting effects on you. Not only are the voices almost gone, somehow it has also expanded your perception. You can \"feel\" the magic around you. This is definitely worth some further investigation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":308,"preRequisites":[350],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":2000000000000},"Damage":32598,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The final goal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thanks to your help I have managed to create the ultimate energy source: An encased wormhole that drains energy from a synthesized pocket universe, to the point when it reaches heat death. I have no use for it, so you may have it. Thank you for making my dream come true!"}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":2000000000000},"Damage":32598,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":309,"preRequisites":[307],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Shards of opposite worlds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This morning, you just wanted to facepalm yourself to death. During your past journeys, you have already seen strangely colored shards. But unlike the primal shards you use every day, these seem to contain the raw essence of their dimension. Heaven and Hell... so to speak. Two opposite worlds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":310,"preRequisites":[311,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothHelmGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to the fullest extent, you'll have to unleash its hidden power. This is not an easy task; But it's worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothHelmGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":311,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable cowl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothHelm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":312,"preRequisites":[313,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothLegsGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothLegsGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":313,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothLegs","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable leggings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothLegs","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":314,"preRequisites":[315,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothChestGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothChestGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":315,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable robe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":316,"preRequisites":[309],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining ichor with enchanted fabric, you've created something that could be compared to mithril. Light as wool, but durable like steel. Also, it conducts magic energy like nothing else you've seen before. This seems to be an excellent material for a new type of armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":1,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":2,"OreDict":"ingotIchorium"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":317,"preRequisites":[318,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothBootsGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your armor to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothBootsGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":318,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorclothBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable boots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They will never break. How convenient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorclothBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":319,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable axe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An axe made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":320,"preRequisites":[309],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused Thaumium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining ichor with some thaumium, the metal turned into something new; Something extremely durable but also soft. Its magic conductivity is incredible"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":5,"Damage":2,"OreDict":"ingotIchorium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":1,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":2,"OreDict":"ingotIchorium"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":321,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorSword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable Sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A sword made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorSword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":322,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A pickaxe made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":323,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unbreakable shovel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A shovel made of your new metal will never break and will accept enchantments with ease. Something tells you there must be more..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":324,"preRequisites":[321],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorSwordGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorSwordGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":325,"preRequisites":[323],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorShovelGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorShovelGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":326,"preRequisites":[319],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorAxeGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorAxeGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":327,"preRequisites":[322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPickGem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unleashed the power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make use of your tool to its full extent, you'll have to unleash its hidden power. This is not an easy task; But it's well worth the effort!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPickGem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":328,"preRequisites":[316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPouch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hold all the foci","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hermione's first years bag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:ichorPouch","Count":1,"tag":{"Inventory":""},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":329,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:ichorPick","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Where do the items go?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's probably better not to ask..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:blockTalisman","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":330,"preRequisites":[331],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusRecall","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magical waystones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These are used to mark locations in order to teleport around"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusRecall","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":331,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:warpGate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why walk...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when you can teleport? This little device allows you to teleport around almost for free. Is it cheaty? Is it OP? Nope, it's a celestial gateway!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:warpGate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":332,"preRequisites":[241,1560],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fire burn and...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get started with your basic witchery needs, you need a witches oven. It requires anointing paste, which you will need an MV mixer to make.\n\nThe witches oven is used to get the most basic ingredients for your recipes - Fumes.\n\nThe oven is able to capture the by-products produced in the cooking process. Activating the oven to show the interface screen, you will see an additional slot to the right of the fuel slot. Clay jars must be placed in this slot. If there are clay jars present when something is cooked, there is a chance a by-product will be captured in one of the jars. These by-products are important ingredients in other recipes. If there are no clay jars in the oven when something is cooked, no by-products will be produced.\n\nUpgrading an Oven\n\nAn oven can be upgraded by placing either a Fume Funnel or a Filtered Fume Funnel to the left and right of it. Each Fume Funnel will increase the cooking speed by and additional 10 per cent (over a furnace) and increase the chance of a by-product being produced by and additional 25 per cent for a Fume Funnel or 30 per cent for a Filtered Fume Funnel.\nAn Oven can use at most two upgrades and they must have the same facing as the oven.\n\nA fully upgraded oven will therefore cook at 130 per cent speed (compared to a furnace) and have a chance of a by-product of 90 per cent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":153,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":20,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:sapling","Count":30,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":333,"preRequisites":[334,1575],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Offerings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For all your offering needs. And of course, it looks fancy!\n\nAn altar is created by placing six altar blocks in a 2x3 pattern; you will know it is correct when a red cloth appears over the top of the altar.\n\nActivating the altar by right-clicking on it will bring up a screen showing how much power the altar has collected, how much it can collect and its current recharge rate. It is important to check that there is sufficient available power to perform a given rite or use a distillery or kettle recipe.\n\nThe maximum amount of power available is determined by how many natural items are in the vicinity of the altar: dirt, grass, trees, plants, etc. all contribute; stone and sand do not. The important thing is to have a diverse mix of different plants, trees and crops (plants from other mods are supported to an extent as well).\n\nCertain objects (or foci), placed onto an altar, will boost the focusing capabilities of an altar, either improving the amount of magic it can focus, the rate at which it replenishes or the range it can distribute power. Only one of each type of item (skull, chalice, etc.) will have an effect. There may also be other less savory foci that dark magic practitioners could make use of."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"witchery:arthana","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":334,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"...Cauldron bubble","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second thing you'll need is a cauldron. It is used to craft most of the basic items, like mutandis.\n\nIt is made by placing a regular Cauldron in the world, and then using Anointing Paste on it.\n\nTo brew a potion, cast a ritual or create an item, the cauldron must first be filled with water. This can be achieved by using three buckets of water on it, pumping water into it using pipes, or by using a Dispenser containing a Brew of Endless Water.\n\nOnce a cauldron is full of water, it must boil. Lighting a fire beneath the cauldron is the only way for this to happen. Using a netherrack block will guarantee the fire does not go out, although if it does go out, it may be set to boil again without any consequences (unlike brewing in a Kettle!).\n\nWhen the water is boiling, ingredients may be added to the Cauldron (one after another), to create the desired effect. The book, Witches' Brews gives a complete overview of all ingredients and what they can do when added to a brew."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":335,"preRequisites":[1567],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't touch the needle!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While having not many recipes by itself, the few it has are rather important for your further witchery progression."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":20,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":336,"preRequisites":[333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Probably usable for soup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But its main purpose is to brew potions and infusions.\n\nA kettle must be set up in the correct way, before it may be used. \n\nFirstly, a fire must be set under the kettle (netherrack is best for this, but wood will do just as well). \n\nNext the kettle must be filled by using a Water-filled Bucket on it. \n\nThirdly, each of the six ingredients for the brew or infusion must be thrown into the kettle, one at a time (the liquid will change color according to the recipe being used). \n\nFinally, a glass bottle must be used on the kettle to bottle the resulting brew, this must be done multiple times depending on the recipe.\n\nIt is important to keep the fire going constantly while the recipe is being prepared, otherwise it will be ruined. Swirls coming from the kettle is a sign all is well, black smoke (and brown liquid) indicates the brew is ruined. When a brew is ruined, the kettle must be emptied with a glass bottle, or just filled with more water, and the whole process repeated.\n\nWhen a brew is complete, the liquid will be the color of the resulting brew and will splutter (in addition to white swirls).\n\nSome recipes will require magical energy from a nearby Altar before they are bottled. If the brew is bottled when insufficient energy is available, the brew will be ruined. Black swirls coming from the Kettle is a good sign there is not enough power. A kettle must be within 14 (to 16) blocks of an Altar in order to obtain power from it (it can obtain power only from a single altar)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":22,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":337,"preRequisites":[334],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:brew.fuel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't shake it too much","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike nitroglycerin, this stuff doesn't explode. But you still shouldn't shake it too much..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:brew.fuel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":3,"Damage":22,"OreDict":""},{"id":"witchery:seedsmandrake","Count":3,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":338,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Spirit coin transfer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Potion of Spirit can only made in the spirit world. Wondering how you can get your stuff like the Kettle, Spinning Wheel or Cauldron to the spirit world? Well you can bypass it probably on servers with the enderchets but for single player or a server without any enderchest you can transfer a few coins to the spirit world and buy some stuff. Don't claim the coins until you have already passed to the other side.\n\nYou have already collected a few coins in quests. Let's transfer them now and save it in a chest.\n\nIt's a repeatable quest so you can do it as long you have enough coins."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":339,"preRequisites":[1571],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Circle magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For circle magic, you need... a circle, obviously. There are 4 types of chalk you can use, and you'll need all of them to proceed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkheart","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkinfernal","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkotherwhere","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:circletalisman","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:ingredient","Count":10,"Damage":67,"OreDict":""},{"id":"witchery:ingredient","Count":5,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":340,"preRequisites":[339],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Portable power source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By infusing a stone with fiery magic you can create an \"Attuned Stone\". These stones can be used to link non-magical devices to the magical currents present..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":5,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":10,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":341,"preRequisites":[340],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":41,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying OINKment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You tried, it doesn't fly. And it also doesn't make any OINK sounds, sadly. But there might be some use for it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":41,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":342,"preRequisites":[341],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nimbus 1999","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not as good as its successor, the 2000'ish model, but still \"somehow\" useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":80,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":343,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Refined evil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Refined good was out of stock, sorry."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:taglockkit","Count":32,"Damage":0,"OreDict":""},{"id":"TConstruct:strangeFood","Count":32,"Damage":1,"OreDict":""},{"id":"witchery:glassgoblet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":344,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Witches hand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In case you don't like the infernal witches..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:gold_nugget","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:witchhand","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":345,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:seepingshoes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Seeping shoes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who needs an antidote? Now with free fertilizer!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":5,"taskID":"bq_standard:hunt","target":"witchery.demon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:seepingshoes","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":346,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:taglockkit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Taglock kits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Get a death protection poppet and get a stack of taglock kits. For all your trolling needs."}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:poppet","Count":1,"tag":{"WITCDamage":0},"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:taglockkit","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":347,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":39,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":86400,"globalShare":1,"questLogic":"AND","name":"Bloodlust: Drop of luck","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hard to get, even with that quest. But less of a grind..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"witchery.hellhound","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":39,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":348,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:canesword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bloodlust: \"Cain\" sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Serves 2 purposes: Style. And... ah, yeah... Something useful for vampires."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblinmog","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblingulg","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:canesword","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":349,"preRequisites":[342],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:vampirehat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Be a vampire; Dress like a fancy person","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes it can be troublesome to get fancy clothing. However, if you prove yourself worthy, you get a set for free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:quiverofmog","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:gurdleofgulg","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:babashat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:vampirehat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampirecoat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampirelegs","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:vampireboots","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":350,"preRequisites":[354,356,357,359,361],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":17,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A few more things...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ok, I think I have everything I need to assemble the device. Can you assist me with some additional materials? I need to update most of my machines, as these exotic components you got me damaged most of them already. Don't worry, I have a list here.\n\nMost of my circuits burned to a crisp while I was trying to measure the conductivity of these soul and life shards. I need better ones.\n\nGood lord, these mysterious crystals have eaten away my diamond grinding head! How could that happen? Can you get me a better one?\n\nDo you see that pile of chrome over there? No? Neither do I. Because the machine was VAPORIZED! Good that you gave me 2 singularities, the first one... Well... Just get me a better casing, would you?\n\nIt seems, that the stabilizers need... stabilizing... But I'm out of field generators. Can you help me with this?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":10,"Damage":32088,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32723,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32672,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":351,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:writable_book","Count":1,"tag":{"pages":["Conceptual Device:\nThe Zero-Point-Module.\n\nHello my friend.\nI need you to help me with a pr"]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hello there","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've observed your pathway, and I have to say, I'm impressed. I might need your help soon, on a big project of mine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":10,"Damage":14,"OreDict":""},{"id":"GalacticraftMars:tile.mars","Count":10,"Damage":7,"OreDict":""},{"id":"GalaxySpace:ceresblocks","Count":10,"Damage":5,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":10,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":352,"preRequisites":[351],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":1000000000},"Damage":32599,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Power. So much power!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If only I could harness it... Well, hi there my friend. I need your help with a project of mine. I want to create an immense power source, but I have a few problems that I need to solve first. Will you help me? You will be rewarded."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":353,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.mars","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A problem that matters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need to open a wormhole. But for that, I need an immense gravitational field. One like those created upon the death of a massive star. But I can't really \"kill\" a sun for this. I need to compress matter somehow... \nBut... How?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":354,"preRequisites":[452],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Now that matters!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Of course! The matter condenser! How come I didn't think of that?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":355,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I need a stabilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Opening the wormhole is one thing, but I need to stabilize it, so it doesn't harm anything. I guess I need something made of crystal. Why? Because I like it fancy. Find me a crystal-based, transparent material with immense power, would you?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":356,"preRequisites":[453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Shiny!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What in the world is this? This is amazing! I need more of these! They will be an amazing containment material for the wormhole!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":357,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I'm hungry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What... I work a lot! So get me some food please."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:creamofavocadosoupItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"harvestcraft:mintchocolatechipicemcreamItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":358,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"It needs a power plug...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Given the fact that I will be able to craft this device, it needs some kind of \"plug\" to get the power out. I need something to conduct immense amounts of power. I thought about superconductors, but they don't fit with the crystal casing material I have in mind. I need 2 different crystals, one for positive and one for negative charge."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":359,"preRequisites":[454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Red and blue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Really? A red and blue crystal? How awesome is that! I think I will need 8 of each color, just to be sure."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":360,"preRequisites":[352],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"BiomesOPlenty:misc","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A casing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need something for the outer shell. Again, a crystal-based material would be best, because I like it shiny. I tested all crystals we know and none of them meet the requirements. I heard you have access to outer space? Can you try to find a suitable material while you're out there?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":361,"preRequisites":[455],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yes. Yes! That's it! Bring me more of this stuff! I probably need a lot of it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":362,"preRequisites":[464],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Beyond imagination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What is this? Draconium dust? I wonder if I could use this for something..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":363,"preRequisites":[362],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of dragons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey my friend. I got your sample, and I have to say, I'm amazed. This material has a lot of potential, but it's useless at the moment. I have an idea how to turn this into something useful, but I need you to help me with a few problems first.\n\nI need a good handful of that stuff for my research. Please get me some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":364,"preRequisites":[363],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First things first, we need a hull. I played around with your sample, and it seems that it reacts with every known material. It even attacks Iridium! It's completely harmless if it's in a box that is open, but as soon as I try to enclose it in something, poof. It breaks free. We need something stronger than iridium my friend."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":365,"preRequisites":[465],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense, denser, Neutronium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now look at this. This stuff is incredibly dense. Maybe this material will be sufficiently strong?\n\nThis looks promising. Send me some samples, and I will try my luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":366,"preRequisites":[457],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not a planet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This place is interesting. Maybe I should try to find new materials here..."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Pluto","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":367,"preRequisites":[365],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:tile.TFTowerTranslucent","Count":1,"tag":{"display":{"Lore":["Formerly known as Neutronium"],"Name":"Hull debris"}},"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Successful.. Or not?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Heh, neutronium. I didn't even know such a thing really exists. Unfortunately, the draconium dust was enclosed for... 5 seconds? But, it was a small success. \n\nOk let's travel to some planets and moons and look for the new material. I think we have to fly very far away for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:tile.TFTowerTranslucent","Count":16,"tag":{"display":{"Lore":["Formerly known as Neutronium"],"Name":"Hull debris"}},"Damage":5,"OreDict":""}]}]},{"questID":368,"preRequisites":[466],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Black Plutonium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This doesn't seem to be dense, but it's a material you haven't seen before. Maybe this could be the solution?\n\nBlack what? Huh, interesting. Send me some samples, I want to analyse it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":369,"preRequisites":[368],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We have a hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Surprisingly, this material is able to contain the draconium dust. It could be the radiation. Good job my friend!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":370,"preRequisites":[369],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:enderporter","Count":1,"tag":{"display":{"Lore":["The first sample. Wait.. Is that... a button?"],"Name":"Draconium Dust core"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconium Dust core","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've created a first sample of what I shall call \"Draconium Dust core\". Not quite the result I expected to be honest, but see for yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:enderporter","Count":1,"tag":{"display":{"Lore":["The first sample. Wait.. Is that... a button?"],"Name":"Draconium Dust core"}},"Damage":0,"OreDict":""}]}]},{"questID":371,"preRequisites":[370],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We need to control it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The problem is that the immense power of this dust is released all at once. We need something to control the vast amount of energies. I noticed that the dust starts to glow when it gets near an aura node. Maybe Thaumaturgy has the solution?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":372,"preRequisites":[458],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of primals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What else could control energies better than a focus of crystallized primal energy? With this little item, it should be possible to control the energies released from the dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":373,"preRequisites":[372],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mudball","Count":1,"tag":{"display":{"Lore":["A mix of draconium dust, a primordial pearl","and.. Is that a bone?"],"Name":"Primordial dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unforeseen consequences","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You haven't heard anything in a while from the technician. You have a feeling that something might have gone terrible wrong, so you went to his place to investigate. What you found was... nothing. A void. It seems that he tried to combine the pearl with the dust. What did he say? The dust reacts to aura nodes? Of course it does. It amplifies the energies by a thousand times. And giving it raw primal energy, good lord, what has he done. May he rest in peace..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:mudball","Count":1,"tag":{"display":{"Lore":["A mix of draconium dust, a primordial pearl","and.. Is that a bone?"],"Name":"Primordial dust"}},"Damage":0,"OreDict":""}]}]},{"questID":374,"preRequisites":[373],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I'm on my own now","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I need to continue my research. I still think that this primordial pearl is the key to control the dust, but I'm not sure how. Maybe the pearl is just too strong? I should try to use something that's similar, but less powerful. It reacts to vis, so maybe.. I should try to make a wand focus with that pearl. That way, I could channel vis into the dust without actually combining both."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":375,"preRequisites":[376],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An interesting material","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This metal has quite interesting properties. It seems that it has absorbed some of the energy that exists in the End. While ender pearls are quite fragile, this metal is a lot more durable. However, the absorbed energy is not enough to teleport things around. But you might find a solution for this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:endium_ingot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":376,"preRequisites":[385],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gross, what is that...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's purple, and it smells like rotten eggs. But while staring at this unpleasant fluid, you had an idea. You can't reach the dust directly, but can you actually teleport something in and out the field? Might be worth a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:bucket_ender_goo","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":377,"preRequisites":[459],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"An appropriate focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've tried a lot, and nothing was quite enough to activate the dust. Until now. You finally found a focus that is able to transmit enough power to cause a heavy reaction with the dust, but not enough to cause problems."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":378,"preRequisites":[377],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated draconium dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At least for a short period of time. The wand focus is powerful enough to activate the dust, but it will convert back to regular dust as soon as I stop feeding it with vis. If I only could contain it, surround it with a forcefield..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""}]}]},{"questID":379,"preRequisites":[378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32684,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The strongest forcefield","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to create a forcefield, I need to build myself a containment device. I will use only the best emitters I can afford. I will take no risks here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32676,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32686,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":380,"preRequisites":[379],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"display":{"Lore":["A pile of something that","used to be a machine hull"],"Name":"MAX Machine Casing (Molten)"}},"Damage":7129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not what I expected...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The outcome was... interesting. It did not explode, instead, the activated draconium dust generated a counter-field to mine! Unfortunately, the emitters could not stand the reverse energies, and melted. I was able to shut it off quick enough to save the machine casing (At least what's left from it...) And a couple of field generators."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32676,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"tag":{"display":{"Lore":["A pile of something that","used to be a machine hull"],"Name":"MAX Machine Casing (Molten)"}},"Damage":7129,"OreDict":""},{"id":"minecraft:nether_star","Count":2,"tag":{"display":{"Lore":["A few scratches here and there,","but still usable"],"Name":"Nether Star (Used)"}},"Damage":0,"OreDict":""}]}]},{"questID":381,"preRequisites":[380],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":900100,"terra":900100,"ignis":900100,"cap":"orichalcum","rod":"neutronium","ordo":900100,"perditio":900100,"aer":900100},"Damage":2000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forcefield, second try","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I came to the following conclusion: Draconium dust seems to react nicely with all kinds of magic energy, and seems to repel technology. So I need to find a way to create a forcefield with magic alone. There must be a way..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":382,"preRequisites":[460],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magic force field","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While node stabilizers are too weak, you found a way to generate a strong containment field, generated by magic itself. You tried to use warded glass, but even the \"frozen in spacetime\" material could not resist the power of activated draconium dust. You decided to build another device, this time with your newest invention.\n\nThe vortex attenuator is powerful enough to negate even hungry nodes, and it also will be able to contain activated draconium dust.\n\nJust to be sure, I will add some amplifiers to it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""},{"id":"ThaumicHorizons:transductionAmplifier","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":383,"preRequisites":[382],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:transductionAmplifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What the...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The device works! It is able to fully contain and separate the draconium dust from everything around it! Unfortunately... It also prevents the vis from passing the barrier, which results in regular draconium dust... In a forcefield..."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":384,"preRequisites":[383],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Looking for alternatives","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is frustrating. Either you are able to contain the dust but can't activate it, or, you activate it and it causes serious damage. Maybe you need to find answers somewhere else.\n\nDraconic... Like... Dragon?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":385,"preRequisites":[461],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconic... Like... Dragon?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you where looking for the right things in the wrong place. As this dust obviously comes from dragons, the best thing to do now is to find answers in the dimension of dragons: The End."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Dragon Dimension","range":-1,"index":0,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":386,"preRequisites":[387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:endoplasm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weird creatures","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These ghosts are weird beings. But, I found this ectoplasm, which, by itself, seems to be pretty useless."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:endoplasm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":387,"preRequisites":[388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:spatial_dash_gem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated teleport power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By a random guess of yours, you combined molten ender pearls and a few more of these shards with an empty gem, and it turned blue. It is pulsating with power. You tried to use it on your containment device, and it seems to be able to bypass the force field, while keeping it intact that the same time. Sadly, it doesn't have enough power to let vis pass through. Maybe you can even further increase the gems power?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:spatial_dash_gem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":388,"preRequisites":[375],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:arcane_shard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arcane shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the normal world is based on vis and primal energy, the End seems to be quite different. This arcane shard is the crystallized form of this energy, just like the primal shards that you used so many times in the past. By pure randomness, you discovered that it reacts with the metal you've found."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:arcane_shard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"HardcoreEnderExpansion:blank_gem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":389,"preRequisites":[390],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconicCore","Count":1,"tag":{"display":{"Lore":["Emits a strong, vibrating aura of pure energy you never experienced before.","In good memory of your old friend, the technician. May he rest in peace"]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Draconic evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I found a way to combine technology and magic into something fantastic. A shiny blue emblem that emits immense amount of energy. I've decided to call it the draconic core. Make one for yourself!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconicCore","Count":1,"tag":{"display":{"Lore":["Emits a strong, vibrating aura of pure energy you never experienced before.","In good memory of your old friend, the technician. May he rest in peace"]}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":390,"preRequisites":[468],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:resource","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Balanced thaumium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This new metal is quite cheap, and has an awesome conductivity towards all 6 primal aspects. Regarding the capsule, I'd say it is a superconductor for vis. I think I can finally assemble the final frame."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:resource","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"thaumicbases:resource","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":391,"preRequisites":[389],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automated evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The machine is working pretty well, but it's tedious to fill in the reagents manually. But you have an idea, you could use a few basic components to fully automate the process.\n\nYou can use robot arms and conveyor belts to automate the input and output.\n\nObviously, you need to power the machines. A solar panel will do just fine.\n\nIn order to automate the catalyst, you need a few things. One golem will gather basic materials, while the second one will hunt creepers and ghasts for the more valuable ingredients.\n\nYou found a way to re-use the singularity, so you only need to get some sand. Luckily, the golem that works on the catalyst will be able to get glass too. He just needs a little additional motivation.\n\nYour golems need light, obviously. Also, it would be nice if there are some signal lamps that indicate the status of the process. Would it not?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32656,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32636,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32757,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemPlacer","Count":2,"Damage":7,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemCore","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemGolemDecoration","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"MagicBees:miscResources","Count":1,"Damage":17,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemGolemDecoration","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":1,"requiredItems":[{"id":"BiblioCraft:BiblioLamp","Count":2,"Damage":0,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":13,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":14,"OreDict":""}]}]},{"questID":392,"preRequisites":[386],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:transference_gem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Activated teleport gem","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are sure that you've just discovered the solution for your containment problem. This gem happily transmits vis on request, while keeping the containment field intact. What a great day!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"HardcoreEnderExpansion:transference_gem","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":393,"preRequisites":[392],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"You did it! But...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are able to contain the activated draconium dust for an infinite amount of time, you where able to assure the energy it releases. The readings are incredible. You have never seen such a power before. The only problem is, the machinery required to keep the dust in this state is too large to use it for crafting.\n\nYou noticed something that might help: The dust reacts to vis, but it needs a lot of it, therefore you require the animation focus. If you could find a catalyst, that you can mix the dust with, you could make the dust react with the vis from its surroundings instead of a direct beam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:draconiumDust","Count":1,"tag":{"display":{"Lore":["Unfortunately, it has already lost its power"],"Name":"Activated Draconium Dust"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":394,"preRequisites":[462],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A catalyst","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That's it. This catalyst contains all primal energies in a quite different form, a lot weaker than any node. However, in combination with the draconium dust, it amplifies the vis that's around it, which leads to a permanent activation. It still needs to be contained, but you don't need the direct vis beam any more.\n\nThe result is a compound, which still emits massive amounts of power, but is less destructive. It still attacks the neutronium, but I think if I can find a capsule-like container that has special properties, I could create a portable version of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]}]},{"questID":395,"preRequisites":[467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bulma would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining a dimensional singularity with some glass cylinders and molten gold, I was able to create a miniature containment field within a very small area. Interesting enough, the new draconium blend amplifies the containment field from the inside. Once I fill the blend in the capsule, it immediately \"seals\" itself. I won't be able to remove or replace the dust any more, but I don't think I have to...\n\n\nThe perfect vessel for massive power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":396,"preRequisites":[395],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11129,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The final steps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that I've found a way to stabilize the draconium dust and keep it safe in a small capsule, I just need to make a small container for it, so I can drain the energy on demand. Neutronium will serve very well, but I need a magic conductor. Thaumium works, but gets way too hot and void metal has a bad conductivity. I need to find a magic alloy that is more \"balanced\" in terms of primal aspects"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":397,"preRequisites":[391],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:draconicCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Endless evolution","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using your machine, you can now craft infinite amounts of these cores. And since it would be gruesome to let your golem work just for one single core, you decided to only request cores in a large batch of 64. How nice of you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11129,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11978,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32049,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"DraconicEvolution:draconicCore","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":398,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:babashat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Baba Yaga","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Baba Yaga is a witch (or one of a trio of sisters of the same name), who appears as a deformed and/or ferocious-looking elderly woman. She flies around in a mortar and wields a pestle. She dwells deep in the forest, in a hut usually described as standing on chicken legs, with a fence decorated with human skulls. Baba Yaga may help or hinder those that encounter or seek her out."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.babayaga","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":399,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:hornofthehunt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Horned Huntsman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Horned Huntsman is a member of the Wild Hunt, a powerful entity created by the Horned God. If one is encountered, prepare for a hard fight, or better flee."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.hornedHuntsman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":400,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Ender Dragon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The dragon must die. Long enough he destroyed those precious endstone blocks!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":401,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:leonardsurn","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Shade of Leonard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Leonard is the demonic being who is rumored to have taught a cadre of German witches their trade, and often presided over their sabbats. A skilled coven with the witches cauldron can summon a Shade of the Demon according to the method described in the Witches' Brews book."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:leonardsurn","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":402,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":141,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Lord of Tormentum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Lord of Torment is a mighty demonic being that is able to create prisons to torment its victims. Those foolish enough to summon one of these creatures must prepare for an arduous fight."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.lordoftorment","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":403,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:quiverofmog","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Mog and Gulg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mog and Gulg are the god-like beings that hobgoblins worship. They may send their avatars to pay witches a visit who exploit their worship (with a statue of hobgoblin patron). Rumor has it that using a nether star may make them take immediate notice."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblinmog","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.goblingulg","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":404,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kill Demon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Demons are powerful, evil beings who dwell in the infernal dimensions. To date, none have been seen roaming the Nether, where their minions: ghasts, blazes and their ilk seem to dominate. To meet a demon without a way to protect oneself is almost certain death. They are known to hit like a proverbial truck, and require a significant amount of damage to kill. Some demons have even been seen shooting fireballs! They are, of course, also immune to fire."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"witchery.demon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":405,"preRequisites":[398,399,400,401,402,403,404],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:infinityegg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The power of infinity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've mastered everything possible. And now it's time to give your equipment the final boost. The infinity egg is just the right addition to your altar. It's quite expensive, but well worth the cost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"witchery:chalkheart","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkinfernal","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkritual","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:chalkotherwhere","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":64,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":45,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":80,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:infinityegg","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":406,"preRequisites":[407,708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:lavaSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lava for blood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, both are red, so that connection was quite obvious... Was it...?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:lavaSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":407,"preRequisites":[177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blankSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic slates. Basically just stone with blood infused in it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blankSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:blankSlate","Count":12,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":408,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:divinationSigil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's quite difficult to see how much blood there is in your altar, or your personal blood network. This little device will solve that problem for you. Just a little prick in the finger, and everything will be revealed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:divinationSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":409,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic rune","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic rune that you can craft at this moment.\n\nYou need 8 runes for your tier 2 altar, which can hold more blood, and you can make new recipes now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":410,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Alchemy with blood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not like \"blood alchemy\". You probably will need more than one later, but for now one is sufficient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockWritingTable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":411,"preRequisites":[412],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:averageLengtheningCatalyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion catalysts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to manipulate potions you need catalysts. You then combine the ingredient you used to get the potion effect in with either a lengthening or power catalyst to increase the duration or the strength of the potion effect."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:mundaneLengtheningCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:mundanePowerCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBindingAgent","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:simpleCatalyst","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":412,"preRequisites":[410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:crystallos","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple alchemical things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alchemy can be weird, and tedious. There are a lot of reagents and even more possible combinations. For now, and in order to get started, you need a couple of basic things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:simpleCatalyst","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:crystallos","Count":16,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanctus","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:sanctus","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:crystallos","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":413,"preRequisites":[415],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:weakFillingAgent","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refilling your potions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If empty, you don't have to throw the potion away. Just refill it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakFillingAgent","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:standardFillingAgent","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":414,"preRequisites":[410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Special potion flasks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Regular glass phials are unable to hold these special potions you want. You need to imbue them with some blood from your altar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:alchemyFlask","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":415,"preRequisites":[411,414],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion: Flight mode","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just to give you an idea what is possible. Let's do a sample potion. Shall we? Get yourself a potion flask, a feather and one of your weak binding agents you made. Combine those in the chemistry set, and you'll get something that you'll probably want to keep for a while."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:alchemyFlask","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBindingAgent","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:averageLengtheningCatalyst","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":416,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:blockHomHeart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple, but powerful spells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The simple spell system is rather easy to setup, and can be done early on in your bloodmagic career."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockHomHeart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":417,"preRequisites":[416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paradigm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Paradigms shape your spell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":418,"preRequisites":[416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spell foci","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are nine basic elements and each has a focus, an item that represents them. You place this focus in your altar next to the spell table in order for your magic to flow through it and the paradigm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ice","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:water_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:obsidian","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":419,"preRequisites":[418,417],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Some examples","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a LOT of spell combinations to discover, so just use trial and error!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blankSpell","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:ice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":420,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:sigilOfMagnetism","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Convenient slate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collecting items while mining or chopping wood is always tedious. But no more! With this fancy little thing items will just fly towards you! And it only costs a little bit of blood to pay the spirits of wind to work for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sigilOfMagnetism","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":421,"preRequisites":[926],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:imbuedSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...and even more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":422,"preRequisites":[407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:reinforcedSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need MOOORE. Imbue some slates with even more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:reinforcedSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:reinforcedSlate","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":423,"preRequisites":[422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Apprentice orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 2 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:apprenticeBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":424,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magican's orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 3 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":425,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:waterScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Elemental chalk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creation of better ritual stones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:waterScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:fireScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:earthScribeTool","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:airScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":426,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:runeOfSelfSacrifice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sacrificial runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Poking your finger might work for simple slates and runes, but getting enough blood for advanced stuff is tedious. With sacrificial runes you are able to increase the LP gain from mobs or yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:runeOfSelfSacrifice","Count":4,"Damage":0,"OreDict":""},{"id":"AWWayofTime:runeOfSacrifice","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:runeOfSelfSacrifice","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:runeOfSacrifice","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":427,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first rune to increase your capacity, and a rune to speed up transfer from/to external tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":2,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":2,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":428,"preRequisites":[425],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have access to elemental chalk, you can get yourself the basic ritual diviner. A convenient way to place simple but yet complex magical rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:imbuedSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":429,"preRequisites":[430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodSocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powerful armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A long way to go, and rather expensive, but a really powerful armor and well worth the effort."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:emptySocket","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodSocket","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:armourForge","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:weakBloodShard","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":430,"preRequisites":[432],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:weakBloodShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Getting soul shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enable your sword by Shift right-clicking and slay some enemies! Collect as many shards as possible. You will need a ton of them..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:weakBloodShard","Count":17,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:blankSlate","Count":16,"Damage":0,"OreDict":""},{"id":"AWWayofTime:reinforcedSlate","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:imbuedSlate","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":431,"preRequisites":[429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to assemble your armor. You need to build the pattern with blocks as you would craft the armor in a crafting table. The soul forge must connect to the structure on at least 2 sides. Then, right click the forge block with an empty hand to craft the armor piece."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundPlate","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:boundBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:armourInhibitor","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":432,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:energySword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A bloodmage's sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamonds and emeralds are limited in their ability to store LP. With this sword, you are able to get the crystallized souls from your enemies. Time to go hunting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:energySword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":433,"preRequisites":[422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:masterStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time for some rituals. The most basic one you'll probably get first is the ritual of binding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":24,"Damage":0,"OreDict":""},{"id":"AWWayofTime:masterStone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":434,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundPickaxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Pickaxe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mining never was easier. Just right-click with this tool and all the stone is gone! Like all bound tools, this uses a massive amount of LP."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundPickaxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":435,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundShovel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Shovel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever wanted to clear out a large terrain with dirt, gravel and sand? Why not let demons do it? This shovel, imbued with the soul of a demon will unleash the power by your will. But be warned: The demon you're about to summon with this is thirsty, and it costs a lot of LP to make use of it, so make sure your LP pool is full!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundShovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":436,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:boundAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bound tools: Axe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upon right click while activated, this axe will clear out any wood within a large area. Be warned: This uses a huge amount of LP. You might suffer from sudden death..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:boundAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":437,"preRequisites":[433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:sanguineHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A true blood-mage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bloodmagic is fine, so is Thaumcraft. Why not combine both worlds?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:sanguineHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguineRobe","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguinePants","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:sanguineBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":438,"preRequisites":[424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellParadigm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Complex spell system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike the simple spells with foci and paradigm, the complex spell system is incredibly...complex. There are way too much combinations to cover them here, so it's advised to look for the knowledge in other places. However, with the items from this quest, you are able to craft a simple mining spell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellParadigm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEffect","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellModifier","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":0,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemComplexSpellCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:incendium","Count":8,"Damage":0,"OreDict":""},{"id":"AWWayofTime:aquasalus","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":439,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Steam > Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three steam lootbags give a better one = Tier 2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":440,"preRequisites":[4],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:pamappleSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lOak trees are not apple trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oak trees which give apples? Who the hell added this to minecraft? You found a way of combining an oak sapling and an apple to get an apple tree sapling. Try to plant one to get a permanent source of food.\n\nOnce you complete this quest, check out the rest of the Quest Tabs. A new one, Coins Coins Coins, has unlocked. Every few quests you want to look through all the quest tabs to make sure something new hasn't unlocked somewhere else! There are lots of tabs, so be sure to scroll down!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:apple","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:pamappleSapling","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:pampearSapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamcherrySapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamorangeSapling","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pamwalnutSapling","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":441,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Basic > Steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic lootbags give a better one = Steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":442,"preRequisites":[9],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32201,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§l\"Backed\" potatoes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eating raw potatoes isn't that healthy, as you might have noticed. Some potatoes are green and poisonous already. After you get a furnace you can make delicious baked potatoes as another food alternative. Put a baked potato on a stick to make it even more delicious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:potato","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:baked_potato","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32201,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:melon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":9,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":443,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 2 > Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 2 lootbags give a better one = Tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":444,"preRequisites":[9],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Wood","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lSoft mallet adventure","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You now have some melon slices or pumpkins but what can you do with them? Well just eat them or... use a mallet to get some seeds... OK, let's craft one. Perhaps you can use this mallet for some other things too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"},{"id":"minecraft:planks","Count":6,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Wood","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:melon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":445,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 3 > Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 3 lootbags give a better one = Tier 4"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]}]},{"questID":446,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.wood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lShields UP","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a sword in one hand, what can you do with the other? Right, you need a shield. Let's make one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":4,"Damage":0,"OreDict":"logWood"},{"id":"minecraft:flint","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:cobblestone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":447,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 4 > Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 4 lootbags give a better one = Tier 5."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":448,"preRequisites":[446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.hide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lShield update","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wooden shield is very weak. So you look for a better one. Looks like you need some leather, so go and find some cows."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.hide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fence","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":449,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 5 > Tier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 5 lootbags give a better one = Tier 6."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":450,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lYour first long range weapon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since you can't make any vanilla bow before LV and Tinkers weapons are not in this Tier, you find a way to make a spear out of sticks, leather and a string. Get one because some infernal monsters are easier to kill with a long range weapon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"woodStick"},{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":451,"preRequisites":[906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger LoC","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by having a \"Lamp of Cinders\" in your inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":452,"preRequisites":[353],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Singularity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a singularity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":47,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":453,"preRequisites":[355],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Shard of Creation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a \"Shard of Creation\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemMaterial","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":454,"preRequisites":[358],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Life and Soul Shard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by making a \"Life Shard\" and a \"Soul Shard\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":455,"preRequisites":[360],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Unknown Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by finding a \"Mysterious Crystal\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.UnknowCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":456,"preRequisites":[916],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers the Life Canister Quest after a Wither death."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":300,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.6000000238418579,"Name":"generic.movementSpeed"},{"Base":40,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"Invul":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":300,"id":"WitherBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5130901120732393000,"Health":300,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":14321298824739,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"WitherBoss","subtypes":1}],"rewards":{}},{"questID":457,"preRequisites":[367],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Pluto","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you have been on Pluto."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":{}},{"questID":458,"preRequisites":[371],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Primordial Pearl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggered by the Primordial Pearl."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEldritchObject","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":459,"preRequisites":[374],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Wand Focus Animation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you craft the Primordial Focus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:focusAnimation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":460,"preRequisites":[381],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Vortex Attenuator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers after you craft a Vortex."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:vortexStabilizer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":461,"preRequisites":[384],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger The End Dim","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you arrived at The End."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":0,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":{}},{"questID":462,"preRequisites":[393],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Amorphic Catalyst","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you craft the Catalyst."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BloodArsenal:amorphic_catalyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":463,"preRequisites":[423],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:speedRune","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Runes tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Speed rune is the only tier 2 rune. The speed rune does what its name implies, provides an additive 20% increase to the processing speed of the blood altar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:speedRune","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:imbuedSlate","Count":2,"Damage":0,"OreDict":""},{"id":"AWWayofTime:speedRune","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":464,"preRequisites":[308],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:barnardaCdirt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The technician part 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I will ask the technician about this stuff, but I need to reach a good reputation first. He is a busy man, and I don't want to be denied."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"GalaxySpace:enceladusblocks","Count":10,"Damage":2,"OreDict":""},{"id":"GalaxySpace:proteusblocks","Count":10,"Damage":3,"OreDict":""},{"id":"GalaxySpace:plutoblocks","Count":10,"Damage":6,"OreDict":""},{"id":"GalaxySpace:barnardaCdirt","Count":10,"Damage":0,"OreDict":""},{"id":"GalaxySpace:vegabgrunt","Count":10,"Damage":0,"OreDict":""},{"id":"GalaxySpace:tcetieblocks","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":465,"preRequisites":[364],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Neutronium Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you get Neutronium Ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":1,"Damage":129,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":466,"preRequisites":[366],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Black Plutonium Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you find Black Plutonium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":1,"Damage":388,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":467,"preRequisites":[394],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Empty Void Capsule","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you have a Void Capsule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:capsule.void","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":468,"preRequisites":[396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger Thauminite Nugget","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triggers if you get Thauminite Nuggets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:resource","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":469,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:BerryBush","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCollecting some berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you now waiting for the carrots to grow? Go and find some berry bushes and berries. The berries are a good source of food and you can put these bushes around your house to make a wall. It should provide a good protection against all those monsters that want to come into your house and kill you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":5,"Damage":1,"OreDict":""},{"id":"Natura:berry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Natura:BerryBush","Count":5,"Damage":0,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:BerryBush","Count":2,"Damage":15,"OreDict":""},{"id":"Natura:BerryBush","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":470,"preRequisites":[469],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:berryMedley","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBerry medley","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hmmm... what can you do with all those berries? Just eating? You will see that they have a very low saturation Level. Let's plant the new berry bushes and mix the berries to make some better food."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":1,"Damage":1,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":3,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":2,"OreDict":""},{"id":"Natura:berry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"stickWood"},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood","Damage":100}},"Damage":34,"OreDict":"craftingToolKnife"},{"id":"minecraft:bowl","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Natura:berryMedley","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:BerryBush","Count":5,"Damage":15,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":14,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":13,"OreDict":""},{"id":"Natura:BerryBush","Count":5,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Natura:berryMedley","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":471,"preRequisites":[442],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:teaItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§1§lFood variants","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you noticed already that eating the same food too often is very boring and not healthy any more. Some food like tea leaf can be taken to the furnace and processed further. So take a break and drink a cup of tea. Maybe munch some tasty raisins as they are very nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:tealeafItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:grapeItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:teaItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raisinsItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2817,"OreDict":""},{"id":"harvestcraft:butterItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":472,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":56,"Head":3,"HeadEXP":0,"BaseAttack":3,"Built":1,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":3,"Broken":0,"Shoddy":0,"RenderHandle":3,"Accessory":3,"MiningSpeed":400,"RenderAccessory":3,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":56},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When your tinkers tables are ready you can craft your first tool. If you did not find a village yet you can only craft flint tools. Let's start with a pickaxe, an axe and a shovel. At this point swords are unobtainable since they need metals like iron or bronze which you will get at a later stage. In the meantime use your gregtech swords. Your new tools are weak at first but the more you use them the better they will get. They will level up to level 99 if you play long enough. Tool parts can be replaced for a bit of level XP, however the tool must be fully repaired first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":4,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":9,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:flint","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":1,"Damage":0,"OreDict":"plankWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:shovelHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"HeadEXP":0,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":0,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":400,"RenderAccessory":0,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Pickaxe"}},"Damage":0,"OreDict":""},{"id":"TConstruct:hatchet","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":5,"ToolEXP":0,"HarvestLevel":1,"Attack":5,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Hatchet"}},"Damage":0,"OreDict":""},{"id":"TConstruct:shovel","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":4,"ToolEXP":0,"HarvestLevel":1,"Attack":4,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Shovel"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:blankPattern","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":473,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:broadsword","Count":1,"tag":{"InfiTool":{"BaseDurability":427,"Head":14,"BaseAttack":7,"Built":1,"ToolEXP":0,"HarvestLevel":4,"Attack":7,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":427},"display":{"Name":"Bronze Broadsword"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMaking a better sword","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it's time to make your first tinkers sword. First you have to make blade, hand guard, and tool rod cast forms. Melt some bronze in the smeltery and cast your tool parts. Tadaa... there is your first tinkers sword."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":6,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:swordBlade","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:wideGuard","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":4,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":474,"preRequisites":[28,472],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:pickaxe","Count":1,"tag":{"InfiTool":{"BaseDurability":225,"Head":2,"HeadEXP":0,"BaseAttack":4,"Built":1,"ToolEXP":0,"HarvestLevel":2,"Attack":4,"RenderHead":2,"ModDurability":0,"Handle":2,"Broken":0,"Shoddy":0,"RenderHandle":2,"Accessory":2,"MiningSpeed":600,"RenderAccessory":2,"ToolLevel":1,"HarvestLevelModified":0,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":225},"display":{"Name":"Iron Pickaxe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§k§l§l§r§2§lUpgrade 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find iron, copper and tin ore. Very funny... How can you mine these with just a flint pickaxe? \nI have an idea; bring me all the stone you mined with your flint pickaxe and I will give you a better tool head in exchange."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:cobblestone","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:shovelHead","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":475,"preRequisites":[86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #4: Upgrade tier 5 - HSS-G Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like HSS-E, HSS-S, naquadah or draconium you need more than 4500K. Time to upgrade your EBF to 5400k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":476,"preRequisites":[475],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #5: Upgrade tier 6 - Naquadah Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process more advanced materials like naquadah-alloy you need more than 5400K. Upgrade your EBF to 7200k to increase the heat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":477,"preRequisites":[476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #6: Upgrade tier 7 - Naquadah Alloy Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the more advanced materials like neutronium or fluxed-electrum you need more than 7200K. Upgrade your EBF to 9001k. (OVER 9000!!!)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":478,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lFlint and steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make steel you are able to craft flint and steel. I guess you want to travel to the Nether as soon as possible but be aware; the Nether is a very dangerous place.\nNote: The ball of moss gives a tinker's tool self-repair. But if the tool is completely broke, it will have to repair to full health before fixing the tool."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":20305,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:arrow","Count":32,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:obsidian","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":479,"preRequisites":[478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§m§l§m§4§3§lTHE NETHER","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now more dangerous with extra hardcore infernal mobs. Have fun and take care. Be sure to bring a tough companion along to keep you alive. If you have no friends, why not make an Iron Golem and push it through first, or bring the materials for more along with you?\n\nAlso, *when* you die here, not if, your graves will spawn skeletons because of the darkness. Make sure you light up areas where you might die, and when recovering graves light up the area *first* so that you don't end up dying over and over and making a mess."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:obsidian","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"THE NETHER","range":-1,"index":1,"dimension":-1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:natura.armor.imphelmet","Count":1,"tag":{"ench":[{"lvl":1,"id":0},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impjerkin","Count":1,"tag":{"ench":[{"lvl":1,"id":3},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impleggings","Count":1,"tag":{"ench":[{"lvl":1,"id":4},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"Natura:natura.armor.impboots","Count":1,"tag":{"ench":[{"lvl":1,"id":2},{"lvl":1,"id":1}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":99,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":97,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":480,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":871,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMalachite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another copper source is \"malachite\" which can be found between Y level 10 and 40. This vein contains more iron ore variants like \"brown limonite\", \"yellow limonite\" and \"banded iron ore\".\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in nei and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":871,"OreDict":"oreMalachite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":917,"OreDict":"oreBandedIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":931,"OreDict":"oreYellowLimonite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":930,"OreDict":"oreBrownLimonite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11035,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32240,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":481,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:fluid.creosote.bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§l§2§lCreosote oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I guess you already processed a bit of wood into charcoal and wonder what you can do with all this creosote oil?\nWell you can burn it in the normal furnace to cook your food or you can make more torches with it. Later in the LV age you probably should run combustion generators with it."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":482,"preRequisites":[483,1476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Cow"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAnimal farms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Trying to get some leather or wool? You probably need to spend a lot of time hunting animals and traveling around, or you could simply make a farm to get a decent amount of leather, wool and meat. Make sure you don't put too many animals in the pen or they will overcrowd and kill each other."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:beef","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wool","Count":100,"Damage":0,"OreDict":"blockWool"},{"id":"harvestcraft:muttonrawItem","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:porkchop","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:chicken","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":100,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:shears","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:mattock","Count":1,"tag":{"InfiTool":{"MiningSpeed2":700,"BaseDurability":67,"Head":314,"BaseAttack":6,"Built":1,"ToolEXP":0,"HarvestLevel":6,"Attack":6,"RenderHead":314,"ModDurability":0,"Handle":314,"Broken":0,"Shoddy":0,"RenderHandle":314,"Accessory":314,"MiningSpeed":700,"RenderAccessory":314,"ToolLevel":1,"Unbreaking":10,"HarvestLevel2":6,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":67},"display":{"Name":"Unstable Induced Mattock"}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":483,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat_seeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGardener","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are wondering: Why do I never get seeds when destroying grass? You are right. Try to work with your new mattock on the grass blocks that do not have water anywhere nearby to find some seeds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":4,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:shovelHead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:mattock","Count":1,"tag":{"InfiTool":{"MiningSpeed2":650,"BaseDurability":534,"Head":14,"BaseAttack":6,"Built":1,"ToolEXP":0,"HarvestLevel":4,"Attack":6,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"HarvestLevel2":4,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":534},"display":{"Name":"Bronze Mattock"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11300,"OreDict":""},{"id":"TConstruct:GravelOre","Count":2,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":484,"preRequisites":[6],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCan you hear the carrots grow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of waiting since your carrots grow sooooo slow?\nWell I got an idea, bone meal will help you grow food in seconds. Ok, chop down some trees and I will trade you some bone meal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":64,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":10,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:dye","Count":10,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":6400,"SecondaryMaterial":"Wood"}},"Damage":6,"OreDict":""},{"id":"minecraft:torch","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":3,"Damage":15,"OreDict":""}]}]},{"questID":485,"preRequisites":[24],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou need MOOOOOOORE wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to feed your new coke oven with some wood to get more charcoal. You are looking for the most efficient way to plant trees. Try to find some spruce saplings and some jungle saplings. Both can be planted in a 2x2 grid to get bigger trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":4,"Damage":1,"OreDict":""},{"id":"minecraft:sapling","Count":4,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":0,"OreDict":""},{"id":"Natura:florasapling","Count":49,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:colorizedSaplings","Count":1,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":486,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lTanned leather","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have found a way to make leather more durable and more resistant by further processing it. Make some bound leather from four pieces of leather, some strings and a woven cotton. Now you only have to hang it on a drying rack and wait about 10 minutes to get some tanned leather. Stockpile some for later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:Armor.DryingRack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Backpack:boundLeather","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":487,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNeed more space?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you might know: tanned leather is more resistant and good enough for a backpack. Let's get a digger's backpack and a miner's backpack. Each pack holds different items. So use both for your first true back-packed mining experience."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:minerBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:cooked_beef","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:leather","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":488,"preRequisites":[487],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:foresterBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYou need them all!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are many more backpacks: Hunter, builder, forester..."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:foresterBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:hunterBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:builderBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":1,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":489,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"SpiceOfLife:lunchbox","Count":1,"tag":{"UUID":"60ced69d-32df-413d-ac1d-28b72b4c8621","Inventory":{"Items":{}},"Open":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBetter lunch bag","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your lunch bag is now so abused and rather old so it's time to get something better. Let's craft a lunch box which can hold way more food."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"SpiceOfLife:lunchbox","Count":1,"tag":{"UUID":"60ced69d-32df-413d-ac1d-28b72b4c8621","Inventory":{"Items":{}},"Open":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:delightedmealItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:bltItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":490,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Horseback riding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you ready for a small trip? With your new lunch box, saddle, lead and of course a horse we can start a small journey. Be sure to make paths over water, horses don't like going over deep water."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:fence","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fence","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":491,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"sleepingbag:sleepingBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSleeping outside","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Carrying the bed with you all the time the looks very funny. Why don't you craft a sleeping bag to stay outside without placing a bed and changing your spawn point. This way if you die, you'll be right at home! Be warned: If you play on a server then you'd better sleep below Y level 128, as nights are very cold in the mountains..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wool","Count":3,"Damage":0,"OreDict":"blockWool"},{"id":"minecraft:carpet","Count":3,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"sleepingbag:sleepingBag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:leather","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":492,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Sheep"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lSheep hairdresser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Killing sheep to get the wool is so ineffective. Making some shears would make sense if you need more wool."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":"ringIron"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":"screwIron"},{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"stickWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":5,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":18,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":22,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":10,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":493,"preRequisites":[48],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":26,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWire Cutter v.0.2alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Small gears require a wire cutter to be made, so let's craft one."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":494,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:redstone_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRedstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you didnt't find any Redstone veins yet, it is quite important to look for one now. Try your luck at Y level 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":502,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":32221,"OreDict":""},{"id":"TConstruct:oreBerries","Count":5,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":495,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOh, shiny! (Not platinum!)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your first macerator you need two diamonds, and to enter the Twilight Forest you need one. Finding a diamond vein would help you a lot. Go and look for one at Y level 5-20."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":500,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":865,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":535,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32234,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32232,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"IC2:itemPlates","Count":5,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17032,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":496,"preRequisites":[51,479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemDust","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHow to make rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making rubber is now more complicated - you need raw rubber and sulfur. Finding a sulfur vein in the Nether seems like a good idea, doesn't it? Found on Y level 5-20. Later on you can get sulfur from chemicals like hydrogren sulfide or pyrite.\n\n§4Sphalerite will be important later for gallium and zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1022,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1834,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1839,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:peaandhamsoupItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"Natura:barleyFood","Count":8,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":497,"preRequisites":[478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1155,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lLit way to get charred","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have found an alternative way of making charcoal with a \"charcoal pile igniter\". \nGo and start getting massive amounts of charcoal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21305,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1155,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":498,"preRequisites":[36,74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:filledbucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lXP usage?!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Exploring some dungeons or fighting mobs probably gave you a lot of XP. Better use it to get iron, copper, tin or other useful dusts before you die during the next fight.\n\nPlace your tank on the ground and a drain on top. Now you can fill it with XP.\n\nBy the way, you discovered that while the seared tank doesn't hold much, it doesn't lose contents when broken, and full tanks can stack. I wonder if that information is useful..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:LavaTank","Count":1,"Damage":0,"OreDict":""},{"id":"OpenBlocks:xpdrain","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:experience_bottle","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":499,"preRequisites":[72],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diesel, creosote: Watch them BURN!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have almost made it. One last crafting step is required in order to advance to tier 2. Keep going!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1110,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cranberrybarItem","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":500,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialScoop","Count":1,"tag":{"charge":4990},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First things first","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As usual. In order to get started with bees, you need a few basic things. Most importantly... a scoop. For this quest you want to make a GregTech scoop. Later you can make scoops using magic or even rechargeable scoops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":501,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"NA":0,"Health":20,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Go find some bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next thing to do: Find a few bee hives around the world. There are 11 mundane bees that can be found, of which 8 are located in the Overworld. Any kind of bee will work for this quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":502,"preRequisites":[1112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A new home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've destroyed the poor bees homes, you should build them a new one. The humble Bee House will not let your bees mutate into new species. But you'll need the combs anyways for better housing. The production rate isn't too bad, but they cannot be automated.\n\nOne tip - Put some vanilla saplings near the Bee Houses. Bee Houses give a natural boost of 3x to pollination vs better housing. The bees will pollinate them and you might get lucky and start getting some Forestry tree crossbreeding. Stick with Oak and Birch trees, they'll give you a nice mix of starter Forestry trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":503,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BinnieCore:fieldKit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyze them all","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every bee has multiple properties that define what the bee does, how it behaves in rain or at night, and a couple of other aspects. It is mandatory to keep track of those properties. This kit isn't very good since it doesn't give you information on their Inactive attributes, but waste not, want not.\n\nYou'll need to use paper to analyze each bee."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BinnieCore:fieldKit","Count":1,"Damage":63,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"minecraft:paper","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":504,"preRequisites":[503],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beealyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scan or not to scan","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to get into bee breeding, you need a way to see all the traits, active and inactive. You only want to breed so called \"pure\" bees; For those, both \"Active\" and \"Inactive\" traits are identical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beealyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":505,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Top-Tier analyser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best you can get, for all your scanning and analysing needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":10,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":506,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:MutagenBucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"To play god","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to continue with bees, to mutate and breed them as you like, you need mutagen. This greenish, smelly liquid needs to be refined from bacterial sludge that seems to be available only on Mars. You will be able to continue, once you've arrived there.\n\nIn the meantime you can start working with the Genetics mod, since we all know Gendustry is too easy... Check out the recipes and you will understand why you should look into the Genetics mod."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Visit Mars","range":-1,"index":0,"dimension":29,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesOblivion","UID0":"magicbees.speciesOblivion","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesOblivion","UID0":"magicbees.speciesOblivion","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":507,"preRequisites":[578,1113,502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgraded home","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Bee House can be used to stabilize mutations, for example if you have successfully bred two different bees, but the passive traits are different from the active ones. \n\nTo actually breed those together to get a new species, you'll need something different - the Apiary. Building them will require a Carpenter and Impregnated frames, along with Seedoil and Creosote - quite a bit of industrialization! Or, if you're lucky, you can find a beekeeper villager to trade with for useful items. Maybe you can help the villagers *get lucky* to make more beekeeper villagers? If only Cupid and his bow were around...\n\nProduction rates in an empty Apiary are low - lower than a Bee House by quite a bit, in fact. But the Apiary has two big advantages - Frames, and Automation. You can now use your Untreated or Impregnated frames in here to boost output - and the boost is multiplied. So 3 x2 frames gives you 2 * 2 * 2 = 8x extra output!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:frameUntreated","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":508,"preRequisites":[506],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Mutatron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutatron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mutations can be boring, they can be annoying, and most times, they are frustrating. With this machine, you will get a 100 percent pure bred mutation. If the combination of princess and drone can result in multiple mutations, the outcome is random. But who cares?\n\nYou can now upgrade your leftover Bees Advanced bags to Bees Expert in the last quest tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Mutatron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":509,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Sampler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic sampler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With this machine, you can extract a random trait from any bee, sapling, butterfly or flower. The bee/sapling/butterfly/flower will be destroyed in this process. Each process requires an empty gene sample and some labware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Sampler","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":510,"preRequisites":[515],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Labware","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diamondware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Also known as labware. Be prepared. In order to do serious bee-work, you need stacks of diamonds. I'm not joking, stacks! Better start working on that diamond bee!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Labware","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":511,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Imprinter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic imprinter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With this powerful machine, you can inject gene samples, which allows you to alter any aspect of your bee/tree or butterfly. The gene sample (or pattern) will not be destroyed. The success rate is 100%, and one labware is consumed per injection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Imprinter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":512,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Transposer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic transposer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"DNA samples of species and/or traits are pretty valuable. You always should keep at least one of each effect/trait/species you get your hand on in a chest somewhere safe. By using this machine, you are able to copy any DNA sample, for the cost of an empty serum vial and some labware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Transposer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":513,"preRequisites":[508],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:MutatronAdv","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced mutatron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A more advanced version of the mutatron. It uses more energy to mutate a drone with a princess, but the mutation is a 100 percent success, and you can select which mutation you want to have. This machine is a must-have for high-tier bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:MutatronAdv","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:Labware","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":514,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSampleBlank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blank gene sample","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get the various traits from a bee, you need a lot of power, labware and an empty gene sample. You don't need a lot of those, as you can just throw them in a furnace to remove remaining DNA of traits you don't need or want. \n\nIn the meantime you can start working with the Genetics mod, since we all know Gendustry is too easy... Genetics is used for bees, trees, and Botany flowers so it gets its own quest tab. Gendustry is really good for bees, but will require top tier equipment."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSampleBlank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":515,"preRequisites":[514],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneTemplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genetic template","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Templates are used to combine multiple gene samples into one large batch. It can be used to apply multiple traits at once, but you can also replicate a bee from liquid DNA and protein, if you manage to fill all 13 traits in one template. These templates can also be copied, just like the small samples."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneTemplate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":516,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Extractor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A rather cruel disposal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably will end up with a lot of excess drones while doing bees. (Or saplings if you do trees). Instead of throwing them away, you could also turn them into... Something useful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Extractor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":517,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Liquifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arnie's blender","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They say, breakfast is the most important meal of the day. This machine turns raw meat into liquid protein, which is used to create bees from scratch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Liquifier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":518,"preRequisites":[510],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:Replicator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"And there shall be light","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Out of princesses to inject traits to? Too lazy to find hives and get more bees? Not a problem. With this nifty little device, you can use a ton of power, liquid DNA and protein to create any bee you wish to have. The only drawback is: All bees will be ignoble, which means they will die after a random amount of cycles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:Replicator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":519,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDoctoral","chromosome":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Temperature 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":520,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Humidity 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":7},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":521,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.toleranceBoth3","chromosome":4},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Fertility 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bees bees everywhere!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.fertilityMaximum","chromosome":3},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":522,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Draconic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDraconic","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":523,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Doctoral","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesDoctoral","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":524,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Speed Fastest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Buzz buzz buzz, working hard and really buzzing!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.speedFastest","chromosome":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":525,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend species: Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"magicbees.speciesSilicon","chromosome":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":526,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Rain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Beekeeping in the rain! Make sure to keep your GT machines covered!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":527,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Day and Night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bee working day and night, all night and all day long!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":5},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":528,"preRequisites":[509],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":8},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Only the Best: Cave","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On your way to awesome bees, you have to collect only the best traits available. Bees with Cave can work in housing that is covered - by more housing!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:GeneSample","Count":1,"tag":{"species":"rootBees","allele":"forestry.boolTrue","chromosome":9},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":529,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32680,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fifth item you'll need a lot of. For the microwave, the scanner, the precision laser engraver, etc."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32680,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":530,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32690,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lYou're gonna hate this #6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sixth item you'll need a lot of. For the scanner and the seismic prospector."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32690,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":531,"preRequisites":[717,97,529,530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lScanning bees, crops and moooooore!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Automate your bee, sapling, or crop scanning. Later on, this machine gets very useful for scanning high tier machine parts for the assembly line research data or to fill data orbs with data for the UU matter production. Data sticks with raw prospecting data need a scanner too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":532,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiesel, oil or maybe creosote?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably collected a ton of creosote and maybe even have built your first ELECTRIC blast furnace. Creosote will be a good fuel for the moment. So try to build a few of the combustion generators and use them besides steam as a secondary power source. Small generators will only use fuel if there is EU demand.\n\nTo extract the creosote from your coke ovens, you can use buckets or cells to do it by hand, or the TiCon faucet into GT fluid pipes, or an electric pump cover from You're Going to Hate This #2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30709,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":533,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lHydrogen, methane or some farts... (Natural gas) ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some centrifugal processes leave gases behind like hydrogen or methane. Centrifuge some brown and yellow limonite to get hydrogen or dump your unused food in a centrifuge to get methane gas. Wood will even give 60 mb per log. Maybe it's time to build a forestry tree farm. Or you can start refining oil into refinery gas or naphtha to burn.\n\nGas turbines produce half the pollution of combusion generators, but their fuels are generally not as efficient. Choice is up to you which power source you use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1115,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30742,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":534,"preRequisites":[65,69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:dreamcraft_Pollution","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lPollution what....?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are running your bricked blast furnace for a long time you will sometimes get headaches, nausea and other weird effects. Yes this is pollution... from making so much steel. If you can collect some rubber sheets, I will trade you a complete hazmat suit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":535,"preRequisites":[494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":5810,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lRedstone, early game processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you wondering how to process redstone without a macerator? Well you can mine it with a gregtech hammer and get the crushed ore. Then use with the hammer in the crafting table to get some impure redstone dust. After this, fill a cauldron with water and drop the dust in it - CTRL-Q drops a whole stack but you will need a new iron bucket as the fired clay bucket just isnt fit for the task. You will get pure redstone dust for your red alloy ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":12,"OreDict":"craftingToolHardHammer"},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:water_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":5810,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":3810,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockores","Count":10,"Damage":810,"OreDict":""}]}]},{"questID":536,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLow tier wires","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Low tier wires like red alloy and tin can be made in a crafting table. Copper wire requires an alloy smelter. So let's make a mold for the rubber plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"dreamcraft:item.MoldFormPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:creamedbroccolisoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":537,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Witch)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Witches bring stitches because they are always infernal and very dangerous. Be careful since they throw potions at you."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":26,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.25,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":26,"id":"Witch","Anger":0,"ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":6323763076874975000,"Health":26,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":50486316337289,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Witch","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":538,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":391,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic ore washer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Macerating ores usually doubles the output. If you want MOOOOOOORE, craft an ore washer and wash out some rare materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":391,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":539,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":361,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lRound and round and round...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After purification of your ore dust, you can centrifuge it to get even more byproducts out of the dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":361,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":540,"preRequisites":[541],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32721,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA truly sharp saw blade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining cobalt brass and diamond dust makes a really sharp saw blade for your cutting machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31343,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":1500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32721,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chocolatemilkshakeItem","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":541,"preRequisites":[91],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11343,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA new alloy - Cobalt Brass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to cut diamond blocks into plates, it's time to get a new alloy 'cobalt brass'.\nFirst you need to make brass out of zinc (only found in small ores in the Overworld, in Nether Sphalerite, or as a centrifuge byproduct from tin or tetrahedrite) and copper. Mix it with aluminium and cobalt dust (can be centrifuged from various materials) to get the cobalt brass dust.\n\nNow that you have come this far, we think that you are able to look up the ores that you need by yourself with the help of NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2036,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":2301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2033,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":2343,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32222,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":542,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lWater and electricity, sounds fun and safe right?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using the power of water and electricity you can get even more out of your dusts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":543,"preRequisites":[550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lC9H8O4...NaCl...H2O...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some cetane-boosted diesel, plastic or some chemical dyes? Then it's time to craft a chemical reactor.\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":544,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":241,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCompact? Or is it?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is a compressor but that doesn't mean it is compact... \n\n§4Hint:\nIt is highly recommended to get one of these electric compressors, as the efficiency in terms of coal/steam used to compress something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":241,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":545,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":271,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§5§lSuction device... nice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I hope you are not thinking about what I am thinking you are thinking about... \n\nHint:\nIt is highly recommended to get one of these, as the efficiency in terms of coal/steam used to extracting something is a lot better when using EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":271,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":546,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:blockOil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHello Baron, how is your black gold today?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"During your travels you may have seen some of these huge oil spouts. Now it's time to go make a pump and put this black gold into tanks. Oil can be burned directly in a combustion generator or be refined for better fuels and crafting materials. \nMining pipes are needed for pumping the oil.\n\nBring a combustion generator with you to power the pump. Thanks to the advancement of technology the pumping machine can auto output on top.\n\nStacking multiple pumps makes them work faster. In that case, oil has to be removed from the bottom of the stack using a pump cover.\n\nTaller spouts have more oil! But for the LV pump, it is better to use the short spouts since it doesn't have much range. Save the taller spouts for MV pumps. \n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BuildCraft|Factory:tankBlock","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":547,"preRequisites":[546,102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lYour oil is too Crude? Refine it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Burning oil in the combustion generator is a very inefficient way of producing power. Every bucket/cell of oil only gives you 20,000 EU. Time to try and refine it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":548,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30737,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLight Sulfuric Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step is to distill your oil into light sulfuric fuel, that has a burn value of 40,000 EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30737,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":549,"preRequisites":[543,548,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLight fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By adding hydrogen to sulfuric light fuel in a chemical reactor you can produce some light fuel with the very high burn value of 320,000 EU.\n\nThe remaining hydrogen sulfide cells can be used later to produce some sulfuric acid for your TNT/iTNT or acid batteries.\n\nIn MV age you can make diesel out of light and heavy fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30740,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"irontank:obsidianTank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":550,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lH like Hydrogen... rest of the alphabet is too complicated...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuge some brown or yellow limonite dust to get some hydrogen, or use an Electrolyser with some water to produce it in a fluid form."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:mushroom_stew","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":551,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_sulfuricheavy_fuel","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHeavy Sulfuric fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second step is to distill your oil into heavy sulfuric fuel, that has a burn value of 40,000 EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30738,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":552,"preRequisites":[551,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_heavy_fuel","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHeavy fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By adding hydrogen to sulfuric heavy fuel in a chemical reactor you can produce some heavy fuel with the burn value of 200,000 EU.\n\nThe remaining hydrogen sulfide cells can be used later to produce some sulfuric acid for your TNT/iTNT or acid batteries.\n\nIn MV age you can make diesel out of heavy and light fuel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30741,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":553,"preRequisites":[751,549,552],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:blockFuel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiesel fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing your light and heavy fuel together gives you some diesel. You need the MV mixer for it. It burns very well in the combustion generator with a burn value of 480,000 EU per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30708,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":554,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":581,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHey DJ, Mix it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The mixer is a very useful device. You can mix all kinds of fluids and items. Useful to prevent dust from falling to the ground when crafting - most mixer recipes give a slight boost over hand crafting!\n\n§4Hint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":581,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":555,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"hydrogen","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lN like nitrogen... Hide, alphabet strikes again!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can get some nitrogen by centrifuging... air. This process takes a long time, especially at the LV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30012,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":556,"preRequisites":[555,543,80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30714,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGlyceryl trini...... what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Kids, today we will make some glyceryl trinitrate (aka Nitroglycerin) with some glycerol.\n - Chemistry 101"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30629,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30714,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":557,"preRequisites":[549,841],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:pattern.fluid","Count":1,"tag":{"fluidID":"nitrofuel"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNITRO! (Cetane-boosted diesel)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"720,000 EU per cell. Yes, yes, this is very good! Make some cetane-boosted diesel fuel and power your Combustion Engine with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30709,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":558,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Backpack:backpack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWhat can I put all these items in?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make your first steel you're able to craft the small backpack. In this bag you can put a lot of the stuff you want to carry around. With 36 slots it's a bit bigger than a small chest. Later you can make it even larger. You can put one on your back and set it to automatically pick up stuff. \n\n§4Check out the \"Backpacks\" control configuration \"Open Backpacks\" and remap it to a new key. \n\n§4The maximum you can have in your inventory at once is 4."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28305,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":3,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Backpack:backpack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:paintbrush","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32414,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32415,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32416,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32417,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32419,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32418,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32420,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32421,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32422,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32423,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32424,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32425,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32426,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32427,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32428,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":10,"Damage":32429,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":559,"preRequisites":[560],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLow pressure boiler tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The low pressure boiler tank is the easiest way to store steam. The firebox needs this tank on top to produce steam. The bigger the boiler the slower it heats up, but it will produce more steam when heated up.\n\nExtract steam by attaching a pipe to the boiler tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":18032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.SteelBars","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"Railcraft:fuel.coke","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":560,"preRequisites":[59],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lRailcraft steam power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As an alternative way to make steam you can use the railcraft boilers. They require at least one firebox.\nMore than one size is possible: (1x1 mentioned above) 2x2 and 3x3. \n\nProvide water and coal to the firebox. Make sure you don't run out of water or...BOOM.\n\nEach boiler needs 1, 2 or 3 layers of tanks on top, equal to the size (1x1x1, 2x2x2, or 3x3x3)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":1,"Damage":13,"OreDict":""},{"id":"minecraft:brick_block","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"harvestcraft:figjellysandwichItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":561,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLiquid fuelled firebox","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cresosote oil into steam! After you make your first steel you are able to craft a liquid fueled firebox.\nDiesel, ethanol, creosote and biodiesel all work well here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SteelBars","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":1,"Damage":13,"OreDict":""},{"id":"IC2:blockMachine","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30712,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":562,"preRequisites":[561],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHigh pressure boiler tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you make steel you are able to craft a high pressure boiler tank. The upgraded version increases the temperature and produces more steam than the low pressure version. It will take longer to warm up, so make sure to keep it well fed!\n\nExtract steam by attaching a pipe to the boiler tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":18305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:meatfeastpizzaItem","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32240,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":563,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§3§lBookshelves...? Ah forestry... Multiblock farms!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The bookshelf can only be made with wood planks, which are made in a compressor. Perhaps someone thinks this is a bit crazy...\n\n§4This will unlock the Forestry Worktable, a great tool for keeping your crafting from driving you insane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":564,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Forestry Basic > Advanced","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic foresters lootbags give a better one = Advanced Foresters Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":20,"OreDict":""}]}]},{"questID":565,"preRequisites":[595,594,593],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Forestry Advanced > Expert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three advanced foresters lootbags give a better one = Expert Foresters Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":21,"OreDict":""}]}]},{"questID":566,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Space Invaders Moon > Space Invaders Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three space invaders Moon lootbags give a better one = Space Invaders Mars Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""}]}]},{"questID":567,"preRequisites":[566],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Space Invaders Mars > Space Invaders Asteroids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three space invaders Mars lootbags give a better one = Space Invaders Asteroids Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""}]}]},{"questID":568,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Novice > Adept","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three novice lootbags give a better one = Adept Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":569,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Adept > Master","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three adept lootbags give a better one = Master Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":570,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Master > Grandmaster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three master lootbags give a better one = Grandmaster Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""}]}]},{"questID":571,"preRequisites":[307],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Grandmaster > Grandmaster Unique","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sixteen grandmaster lootbags give a better one = Grandmaster Unique Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":16,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":13,"OreDict":""}]}]},{"questID":572,"preRequisites":[161],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"BM Novice > BM Adept","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three BM novice lootbags give a better one = BM Adept Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":17,"OreDict":""}]}]},{"questID":573,"preRequisites":[421],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"BM Adept > BM Master","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three BM adept lootbags give a better one = BM Master Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":17,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]}]},{"questID":574,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Bee Basic > Advanced","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three basic bee lootbags give a better one = Advanced Bee Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":25,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":575,"preRequisites":[509,508,2089],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"OR","name":"Bee Advanced > Expert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three advanced bee lootbags give a better one = Expert Bee Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":576,"preRequisites":[586,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Working table 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A manual crafting table which remembers the last nine used recipes. Left click one of the recipes shown in the right-hand side to automatically fill in the crafting grid. Right-click to lock a memorized recipe and prevent a newer recipe from bumping it off.\n\nResources need to go into the internal inventory. The crafting matrix is only a visual representation.\n\nThe Forestry worktable is super-useful, and can reduce the tedium of many common jobs because you can click-drag across a row of items, and it will use tools in its own inventory to continue crafting. Specifically:\nMaking torches with creosote - just drag-click all your buckets into the worktable\nMaking fresh water for Pam's - Same as above\nMaking fresh milk for Pam's - Same as above\nMaking clay bricks - a wooden form is automatically reused\nMaking concrete - not tested, but would probably make this easier too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11304,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"forestry.fruitApple","UID0":"forestry.fruitApple","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":577,"preRequisites":[576,73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sturdyMachine","Count":2,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forestry core block","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This sturdy casing is the basis for almost all machines in Forestry, essentially being the forestry equivalent of a machine casing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":18300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:sturdyMachine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"minecraft:bookshelf","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":578,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The carpenter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The carpenter is similar to an automatic crafting table. It has an item input slot and a storage slot for the recipes. Some recipes need an additional fluid like water, creosote, honey or molten redstone. With the carpenter you can make farmblocks, woven backpacks, bee and tree analysers and many more.\n\nThe carpenter needs power to work. You can use a GT cable or a battery box to connect to the machine or make some forestry, railcraft or buildcraft RF engines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17310,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32650,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20305,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":10,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30712,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":579,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":511,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMolten redstone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You heard that the carpenter needs some molten redstone for a few recipes. \nConverting redstone dust into a fluid requires a fluid extractor. Let's build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":511,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:appleciderItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:frenchtoastItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":580,"preRequisites":[577,585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thermionic fabricator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The thermionic fabricator is used to craft electron tubes and stained glass. It requires redstone flux (RF) energy to run. It is your first machine made in the carpenter. Once warmed up, it needs to maintain a certain heat level to operate. The amount of power supplied will determine how much heat will be generated. If you do not supply enough power to maintain the current temperature it will slowly drop. It will continuously draw power, so disconnect it if you don't need it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:factory2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:factory2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":8530,"OreDict":""},{"id":"minecraft:dye","Count":16,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":581,"preRequisites":[580,588],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Series of Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you can craft your first farm block you need apatite tubes. Make some apatite rods first with a lathe, then use a forge hammer to join them into long apatite rods. You need golden bolts and a red alloy plate.\nPut some glass or sand into your thermionic fabricator and make your first tubes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22530,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":582,"preRequisites":[578,581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your first multiblock farm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The smallest farm you can build requires 36 farm blocks (3x4x3 - the largest is 5x4x5 or 100 farm blocks). For water input you need a valve, items go through the hatches, and to supply the farm with energy you need a gearbox. With the farm control block you can control which fields of your farm work by applying a redstone signal. Remember to put creosote in the carpenter when crafting the different farm blocks. If you need the farm to work faster, just add more gearboxes.\nYou can use Orchard mode to collect Pam foods and Natura products. You can even mix and match modes on the same farm - logging and collecting fruit from trees, for example."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stonebrick","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":36,"Damage":18035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":27305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":9,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":36,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11035,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":583,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced. Farms can work without it. But if you want to configure your farm you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32700,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32700,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":584,"preRequisites":[583],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:solderingIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Change your farm circuit configuration","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The (forestry) soldering iron is a tool used for attaching electron tubes to circuit boards in order to manipulate how an electrical engine works or to program multiblock farms. As well as upgrading the squeezer or centrifuge.\nOnce electron tubes have been attached to a circuit board they cannot be removed, only replaced. The circuit board is automatically crafted as soon as the basic recipe requirements are met, so it's best practice to first place your electron tubes and then add the circuit board.\n\nThe soldering iron can also be used to remove the circuit board from electrical engines, multiblock farms, squeezers and centrifuges by opening the machine's GUI and left clicking with the soldering iron on the circuit board slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":26305,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:solderingIron","Count":1,"tag":{"Slots":{"1":""},"UID":109547956},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":585,"preRequisites":[578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemRecipePart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heating coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your thermionic fabricator needs heating coils to function. So combine some magnetized (requires polariser) steel rods with some copper wire and make some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23355,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5112,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":586,"preRequisites":[472],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Welcome to forestry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some automated farms or work with bee and tree breeding? Want the Forestry Worktable for easy recipe access? Then this is the right chapter for you.\n\nForestry farms in Orchard mode will even fertilize, water and harvest IC2 crops on cropsticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:honeyedSlice","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":587,"preRequisites":[96],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23355,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnetize your rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnetic steel rods need a polariser to craft. Make a few for your coils.\nMv Motors need the Polariser so better build them soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23355,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:lever","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":588,"preRequisites":[580],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8530,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finding Apatite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's now time to search for some ores. Apatite is the most important material in Forestry. You can make fertilizer, farm blocks and many other things. The vein is found between Y level 40-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":530,"OreDict":"oreApatite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":534,"OreDict":"orePhosphorite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":607,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"harvestcraft:frenchtoastItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32224,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":589,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm hatch (Item pipe connectivity)\n\nYou can supply and extract items from the farm by using farm hatches that are connected to pipe systems. \n\nSupplying items\nThe farm hatch is clever enough to know which item goes where. If an item isn't appropriate for the farm's configuration, the hatch will simply reject it.\n\nExtracting items\nAny item that is harvested by the Multifarm is automatically ejected by the farm hatches into inventories or pipes. Pipes can be used to extract from other sides."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32630,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":590,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm valve (Hydration)\n\nSome farms require water for hydration purposes. Although you can do it manually by supplying it through liquid containers (such as cans), you can also automate the process by using farm valves.\n\nBy connecting fluid pipes into the farm valve and supplying water, you can automatically fill the farm's water tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28880,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":591,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Control block","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm control\n\nYou can control which fields of your farm work by applying a redstone signal to the control block. You can either shut down the whole farm by applying a redstone signal from top or below or you can disable a specific side by applying a redstone signal on the matching side of the control block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":592,"preRequisites":[582],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Multiblock farm: Gearbox","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Farm gearbox (Power)\nTo power your farm and have it automatically harvest crops, you will need at least one farm gearbox.\n\nFarm operations can be hastened with additional gearboxes.\n\nEach farm gearbox requires power. You can use either RF or EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":1,"tag":{"FarmBlock":0},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31305,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:ffarm","Count":2,"tag":{"FarmBlock":0},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":2,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":4,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":593,"preRequisites":[583,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":1},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enhanced farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the basic one. The farms can work without them. However, if you want to configure your farm you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29300,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":1},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":594,"preRequisites":[593,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":2},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refined farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the enhanced one. The farms can work without them. If you want to configure your farm even more you will need one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":29305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":19305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":2},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":595,"preRequisites":[594,584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:chipsets","Count":1,"tag":{"T":3},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Intricate farm logic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip is optional and more advanced than the refined one. The farms will work without them, but if you want to configure your farm even more you will need one of them.\n\nHint: The circuit assembler recipe is cheaper than the carpenter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:chipsets","Count":1,"tag":{"T":3},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32079,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":35,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":35,"Damage":0,"OreDict":""}]}]},{"questID":596,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:pickaxeHead","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§k§l§1§2§3§lUpgrade of the upgrade of the...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's upgrade time. Unlock redstone and obsidian level for your different tools.\n\nRemember, a fresh tool head starts at one level below. So you'll need to use it enough to level it up before you can mine at the proper level. Go strip-mine a mountain or something."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:pickaxeHead","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:shovelHead","Count":2,"Damage":16,"OreDict":""},{"id":"TConstruct:hatchetHead","Count":2,"Damage":16,"OreDict":""},{"id":"TConstruct:swordBlade","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:toolRod","Count":1,"Damage":31,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":31,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":8,"OreDict":""},{"id":"TConstruct:binding","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":597,"preRequisites":[496,105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":1840,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lTetrahedrite, stibnite and copper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why you need tetrahedrite or stibnite. Well, antimony can be centrifuged out of it which is very useful for batteries in the LV Age.\nThe veins can be found between Y level 80-120."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1840,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1945,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1035,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:carrotsoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2089,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":598,"preRequisites":[597],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2058,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAntimony","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The most efficient way to get antimony for batteries is to centrifuge stibnite dust, the second most efficient way is to use tetrahedrite dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2058,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:food","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":599,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":381,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThermal centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A machine to get different byproducts out of your crushed and purified ore dust. This machine becomes very useful when you have reactors and want to recycle your depleted fuel rods. It's usefull for tiny piles of Gallium out of Zinc or Sphalerite Ore for your Diodes needed in good circuits.\nIf you can't produce the 2A of LV power for this machine right now, wait until you get to MV and use transformers to power an LV version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":381,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":600,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hunger, no more","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The hunger is constantly following you, consuming you, never letting you rest. The world around you is full of nourishing fruits, vegetables and crafted meals. Use them to curb your insatiable hunger."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:leafygarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:mushroomgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:stalkgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:textilegarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:tropicalgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestthenether:netherGarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:groundgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:berrygarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:desertgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:grassgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:gourdgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:herbgarden","Count":8,"Damage":0,"OreDict":""},{"id":"harvestcraft:watergarden","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"harvestcraft:firmtofuItem","Count":128,"Damage":0,"OreDict":""},{"id":"harvestcraft:silkentofuItem","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"harvestcraft:delightedmealItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:rainbowcurryItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":20,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":601,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:builderswand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Building made easy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing blocks by hand can be tedious. Wouldn't it be nice to be able to place blocks like \"Another 9 here\"? Well, good news. Get yourself some of the various building blocks, and I shall reward you with something nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"chisel:rebel","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:laboratoryblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:holystone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:grimstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:hexPlating","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:fantasyblock2","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:fantasyblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:factoryblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:concrete","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:technical","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:tyrian","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:waterstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:voidstone2","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:templeblock","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:valentines","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:voidstone","Count":16,"Damage":0,"OreDict":""},{"id":"chisel:warningSign","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"chisel:diamond_block","Count":1,"Damage":12,"OreDict":""},{"id":"chisel:emerald_block","Count":1,"Damage":5,"OreDict":""},{"id":"chisel:lapis_block","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:redstone_block","Count":1,"Damage":9,"OreDict":""},{"id":"chisel:gold_block","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:builderswand","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":602,"preRequisites":[915],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spatial distortions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You detected a weird disturbance in the air around an enderman, I suggest you try to steal some of their pearls and research them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_pearl","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":603,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_chest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dimensional chest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've heard rumors, that the endermen had built laboratories in the End. To invent new machines and weapons in order to attack the Overworld. One of their inventions is a chest, which is somehow linked to all instances of itself. Go and try to find one of those."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":604,"preRequisites":[129],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"SIMPLE","storedEnergyRF":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lRF Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Basic Capacitors are RF batteries which can store the RF power you generate. You can put many blocks together to enlarge your total battery capacity - they will merge into one battery.\n\nYou can also change the mode of each face using your wire cutters instead of the GUI. One option is a nice display of input and output RF, but it has to be taller than it is wide.\n\nThese are great for interfacing with RF machines. GT wires will convert to RF, but they send a full amp packet no matter what. Enderio machines properly accept it, but others like Genetics do not and waste most of the packet.\n "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":4,"tag":{"type":"SIMPLE","storedEnergyRF":0},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":605,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slay the Eyes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find and kill Ender-Eyes, guarding the Defence Towers"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.EnderEye","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":606,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:enderman_head","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Ender Guardians","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well if you decided to grind then do it... Kill some of the guardians."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.EnderGuardian","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.Endermage","subtypes":1},{"ignoreNBT":1,"index":2,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"HardcoreEnderExpansion.AngryEnderman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":607,"preRequisites":[603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slay the Dragon. (Again)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're bored, you can resurrect the dragon. Or, you could find a chaos dragon, if you dare. Anyway, kill one of those, and you'll be well rewarded."}},"tasks":[{"ignoreNBT":0,"index":0,"targetNBT":{"ForgeData":{},"Initialized":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":200,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":200,"id":"DraconicEvolution.EnderDragon","Motion":[0,0,0],"Leashed":0,"AttackDamage":0,"UUIDLeast":-3850102294886759000,"Health":200,"IsUber":0,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":131653853705906,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"DraconicEvolution.EnderDragon","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":608,"preRequisites":[598,105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2089,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§3§5§lA lead about lead that leads to lead dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next step of making batteries is to collect some lead. Lead and galena veins can be found in the Twilight Forest at y levels 5 - 45."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2089,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:mixedsaladItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":609,"preRequisites":[608,598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBattery alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing antimony and lead in the alloy smelter will give you some battery alloy.\nCombine it with some tin cable and voila there is your small battery hull."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":5,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32500,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":933,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":907,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":839,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":610,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":830,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lead, galena and silver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can't find lead, galena or silver in the Overworld or the Nether. So it's time to explore the mysterious Twilight Forest a bit and find this vein at Y level 5 - 40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":830,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":89,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":54,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":611,"preRequisites":[616,617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":32000},"Damage":32511,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSingle use battery: Mercury","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury and acid batteries are single-use batteries. They are crafted fully charged but cannot be re-charged. Once their stored energy is depleted, they can be placed in an extractor to be converted back into small battery hulls.\n\nThey can be placed in the battery slot of any standard LV gregtech machine, in that case they will be depleted before the machine's internal EU storage. They can also be used in LV battery buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":32000},"Damage":32511,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30087,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":612,"preRequisites":[618,617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":18000},"Damage":32510,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSingle use battery: Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury and acid Batteries are single-use batteries. They are crafted fully charged but cannot be re-charged. Once their stored energy is depleted, they can be placed in an extractor to be converted back into small battery hulls.\n\nThey can be placed in the battery slot in any standard LV gregtech machine, in that case they will be depleted before the machine's internal EU storage. They can also be used in LV battery buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":18000},"Damage":32510,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":613,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":50000},"Damage":32519,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Sodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32519,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2017,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":614,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":75000},"Damage":32517,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Cadmium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32517,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2055,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":615,"preRequisites":[624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":100000},"Damage":32518,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lReusable battery: Lithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium, cadmium, and lithium batteries are rechargeable batteries. They are crafted without stored energy, but can be charged in any gregtech machine. If unneeded, they can be placed in an extractor and converted back into small battery hulls, but their contents are lost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32518,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2315,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":616,"preRequisites":[609,494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"mercury","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMercury","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mercury can be centrifuged out of redstone. If you find some cinnabar ore in the redstone vein you can use that too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30087,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":8,"Damage":826,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":617,"preRequisites":[616,618],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":431,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lFluid canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fluid canner is a fundamental machine, since it is necessary to move fluids around, as well as for filling tin cells, glass bottles, buckets, and even batteries. Most cases you can use the small GT++ tanks instead.\n\nAnother interesting thing about the fluid canner is that it can be transformed into a raintank, by attaching a drain cover on its top (Any machine with a tank actually can be...)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":431,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":618,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining sulfur trioxide and water in the chemical reactor will give you sulfuric acid for your single use acid batteries. If you have made some light or heavy fuel already maybe you have some spare hydrogen sulfide. If not, you can always make sulfuric acid with some sulfur and water in the chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2022,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":619,"preRequisites":[611,612,613,614,615],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":161,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBattery buffer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Batteries can be placed directly in machines. To recharge a battery you need a battery buffer. Buffers can also power an energy network. They come in different sizes: 1, 4, 9 and 16 slots. They can draw 2A and output 1A per battery inserted - watch your wire amperage!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":171,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":620,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatRE","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lIC2 Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some recipes require IC2 batteries. Fill your small battery hull with some molten redstone and you will get your RE-Battery. Molten cells will hurt you, so be careful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:bread","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":621,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":933,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§5§lHow to get sodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A second source for sodium is glauconite ore or glauconite sand. This type of ore vein can be found at Y level 20-50."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":933,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":909,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":877,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":902,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:coleslawburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:sesameseedsItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":622,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lHow to get sodium/lithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Salt ore mixes can be found in the Overworld between Y level 50-70. Salt isn't only used to get sodium, it's an important ingredient in many pam's harvestcraft food recipes.\n\n§4Hint: Lepidolite and spodumene are good sources of lithium for your batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":817,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":944,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":920,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":907,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:baconmushroomburgerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:saltedsunflowerseedsItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":623,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyCompass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA big meteorite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best way to get rare earth is to find an applied energistics 2 meteorite and grind the blocks into dust. Maybe you completed the quest in the steam age and stored your crushed skystone somewhere? That dust can now be centrifuged into various byproducts like cadmium, neodymium, caesium, lanthanum, and yttrium.\n\n§4Hint: Redstone has rare earth as byproduct. Chalcopyrite (at HV level) and sphalherite (at LV level) have cadmium as byproduct."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyStone","Count":1024,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1024,"Damage":45,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":2891,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2055,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:beetburgerItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:calamaricookedItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":624,"preRequisites":[623,1167,1168],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":231,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBasic canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The canning machine is mainly used to fill tin cans with any kind of food (HV Tier), but it is useful for filling and emptying tin cells with other solid items than food, usually in the form of dust. It can also fill batteries with sulfur, mercury, cadmium, lithium or sodium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":231,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":625,"preRequisites":[84],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lPacking your tanks chests and barrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Packing your chests and barrels without spilling all the things (buildcraft(tm))? \nNo problem! Make a dolly and you can carry your full chests, barrels or storage drawers anywhere you want. But be warned, you will get a slowness debuff so hopefully you don't have to travel very far. Not portable buildcraft and iron tanks can moved so too without loosing fluids.\n\n§4PS Later on you can fly or make a traveller's belt to get around the debuff."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"JABBA:upgradeStructural","Count":3,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""},{"id":"StorageDrawersBop:fullDrawers1","Count":5,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":626,"preRequisites":[98,916,102,495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:moverDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPortable mob spawners..? Cool!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to move the spawners around and build some cool mob farms? That will be no problem if you get the diamond dolly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":23500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17506,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"JABBA:moverDiamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":627,"preRequisites":[631,634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:grainbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Grain bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some nice grain bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:grainbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":628,"preRequisites":[440,631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fruitbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fruit bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some tasty fruit bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fruitbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:veggiebaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":629,"preRequisites":[631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:veggiebaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Veggie bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some veggie bait for your animal trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:veggiebaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:fishtrapbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":630,"preRequisites":[633],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fishtrapbaitItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish bait","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting some fish bait for your fish trap."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fishtrapbaitItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fruitbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:veggiebaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:grainbaitItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":631,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:animaltrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Animal trapping","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of hunting for cows, zombies or sheep? You can build a trap and hope some animal or monster drops will be caught by the netting inside."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:animaltrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:trapdoor","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:hamburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":632,"preRequisites":[493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A fisherman's friend","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Have you ever tried to catch a fish with your bare hands? It's time to craft a fishing rod and get some fish the easy way. Cast your fishing rod in some water and wait until the bobber dips below the surface. Then reel back in your line and hopefully you caught yourself something nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":22809,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":""},{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fish","Count":5,"Damage":3,"OreDict":""},{"id":"harvestcraft:jellyfishrawItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:catfishrawItem","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":633,"preRequisites":[36,632],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish trapping","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fishing can be very boring. Why not to automate it with a fish trap?"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:furnace","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":634,"preRequisites":[7],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wheat time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to plant some wheat to make some bread or to prepare grain bait for your animal traps."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wheat","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:wheat_seeds","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":635,"preRequisites":[7,634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2881,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Floury flurry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step in making bread is to macerate your wheat into flour with a mortar or a macerator.\n\nFlour can be used in many food recipes for different pam's harvestcraft foods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2881,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Stone"}},"Damage":24,"OreDict":""},{"id":"minecraft:potato","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":636,"preRequisites":[7,637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bread","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First handmade bread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Baking your dough in a Furnace makes some tasty bread.\nYour first bread!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bread","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Steel"}},"Damage":34,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":51200,"SecondaryMaterial":"Stone"}},"Damage":24,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Aluminium","MaxDamage":12800,"SecondaryMaterial":"Aluminium"}},"Damage":46,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":637,"preRequisites":[7,635],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32559,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Do'h!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Water and flour makes a dough or two...\nDough can be used in many different food recipes from pam's harvestcraft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32559,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":8,"Damage":0,"OreDict":""},{"id":"IguanaTweaksTConstruct:clayBucketFired","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":638,"preRequisites":[7,636],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tasty toast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smelt your bread again and you get some toast! Give's you more nutrition points, and unlocks more culinary potential!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":639,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_sulfuricnaphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric naphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another distillate you can make out of oil is sulfuric naphtha with a burn value of 40,000 EU per cell in the gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":30736,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30001,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":640,"preRequisites":[840],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_lpg","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLPG","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuging some Butane or Propane gives you LPG with a burn value of 320,000 EU, the same as naphtha. Also it is a way to get methane and eventually epichlorohydrin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":66,"Damage":30742,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":641,"preRequisites":[639],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"liquid_naphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNaphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can process sulfuric naphtha to fluid naphtha which has a burn value of 320,000 EU in the gas turbine.\nNaphtha is also a base product for polyethylene and polycaprolactam - a great substitute for string."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":30739,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":642,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"gas_sulfuricgas","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSulfuric gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another distillate for your gas turbine you can make out of oil is sulfuric gas with a burn value of 25,000 EU per cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30734,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30012,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":643,"preRequisites":[642,550],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"gas_gas","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lRefinery gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Refine your gas in a chemical reactor with hydrogen gas to give it a better burn value of 160,000 EU, and maybe use it to make methane gas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30735,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30715,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":644,"preRequisites":[643],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30673,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMethane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Distilling some \"refinery gases\" gives you some methane gas. There are many more ways to get methane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":645,"preRequisites":[65,486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:hangglider","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glider wings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If for some reason you want to be able to jump down a cliff without getting the message \"Player X fell from a high place\". A great idea would be to find a way to soften your landing first. The hang glider should do that just fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":10,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenBlocks:generic","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"OpenBlocks:generic","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17305,"OreDict":"plateSteel"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"OpenBlocks:hangglider","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":646,"preRequisites":[609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectrotine battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The electrotine battery is exclusively used in project red machines and the jetpack.\nElectrotine is a mixture of redstone and electrum dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":6,"Damage":56,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.emptybattery","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":24,"Damage":56,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":647,"preRequisites":[645,646],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Expansion:projectred.expansion.electric_screwdriver","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Electrotine jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your glider gets you to the ground safely but it does not have any method to get up. After you researched electrotine you discovered that it is powerful enough for your first jetpack.\nA diamond chestplate surrounded with 4 electrotine batteries is powerful enough to bring you up in the air.\n\nIt does not have a hover mode so you better take your glider with you. \n\nHint: This jetpack can't fly higher than Y level 128."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.emptybattery","Count":4,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1422,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17811,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":6400,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":32,"Damage":56,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":648,"preRequisites":[647],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.drawplate","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Refill your jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GREAT.... you now have an empty jetpack.\nYou need 25 electrotine dust to completely fill it.\nLet's craft an electrotine generator and a charging bench to use the power of electrotine. \nYou will very quickly discover that, while it is fast and cheap, it's empty in the blink of an eye. Despite this, it is useful in combination with the hang glider to get into the air and to get away from hairy situations."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.machine1","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.machine2","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":25,"Damage":56,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Expansion:projectred.expansion.jetpack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":56,"OreDict":""},{"id":"ProjRed|Expansion:projectred.expansion.solar_panel","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":649,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:coalJetpack","Count":1,"tag":{"jetpackData":{}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Coal steam jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your coal jetpack needs coal and water to produce steam. After a short warm-up period you can go and take it for a ride. Keep in mind you will need your glider to make a soft landing.\n\nPut your jetpack on your back and hit Shift and the adventure backpacks action-key to start it.\n\nMax flying height for these jetpacks is the Y level of 185.\n\nVertical velocity decreases linearly with height after overcoming optimal height - 135 for jetpack and 100 for copter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":5,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":2,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5130,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:coalJetpack","Count":1,"tag":{"wearableData":{},"jetpackData":{}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:fuel.coke","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5130,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":650,"preRequisites":[532],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:copterPack","Count":1,"tag":{"fuelTank":{"Empty":""},"tickCounter":3,"status":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Copter jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The copter jetpack is the first jetpack with a hover mode. It is using all kind of different fuel types in buckets. \nBuckets of creosote, lava, oil, cetane, diesel,ethanol, and fuel will work.\nEquip your jetpack and hit Shift and the adventure backpacks action-key. You can also switch between hover and normal mode.\n\nMax flying height is limited to Y level 200. \n\nVertical velocity decreases linearly with height after overcoming optimal height - 135 for jetpack and 100 for copter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5133,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32641,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":6,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5130,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"adventurebackpack:copterPack","Count":1,"tag":{"fuelTank":{"Empty":""},"tickCounter":3,"status":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BuildCraft|Energy:bucketFuel","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":3,"id":2}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":651,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{"charge":30000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first electrical jetpack. You need to hit the IC2 mode-switch key to toggle between normal mode and hover mode while holding down the jump key. When descending, remember to shut off hover mode or else you'll drain your jetpack.\n\nThe only limitation is that you can't fly higher than Y level 185.\n\nFor charging on the go, you can craft a charging crystal from ic2 charging components. You have to take the backpack out of the armor slot and put it in your hotbar and activate the charger by sneak-clicking. There are better models than this one old one I don't need any more. Look in NEI.\n\nLater on GT++ Charging Packs are belts that can charge everything in your inventory including armor. Check NEI for latest recipes.\n\nFinally, the GT++ wireless charger will charge everything in your inventory, including the jetpack, from your base at long ranges. A quest is unlocked once you finish your nanosuit. Just remember when you are off world or in the Nether that your jetpack isn't charging!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorBatpack","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":6,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemBatChargeRE","Count":1,"tag":{"charge":40000},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":652,"preRequisites":[651],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorJetpack","Count":1,"tag":{"Fluid":{"FluidName":"ic2biogas","Amount":30000}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fueled jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This jetpack uses IC2 biogas and can fly up to Y level 245.\nYou can switch between hover and normal mode using the IC2 mode-switch key.\n\nYour jetpack can be (re-)fueled in the IC2 fluid canner with 30 buckets/cells worth of biogas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18306,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:reactorCoolantSix","Count":1,"Damage":1,"OreDict":""},{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":5,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":6,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorJetpack","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":30,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":653,"preRequisites":[176,692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:advJetpack","Count":1,"tag":{"charge":3000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced electric jetpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced electric jetpack is an upgraded version of the electric jetpack.\nWhile worn in the chest armor slot and charged with EU, it allows the player to fly. It provides no armor protection, but will charge tools being used in the same manner as the advanced lappack from its 3.000.000 EU internal storage.\n\nThe advanced electric jetpack is limited to a maximum flying height of Y level 256."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17028,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1641,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GraviSuite:advJetpack","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32603,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":654,"preRequisites":[653,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:advNanoChestPlate","Count":1,"tag":{"charge":3000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced nano chestplate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining the advanced electric jetpack and nanosuit yields you the advanced nano chestplate. Now you have the protection of the chestplate combined with the freedom of movement of the jetpack."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GraviSuite:advJetpack","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoChestplate","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17316,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1644,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GraviSuite:advNanoChestPlate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32604,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":655,"preRequisites":[653,213,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GraviSuite:graviChestPlate","Count":1,"tag":{"charge":30000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gravi suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gravi chestplate is the ultimate quantum armor combined with a high powered jetpack. It also has hidden features that you need to discover while wearing the whole quantum armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"GraviSuite:ultimateLappack","Count":1,"Damage":27,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":26,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":3,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":2,"Damage":2,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":6,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32088,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":22328,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32674,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32607,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27328,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"GraviSuite:graviChestPlate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32088,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32607,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":656,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.iron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lIron shields","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have been using your hide shield long enough. After you make your first tools, grab a bit of iron ore and make a nice iron shield."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":2,"Damage":2,"OreDict":""},{"id":"TConstruct:toughBinding","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:toughRod","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.iron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":52,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":657,"preRequisites":[36,450],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.stone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lStone spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your wooden spear with a stone arrowhead and iron screws to a stone spear.\nThis spear has better durability than the wooden one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27032,"OreDict":"screwIron"},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.stone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":658,"preRequisites":[657,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.iron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lIron spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your wooden spear with an iron arrowhead and two steel screws to an iron spear. \nThe iron spear has better durability than the stone variant."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27305,"OreDict":""},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.iron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":59,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":659,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:spear.diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiamond spear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At MV Tier you can upgrade your iron spear to a diamond one. Get a diamond arrowhead, two stainless steel screws and a wooden spear.\nThis spear has superior durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartArrowHead","Count":1,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""},{"id":"battlegear2:spear.wood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:spear.diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":660,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"battlegear2:shield.diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiamond shield","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your iron shield got very old. With a shield made from diamond plates you can maintain block for up to 5 seconds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartLargePlate","Count":2,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"TGregworks:tGregToolPartToughBind","Count":1,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":2,"tag":{"material":"Diamond"},"Damage":1594,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"battlegear2:shield.diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spawn_egg","Count":1,"Damage":57,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":62,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":661,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBow, arrows and quiver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wow, your first handmade *ehm* machine made bow. You find out that you can put the bow in the mine and blade battlegears slots. Now it's time to make a quiver and maybe some arrows. \n\nTo place arrows in the quiver, put the quiver and the stack of arrows in a crafting grid. Make sure the Gameplay key Special is deconflicted. By default it is Z. When you have the bow selected, use Z to swap arrow slots in the quiver.\n\nWhile it seems like these might be worthless, these arrows do have special uses. You really want to share a cookies with friends, don't you?\n\nLet's go hunt a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:bow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"battlegear2:quiver","Count":1,"tag":{"current":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:arrow","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"battlegear2:mb.arrow","Count":10,"Damage":0,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":6,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":2,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":5,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":3,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":1,"OreDict":""},{"id":"battlegear2:mb.arrow","Count":10,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":662,"preRequisites":[664],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic arc furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The arc furnace is an alternative to smelting stuff back into components and making wrought iron. The recipes use oxygen and 3 amperes of power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":663,"preRequisites":[662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:upgradeModule","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFaster steel production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A faster alternative to steel production is to use the arc furnace and smelt the iron ingots into wrought iron ingots. Then macerate them to dust and smelt them very fast in the EBF to steel. (Some might even dare arc furnacing the dust itself...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11304,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":664,"preRequisites":[619],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":171,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV battery buffer 9 slots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Upgrade your battery buffer to hold 9 batteries which allows max 9 ampere output.\nUseful for your EBF and the arc furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":181,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":665,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kitchenware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To cook some healthy food you need a few tools crafted first.\nSaucepan, \npot, \nrolling pin, \nmortar, \nmixing bowl, \nsoft mallet, \nskillet, \nknife..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:saucepanItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":46,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":""},{"id":"harvestcraft:mixingbowlItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":14,"OreDict":""},{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:firmtofuItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:flourItem","Count":16,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":666,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:boat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Row, row, row your boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You live close to the water and don't have a boat?\nYou need wooden planks, slabs and a knife to craft one. (This is also quest id 666, be careful, something is going on.)"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:boat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:fishing_rod","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:watergarden","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":667,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trainspotting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wooden tracks can be made without any machine. Functionally equivalent to normal rails, but with a lower maximum speed (for safety reasons).\n\nHint: You can use your wooden rails for Steve's carts farms."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":60,"Damage":0,"OreDict":"slabWood"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.tie","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:stick","Count":4,"Damage":0,"OreDict":"stickWood"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23032,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.rail","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":4,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:part.railbed","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":5,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"Railcraft:part.railbed","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":668,"preRequisites":[666],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rubber boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The rubber dinghy requires only a few rubber plates. Like the vanilla wooden boat, it will break and dismantle whenever it hits a surface, however instead of returning sticks and planks, it will return a damaged rubber dinghy, which can be re-crafted with two pieces of rubber back into a useable rubber dinghy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":669,"preRequisites":[673,672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inflatable boot","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I meant to say boat... The inflatable boat is the first boat that doesn't break on impact with a solid block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:backpackComponent","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCarbonMesh","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":670,"preRequisites":[673,672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon fiber boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unlike all other boats, this amazing carbon fiber canoe is COMPLETELY INDESTRUCTIBLE!* This means that you can smash it into as many beaches, lily pads and alligators as you like, the carbon fiber canoe won't take a scratch!\n\nWarning: We are not held responsible for any damage caused by riding the carbon fiber canoe into a lava lake or the Void.\n\n*Therefore, warranty is NOT included."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:fishtrap","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":671,"preRequisites":[669,670],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBoat","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Electric boat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The electric boat works mostly like a vanilla boat, chugging through the water at a decent pace. It will hopefully drop itself once you crash, which is slightly nicer than the usual sticks. That's all well and good, but what if we utilize the electric engine? Wearing an energy storage device in your chestplate slot, like a batpack or energypack, will cause the boat to drain energy from it and propel you forward at supersonic speed! Doing this will consume about 100 EU per block traveled, so even a decent batpack won't last long!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ElectricBoatHull","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemBoat","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""},{"id":"minecraft:waterlily","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":672,"preRequisites":[668],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.ExtruderShapeBoat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boat shape?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Really? Yes for the more advanced boats you need a new shape form.\nYou need to make an Extruder first to progress further."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ShapeBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ExtruderShapeBoat","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":673,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":281,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV extruder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The extruder is not very useful in the LV age. But it will extrude your next tier of boat, make rubber sheets more efficiently, get you extra fluid cells, or make some Tinkers Construct tool parts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":281,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":674,"preRequisites":[675,676],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.slow.junction"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wooden rail variants","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wooden junction, wye and switch tracks need an assembling machine to craft. They allow you to join and switch to tracks going to different locations.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.junction"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.switch"},"Damage":19986,"OreDict":""},{"id":"Railcraft:track","Count":4,"tag":{"track":"railcraft:track.slow.wye"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"Railcraft:part.railbed","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":675,"preRequisites":[667,76,48],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:signal","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Switch lever","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The switch lever is the manual version of the switch motor, requiring a player to operate it instead of a redstone signal. \nIt is used in various signaling systems, mainly to change the way switch tracks and wye tracks work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:signal","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:part.rail","Count":16,"Damage":2,"OreDict":""},{"id":"Railcraft:part.rail","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":676,"preRequisites":[675],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:tool.crowbar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crowbar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The crowbar comes in a Railcraft and a gregtech variant. It is used to manipulate machines from railcraft, remove plates and any other covers (pumps, conveyor belts, etc.) from gregtech pipes and machines as well as breaking certain objects faster, such as tracks. This tool is also used to access certain inventories from Railcraft.\nHold a crowbar and shift + right click to attach carts. Click the starting cart then continue to click to add more carts to the link. Carts will act slower the more connections are made.\n\nThe crowbar can be used as a weapon, though it costs twice as much durability on attack (just like any other non weapon tool...)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:tool.crowbar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":677,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Minecart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you craft your first cart the journey can begin...\nWell, not really. You will need some kind of tracks first."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23032,"OreDict":"stickAnyIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28032,"OreDict":"ringAnyIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17032,"OreDict":"plateAnyIron"}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32100,"OreDict":""},{"id":"Railcraft:track","Count":8,"tag":{"track":"railcraft:track.slow"},"Damage":736,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":678,"preRequisites":[634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Fast Food > Slow Food","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three fast food lootbags give a better one = Slow Food Lootbag. (Since when is slow food better?)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":679,"preRequisites":[638,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Slow Food > Haute Cuisine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three slow food lootbags give a better one = Haute Cuisine Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""}]}]},{"questID":680,"preRequisites":[679],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Haute Cuisine > Dessert","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Six haute cuisine lootbags give a better one = Dessert Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":6,"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":31,"OreDict":""}]}]},{"questID":681,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Transportation Class 3 > Transportation Class 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three transportation class 3 lootbags give a better one = Transportation Class 2 Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":32,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]}]},{"questID":682,"preRequisites":[681],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Transportation Class 2 > Transportation Class 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three transportation class 2 Lootbags give a better one = Transportation Class 1 Lootbag."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":34,"OreDict":""}]}]},{"questID":683,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:chestplateMud","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wet dirt armor?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't have any armor, \"mud armor\" is better than nothing. Mud can be found in some wet biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mudball","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"BiomesOPlenty:helmetMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:chestplateMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:leggingsMud","Count":1,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:bootsMud","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:mudball","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":684,"preRequisites":[444],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:chestplateWood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wooden armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you can't find mud you can make very poor armor out of wood. Cutting down a few trees to make a set should do. You will need a soft mallet too, so save a few logs for that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":24,"Damage":0,"OreDict":"logWood"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:helmetWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:chestplateWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:leggingsWood","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:bootsWood","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:log","Count":32,"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:mudball","Count":24,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":685,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron armor is much better than the leather armor. Especially when you have to go outside during the night."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17032,"OreDict":"plateIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:iron_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":1}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":3}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":686,"preRequisites":[42],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Leather armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Killing some cows will give you enough leather to craft a complete set of leather armor. \n\nHint: You are able to dye this armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:leather_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:dye","Count":8,"Damage":0,"OreDict":"dyeBlack"},{"id":"minecraft:dye","Count":8,"Damage":1,"OreDict":"dyeRed"},{"id":"minecraft:dye","Count":8,"Damage":2,"OreDict":"dyeGreen"},{"id":"minecraft:dye","Count":8,"Damage":3,"OreDict":"dyeBrown"},{"id":"minecraft:dye","Count":8,"Damage":4,"OreDict":"dyeBlue"},{"id":"minecraft:dye","Count":8,"Damage":5,"OreDict":"dyePurple"},{"id":"minecraft:dye","Count":8,"Damage":6,"OreDict":"dyeCyan"},{"id":"minecraft:dye","Count":8,"Damage":7,"OreDict":"dyeLightGray"},{"id":"minecraft:dye","Count":8,"Damage":8,"OreDict":"dyeGray"},{"id":"minecraft:dye","Count":8,"Damage":9,"OreDict":"dyePink"},{"id":"minecraft:dye","Count":8,"Damage":10,"OreDict":"dyeLime"},{"id":"minecraft:dye","Count":8,"Damage":11,"OreDict":"dyeYellow"},{"id":"minecraft:dye","Count":8,"Damage":12,"OreDict":"dyeLightBlue"},{"id":"minecraft:dye","Count":8,"Damage":13,"OreDict":"dyeMagenta"},{"id":"minecraft:dye","Count":8,"Damage":14,"OreDict":"dyeOrange"},{"id":"minecraft:dye","Count":8,"Damage":15,"OreDict":"dyeWhite"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":687,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorBronzeChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bronze armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bronze armor has the same abilities as iron armor. Same durability, same protection and same enchantment capability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorBronzeHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeLegs","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorBronzeBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":688,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Nice to have\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gold armor is a \"nice to have\" armor. The durability is very low but you look expensive when you wear it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:golden_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:golden_apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:golden_apple","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":689,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"\"Oh shiny\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond armor is the best armor in Vanilla Minecraft, but over here there are much better armors available."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17500,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:diamond_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:diamondApple","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":29500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":690,"preRequisites":[685,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:chainmail_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not really better but fancy. The chain mail armor is made out of steel rings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":28305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:chainmail_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:chainmail_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":5,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":691,"preRequisites":[685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor 2.5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The steel armor has more durability than the iron/bronze or chainmail armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17305,"OreDict":"plateSteel"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Railcraft:armor.steel.helmet","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.legs","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":1}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":4}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":692,"preRequisites":[685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Composite vest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining the strength of advanced alloy plates with the steel chestplate makes your vest very hard. Now you have double the durability and increased armor points by 1.5."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartAlloy","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:leather_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IC2:itemArmorAlloyChestplate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":18,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":693,"preRequisites":[35,38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSkyStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFallen from the sky","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are big meteors everywhere and you are wondering why you need to mine them now?\nSkystone is a good source of rare earth metals in the LV age. \nInside the meteor you can find a skystone chest containing some processor press plates. Save them for later, as they are really important. Plus the chest is nice, and can be placed underneath blocks and still opened.\n\nHint: If your all your surface meteors have been raided, put some skystone in your orefinder to find underground ones. Often there is a second meteor right next to the one on the surface!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSkyStone","Count":256,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:tile.BlockSkyChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":2,"id":35}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":694,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:anvil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOne Anvil... Better make that two!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your brand-new Compressor you are able to make some metal blocks for your new anvil. Better craft two anvils, one will be required for the forge hammer.\n\n§4With the anvil you can repair, rename and enchant armor and tools.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_block","Count":10,"Damage":0,"OreDict":"blockIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":"screwAnyIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:anvil","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":695,"preRequisites":[74,35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§o§1§2§3§r§r§r§r§r§r§3§4§r§o§7§7§8§9§9§5§3§1§0§r§o§m§k§c§e§l§r§1§1§r§6§lAutomation tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you want to automate your smeltery because you are planning to make stacks of glass blocks? \nNo problem, craft a large bronze pipe and place it under the faucet. Now the molten fluid will flow inside the pipe. Under or next to the pipe you have to place the casting basins or tables.\nA hopper and a chest underneath would auto-output products. NOTE: Faucets will output precisely 144L each activation if you toggle it off immediately. That's going to have some uses later on..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":17032,"OreDict":"plateIron"},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31032,"OreDict":"gearIron"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:hopper","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:GlassBlock","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":696,"preRequisites":[695,479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:comparator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAutomation tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want a better automation than using pipes? Sure, craft a comparator and link it with redstone dust placed on the ground. The redstone needs to be adjacent to the faucet to activate the crafting process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:comparator","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone_torch","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":697,"preRequisites":[76,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":13305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§l2x steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steel production is so slow. If you got enough bricks and clay, build a second BBF. Build it attached to the first one, so they can share a wall and you will save some bricks, clay and concrete."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":24,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":698,"preRequisites":[697],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":15305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§l4x steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not even two BBFs are fast enough...Can you figure out how to save the most bricks making 4?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":40,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":140,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:fuel.coke","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":699,"preRequisites":[91,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWhy one coke oven when you can have ten?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your bricked blast furnace uses coal like hell and your steam boiler too? Well it's time to make more coke ovens and automate them a bit. Wooden fluid pipes and tin item pipes will help you reach your goal.\n\nSearch NEI for a more efficient way to make coke oven bricks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":260,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":11,"Damage":32630,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":32610,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":5590,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":5101,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:cube","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"JABBA:barrel","Count":10,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeCore","Count":9,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":100,"Damage":0,"OreDict":""}]}]},{"questID":700,"preRequisites":[701],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:EldritchOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"How dark can you go?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Seriously, how dark can one be? You are sure the face in that crystal was nothing but imagination..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:EldritchOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":701,"preRequisites":[706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:transcendentBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ascended","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel empowered, light, almost like a ghost."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:transcendentBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":702,"preRequisites":[703,928],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":27,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"1023 Buckets of blood in one slate! How much more I can store, oh I wish I would know. Then I add one and check if it works. 1024 buckets of blood in one slate! ... ..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":2,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":703,"preRequisites":[714],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powerful shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The demons summoned are rather strong, but their souls contain immense power!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":20,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":20,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":8,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":704,"preRequisites":[421,927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:demonicSlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 slates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tier 4 slates: Getting close."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:demonicSlate","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":705,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:watering_can","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAccelerated plant growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plants grow very slowly, you might've discovered that by now. So why you don't counter that? A watering can will come in handy very soon."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"ExtraUtilities:watering_can","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:supremepizzaItem","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":706,"preRequisites":[702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:dawnScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ethereal chalk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Top tier chalk, for fancy wall paintings?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:dawnScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":707,"preRequisites":[702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Archmage orb. Let them come!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 5 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:archmageBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":708,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:masterBloodOrb","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Master orb: Getting close","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your tier 4 orb."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:masterBloodOrb","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":709,"preRequisites":[708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:duskScribeTool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Elemental chalk II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enhanced elemental chalk, to write \"darker\" runes than you're used to..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:duskScribeTool","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":710,"preRequisites":[708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will want both runes. Rune of superior capacity to increase the storage of your blood altar, and rune of the orb. Later it is required if you want to advance to higher levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":2,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":711,"preRequisites":[707],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 runes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final frontier: There are not many runes available. The acceleration rune allows you to speed up the interaction with external tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":712,"preRequisites":[709],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More powerful rituals require dusk runes. With your new dusk chalk, you can enhance your ritual diviner to place those. Allowing you to perform a lot more rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":713,"preRequisites":[706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Highend rituals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last rune so far, used for the most powerful rituals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:itemRitualDiviner","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":2,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":714,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"magicales","capacity":16000}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Convocation of the damned","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to open a portal to the demons we're using all the time. What could possibly go wrong? (It is recommended to do this ritual on a planet, as the demon city will spread quite a bit...)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"magicales","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"potentia","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"incendium","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"terrae","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"tenebrae","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"sanctus","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"aether","capacity":16000}]},"Damage":0,"OreDict":""},{"id":"AWWayofTime:blockCrystalBelljar","Count":1,"tag":{"reagentTanks":[{"amount":16000,"Reagent":"aquasalus","capacity":16000}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:activationCrystal","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:demonicSlate","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":715,"preRequisites":[703],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Imbued spell upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With these new shards you are able to craft the most powerful spell components. Maybe it's time to upgrade your mining spell?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":3,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":8,"OreDict":""},{"id":"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":29,"OreDict":""},{"id":"AWWayofTime:bloodMagicBaseItems","Count":4,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":18,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":716,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFind some Certus Quartz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nether is full of different kinds of quartz. For the emitter and the sensor you will need to find some certus quartz."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":8516,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":5,"Damage":32107,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:glowstone_dust","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":2,"Damage":0,"OreDict":""},{"id":"Natura:barleyFood","Count":3,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":717,"preRequisites":[748,747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§5§lGood Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits are an improvement on basic circuits. They are a component of all MV gregtech machines. Be sure you build the electric blast furnace first, so you can process some aluminium dust into ingots.\n\n§4This will also open the Project Red tab, one of the early automation options."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":12,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32702,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32119,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32102,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":718,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockCrop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMoron's Manual to Fecund Farms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you ever wanted to know how crop breeding works you are in the right place. Get some crops (the sticks) and some seeds from farming with a hoe or mattock. You can also place some plants and berries directly on crop sticks. Good plants to start with are flowers, wheat, cactus and sugarcane. \n\nMake a plot of farmland with your tool and place water in the middle. For now, make 3x1 plots, separated by a row of dirt or cobble. You want to be able to see the center of each column of 3x1 plots all at once, like this:\nFFFdddFFF\ndddFFFddd\nFFFdddFFF\ndddFFFddd\nFFFdWdFFF\ndddFFFddd\nFFFdddFFF\ndddFFFddd \nFFFdddFFF\nNow place crop sticks in each end of the 3x1 plot. Then place the seeds on the sticks and wait a bit.\n\nWhen they are almost fully grown you can put double crop sticks in the center spots by using crop sticks on already placed crop sticks. This center area can now grow new crops, even new species.\n\nWith some luck you might get a new unknown seed which can be scanned later.\n\nWeeds need to be removed with a trowel or spade otherwise your field will become overgrown by them.\n\nUsing 3x1 plots is easy and not much work. Check them every 5-10 minutes to remove weeds and gather new seeds. If you forget, you only lose one or two seeds. \n\nIf you find a really nice seed, you can do 3x3 or 5x5 plots with the nice seed in the middle and others next to it for crossing. But this requires more babysitting since weeds could destroy the whole field.\n\nDon't leave new crops in these intensive fields. Pull them out and hopefully get a seedbag. Put low stat seeds in production fields that don't require babysitting. Keep the high stat seeds for more crossing. \n\nCrossing happens when 2 or more almost mature crops are next to a double cropstick. There is a 90 percent change of getting the same species as the parents. The rest of the time will be a mutation. More details in the IC2 cropnalyzer quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wheat_seeds","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:reeds","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":16,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":719,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"potato","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"First Breeding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"New plants have grown on your crop sticks. You can harvest the crop by right clicking it.\n\nLeft clicking with a seed bag will destroy the plant and replace it with the seedbag, so be careful. Collect 8 seeds of any kind.\n\nTo unlock the next quest, you will need the LV scanner.\n\nIf you haven't already, go back to Steam and build some Filing Cabinets. They make storing and moving large quantities of seeds a breeze. Plus they will properly sort the seeds based on name. To find a specific seed, type its name in the NEI search bar, and double click the bar so it highlights yellow. Now you can look through the Filing Cabinet and find the exact seedbag you want."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":8,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":720,"preRequisites":[724,531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weeds, weeds, and more weeds. You get so many of them while cross breeding. \nNeed some biogas cells for your power production in exchange? Or maybe some glowstone to light up your fields?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemWeed","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":128,"Damage":7,"OreDict":""},{"id":"minecraft:glowstone","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":721,"preRequisites":[531,719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:N Crops","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unknown seeds no more","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have a lot of unknown seeds already. Use your scanner to scan all the seeds.\n \nSeeds can be planted again to breed better and more resilient crops.\n\nLater you can use your portable scanner to see the crop stats while still in the ground.\n\nGrowability depends on having dirt beneath your crop(4 max), biome (swampy is best, followed by jungle and mushroom - basically any humid or wet biome such as tropical rainforest or bayou), air quality (Up toY=124 and don't place a lot above/around your plants), hydration, and fertilizer. When the crop tier and plant stats get high enough, they will actually die without enough Growability.\n\nAs long as you water and fertilize them, you can pretty much grow crops anywhere, but as you improve the stats you have to optimize their environmental conditions.\n\nIf the Growth stat gets too high, greather than 24 or so, the plant will spread weeds onto neighbors.\n\nSome crops, such as Redwheat, require certain light levels to crossbreed or grow."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":32,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone","Count":8,"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":722,"preRequisites":[719,543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFertilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speed up your plant growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To speed up the growth process a bit you can use a fertilizer. You will note, however, that bone meal no longer works. A bit of ash, apatite or calcite mixed with some water in a chemical reactor will give you the fertilizer you need. Apply by hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFertilizer","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_hoe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":723,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:carrot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potatos, Carrots, Pumpkins and Melons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your seeds have three different values: Growth, gain, and resistance (GGR).\n\nThe only way to change a crop's GGR without 3rd party tools is through cross breeding. When two plants cross-breed, the resulting plant will have a GGR score that is between both \"parent\" plants' GGR. Sometimes it will also be a little bit higher or lower. Thus, to obtain high GGR scores you must go through numerous generations of crossbreeding.\n\nThe highest score for GGR is 31."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:carrot","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:melon_block","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:pumpkin","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":724,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeed","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weed will show up from time to time on your crop sticks. Be careful and harvest the weed with your weed trowel before the whole field becomes overgrown with them and they destroy all your plants. Later you can make some weed Ex to destroy it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemWeedingTrowel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"IC2:itemWeed","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":725,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flower Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Growing dyes on crops sticks? Try to plant some flowers. If you cross breed Rose and Dandelion flowers you maybe get a new flower and new dyes with different colors.\n\nYou will need to plant 4 vanilla flowers to get them on a cropstick.\n\nTo get \"Rose Seeds\" place poppies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":8,"tag":{"owner":"IC2","name":"rose","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":8,"tag":{"owner":"IC2","name":"dandelion","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":32,"Damage":1,"OreDict":""},{"id":"minecraft:dye","Count":32,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"blackthorn","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"cyazint","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":726,"preRequisites":[543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChemical rubber production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A much more efficient way to make insulated cables is by making molten rubber in a chemical reactor which can be applied to a cable in the assembling machine. When you put both machines next to each other you can output the molten rubber directly to the assembling machine by clicking the fluid auto-output button on the chemical reactor. Make sure to set the correct side of the reactor as output side by wrenching it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2896,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":2022,"OreDict":"dustSulfur"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":30,"Damage":1246,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":30,"Damage":1366,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":727,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:fullDrawers1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§lBetter than barrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While barrels offer a slot for a single item, drawers can have up to 4 slots each (holding 16 stacks per slot). Once you reach HV you can combine them with some ProjectRed pipes to set up a \"ghetto ME storage system\" (Tec2k17).\n\nJust watch out, they do come with some downsides. You won't be able to make them point up or down, and you can only acces the contents from the front (automation can use any side). \n\nAlso, if placed on top of a hopper, they can bug out and void items when the hopper is full. If you plan on that, use barrels or chests instead."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:fullDrawers1","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:butteredpotatoItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":728,"preRequisites":[727],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:halfDrawers2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCompact Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They are very compact and add some fanciness to your glorious dirt base. "}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:halfDrawers2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:halfDrawers4","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:loadedbakedpotatoItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":729,"preRequisites":[727,728],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:framingTable","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lFraming Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can really make some swaggy and even FANCIER drawers using this table, all you have to do is place some decorative blocks (works with almost ALL decorative blocks) and it will take their texture, the TOP left is the outer Square bottom left is for the front face and top right is for the borders."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"StorageDrawers:framingTable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:fullCustom1","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullCustom2","Count":4,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullCustom4","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":730,"preRequisites":[717,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wheat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBio Fuels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You are using steam, creosote, and possibly oil plus their by-products to generate Power. It's time to start with bio diesel. You can use wheat, sugarcane, apples, saplings or fish.\n\nBe sure you have a managed Forestry farm, Steve's Cart Farm, IC2 Crop Sticks with a harvester, or a lot of fish catchers because you need plenty of biomaterials for constant biodiesel production.\n\n§4Hint: Hazelnut is the ultimative source for biodiesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:reeds","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:apple","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:wheat","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wheat_seeds","Count":32,"Damage":0,"OreDict":""},{"id":"Forestry:fertilizerCompound","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":731,"preRequisites":[730],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFuelPlantBall","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPlant balls","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step is to compress plantballs out of your wheat. Your LV compressor is too slow for it. I suggest crafting 4 MV compressors for the new bio diesel processing line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":732,"preRequisites":[731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MaceratedPlantmass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPlant Mass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Macerate the plantballs down to plant mass for better processing. In the LV and MV tiers you get only one plant mass per, in HV tier you recieve two. IV macerator gives up to four of them with a chance of 50 percent and 25 percent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MaceratedPlantmass","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":733,"preRequisites":[732,1322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBiochaff","Count":32,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBio Chaff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plant mass needs to be centrifuged into bio chaff, the base material to make biomass. You need 1 or 2 MV centrifuges to run the new production line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBiochaff","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":23019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":734,"preRequisites":[733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay One: IC 2 Fluid Canner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first way you get biomass out of bio chaff is to use the IC2 Fluid Canner. One bucket of water and one bio chaff gives one bucket of biomass. \n\n§4In MV Tier you can use the pyrolyze oven to do it in a more efficient way."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockMachine","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":28880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":735,"preRequisites":[733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":492,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay Two: Brewery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are lucky and find some brewing stands or familiar enough with Thaumcraft to make one you can craft a brewery. You get 750mb of biomass out of 750mb water and 1 bio chaff. \n\n§4In MV tier you can use the pyrolyze oven to do it in a more efficient way."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":492,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":736,"preRequisites":[1323],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":512,"Damage":30691,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFermented Biomass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the MV fermenter you can produce fermented biomass. This is the base product to make methane, ethanol and methanol.\nWhen you reach HV tier there's a more efficient way to process it - the distillation tower multiblock."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":502,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30691,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":737,"preRequisites":[127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.drawplate","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Can u eat those? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No you can't eat them but you can add them to your routed pipes. Without chips routed pipes can't do anything on their own, chips also have a GUI to configure them which can be opened by right clicking. \nThere are 8 types of chips:\n\n-Item extractor chip can be used to send items from its inventory to responder, dynamic responder, terminator and overflow responder chips in a pipe network. \n\n-Item responder chip will request items from the extractor chips in your network which match the filter configured to the inventory connected to the responder chip. Chips with higher priority value will receive items first until the inventory is full then will be sent to other inventories with valid filters and remaining space.\n\n-Dynamic item responder chip will request items from the extractor chips in your network that match items inside the dynamic item responder connected inventory. This chip has to be in the same interface pipe as the item responder chip in order to work. Priority rules apply here as well. \n\n-Item overflow responder works exactly the same as the item responder chip, however it only accepts items that cannot go to an item responder chip, dynamic item responder chip, or item terminator chip. \n\n-Item terminator chip works as a backup for responder chips.\n\n-Item broadcaster chip will show you the inventory connected to the routed request pipe on the pipe network and can be used to retrieve items from it. They can also extract from the side you configure. \n\n-Item stock keeper chip will constantly check the network for items and pull them to its pipe. If the chip is set to pull when empty, it will only pull if the inventory next to it is empty, otherwise it will pull when there are less items in the inventory than configured in the chip.\n\n-Item crafting chips craft things. \n\n-Item crafting extension chips are placed inside the item crafting chips. Make sure you randomize the id."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":4,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":738,"preRequisites":[127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":2,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Routed Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are six types of routed pipes: \n\n-Junction pipe is used to form an intersection that will allow other routed pipes to communicate. \n\n-Interface pipe will connect to an inventory allowing you to extract or insert items, chips can be used to control the logic. \n\n-Request pipe will allow requesting only specific items to be send through pipes.\n\n-Firewall pipe can control which items can pass through them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":0,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17500,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":739,"preRequisites":[738,737],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ghetto ME System","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are familiar with the mod it's time to organize items in your base a bit. These are the things you need in order to get a basic extract/insert system.\n\nFirst of all you will need a drawer controller. You can pick it from here or craft it yourself and place it down. Next to it add as much drawers as you want, and make sure they are touching each other or the controller.\n\nThe next step is to connect a routed interface pipe to your drawer controller. Take the item responder chip and configure it to filter mode: blacklist (this will allow you to get any items from your system) and add the chip to the routed interface pipe by right clicking on it. Don't forget the dynamic item responder.\n\nIn order to allow your system to be able to see items you need to add the item broadcast chip TO THE SAME ROUTED INTERFACE PIPE WHICH IS CONNECTED TO THE DRAWER CONTROLLER.\n\nThe last step is to connect a routed request pipe IN THE SAME NETWORK AS THE ROUTED INTERFACE PIPE and right click it to access the GUI. You can only extract items from it. In order to insert items simply right click them on the drawer controller. \n\nYou can find more complex tutorials on youtube for autocrafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":2,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":740,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":282,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lExtrude all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you hit the MV tier and it's time to get a better ratio when making sticks, pipes, wires, plates and many more parts. Most recipes use more than 32 EU/t so better make an MV extruder. After crafting the machine you need some extruder shapes for the different types of parts you want to make.\n\n§4Most of the Tinkers Gregworks tool parts are made in the extruder."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32351,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32350,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32352,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32353,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32356,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32358,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32359,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32360,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32361,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32362,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32363,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32357,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32372,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32375,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32374,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32355,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32373,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":282,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":741,"preRequisites":[1126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:ToolForgeBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§3§lTool Forge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally you get your first alumite. Now it's time to craft a tool forge for making bigger Tinkers tools. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":2,"Damage":15,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""},{"id":"TConstruct:CraftingSlab","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:SearedSlab","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:ToolForgeBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":742,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":3509,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":16,"ModDurability":0,"MiningSpeedExtra":700,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":3509,"MiningSpeed2":700,"HeadEXP":0,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"Steel Hammer"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lOne Block mining is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making a hammer you are now able to mine a shaft of 3x3 blocks. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. Higher tier metals require the MV extruder. You'll need a hammer head,two large plates and a large rod for your hammer. Be careful in the Nether or you could be boiled in lava very quickly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":21,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":3509,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":16,"ModDurability":0,"MiningSpeedExtra":700,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":3509,"MiningSpeed2":700,"HeadEXP":0,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"Hammer"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":743,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:lumberaxe","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2193,"BaseAttack":4,"ToolEXP":0,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2193,"MiningSpeed2":700,"Head":16,"Attack":4,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Steel Lumber Axe"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lCutting a Tree log by log is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making a lumber axe you are now able to cut down the entire tree in one hit. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. Higher tier metals require the MV extruder. Don't forget your backpack when you are cutting a sacred oak tree down."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":17,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:lumberaxe","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2193,"BaseAttack":4,"ToolEXP":0,"Built":1,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2193,"MiningSpeed2":700,"Head":16,"Attack":4,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Lumber Axe"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":744,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:excavator","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2413,"BaseAttack":6,"ToolEXP":0,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2413,"MiningSpeed2":700,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Steel Excavator"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMining Dirt Block by Block is so Old School","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By making an excavator you are now able to mine dirt in a 3x3 area. You can use iron, steel, or alumite poured from the Smeltery, it doesn't need to be steel. \nHigher tier metals require the MV extruder. Don't destroy your whole garden."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":19,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:excavator","Count":1,"tag":{"InfiTool":{"RenderExtra":16,"BaseDurability":2413,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":5,"RenderHead":16,"ModDurability":0,"Shoddy":0,"RenderHandle":16,"Accessory":16,"MiningSpeed":700,"Unbreaking":2,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":2413,"MiningSpeed2":700,"Head":16,"Attack":6,"Handle":16,"Broken":0,"Extra":16,"RenderAccessory":16,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Excavator"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":745,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:liquid.glue","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGlue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you centrifuge sticky resin, you get some glue. Glue is very useful in the creation of good circuit boards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemHarz","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30726,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemHarz","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":746,"preRequisites":[77,759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Due to the chip production, silicon becomes a more important material. You can centrifuge it out of fullers earth, asbestos or redstone dust. The electric blast furnace is needed to make ingots. One ingot requires a temperature of 1687 K for 84 seconds at 120 EU/t using raw silicon. Using silicon dioxide and carbon dust, you can get an ingot in 12 seconds! Another time when it is wise to search NEI and not stop on the first recipe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"minecraft:redstone","Count":40,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":747,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiode","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits need diodes. There are two ways to craft them. Right now you have to use the Gallium Arsenide method with fine copper wires and molten glass. Later when you get an EBF you can use it to make silicon wafers to make even more. Once you have polyethylene you can use annealed copper wires to increase your output yet again. \n\nMake sure you check all the NEI recipes for advanced items instead of just using the first one you find."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":1980,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":748,"preRequisites":[97,745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEmpty Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuit boards require wooden pulp and refined glue to make phenolic circuit boards. By adding gold wire you can craft a good circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2809,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32719,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1420,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1420,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29086,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":749,"preRequisites":[754],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAre you Prepared for HV?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel will be the material for the HV Tier. There are two ways to process it. Mixing it by hand outputs 8 stainless steel dust.\n\nManganese can be found from ore veins with grossular ore, spessartine ore, pyrolusite ore and tantalite ore. Alternative sources are Garnet dusts from Garnet sands, or Almandine. If you get desperate, you can buy some ore from the Coins tab.\n\nChrome can be centrifuged out of manganese dust and ruby dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2031,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32224,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":750,"preRequisites":[759,951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17874,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lMolten Plastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Molten polyethylene can be made in a chemical reactor using ethylene, compressed air cells or oxygen - using oxygen gives a 50% boost. Use a mold for making plates in a fluid solidifier to make plastic sheets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":751,"preRequisites":[754],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":582,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMixing Stainless Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel will be the material for the HV Tier. There are two ways to process it. Mixing it in a mixer outputs 9 stainless steel dust each process.\n\nManganese can be found in ore veins together with grossular ore, spessartine ore, pyrolusite ore and tantalite ore.\n\nChrome can be centrifuged out of manganese dust and ruby dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":582,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32221,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":752,"preRequisites":[746],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon Plate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits require transistors, which are made out of silicon plates, fine tin wire and molten polyethylene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:hotdogItem","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32113,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":753,"preRequisites":[749,751],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lStainless Steel EBF processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel ingots are made in the electric blast furnace at a temperature of 1700K. \nIt takes 80 seconds at 480 EU/t or by adding oxygen gas 60 seconds at 480 EU/t.\n\n§4You need a miniumum of two MV energy hatches to power the EBF."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11306,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":754,"preRequisites":[77,893,1084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Energy Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some materials like stainless steel require 480 EU/t. Your LV hatches are not good enough. Craft a minimum of two MV hatches to upgrade your electric blast furnace to HV.\nIf you not make some Ultra Low Power ICs go and make some wafers first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":755,"preRequisites":[77,609],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"SpecialData":-1,"PrimaryMaterial":"Iron","Tier":1,"MaxDamage":25600,"Voltage":32,"MaxCharge":100000,"Electric":1,"SecondaryMaterial":"Rubber"},"GT.ItemCharge":100000},"Damage":160,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter than Duct Tape","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A soldering iron tool to remove the \"burned out circuits\" message is better than duct tape. \nThe soldering iron requires one soldering material item and 10,000 EU. Valid soldering materials are fine wires, rods, and ingots made from either tin, lead, or soldering alloy. The soldering iron will consume the first such material it finds in the player's inventory.\n\nIn order to \"complete\" the quest they will need to charge the soldering iron after you craft it.\n\nFor the other problems other tools are necessary.\n\nPossible problems Tool to fix\n\"Pipe is loose.\" Wrench\n\"Screws are missing.\" Screwdriver \n\"Something is stuck.\" Soft mallet \n\"Platings are dented.\" Hammer \n\"Circuitry burned out.\" Soldering Iron \n\"That doesn't belong there.\" Crowbar"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":160,"OreDict":"craftingToolSolderingIron"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19314,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":756,"preRequisites":[77,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLess Power loss","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you reach MV tier you can make your own duct tape in case you have to move your multiblock machines around. Duct tape will fix all maintenance problems in any multiblock machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30726,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32764,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30726,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":757,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lRuby Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ruby is a good source for electrolyzing to get chrome and aluminium. Your new MV electrolyzer gives you access to a lot of new recipes. Once you get low on Ruby, you can centrifuge Redstone to get more.\nAnother good source of aluminium and oxygen is red granite dusts. You can get those from red stonelillies in the Fishing Farming Cooking tab using ic2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":2502,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":758,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Let's make some MV battery hulls for new batteries. Now it's up to you to make lithium, cadmium, sodium or acid batteries with these hulls."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32501,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":759,"preRequisites":[846,847],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.99","Count":1,"Damage":874,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMolten Polyethylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polyethylene is made out of ethylene in a chemical reactor.\nMolten Polyethylene cells carry 144L, perfect for 1 ingot or plate. \nIf you want precise amounts, you can use a Volumetric Flask once you electrolyze some Boron from Borax."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":43,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":32,"Damage":874,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":760,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2805,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lClay Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You found out that electrolyzing clay dust will give you silicon dust. There are plenty of stained clay blocks found in canyon and lush desert biomes or on mountains that can be pulverized to clay dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":832,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":2020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":761,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPowderbarrels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Powderbarrels are twice as good as dynamite in the implosion compressor. Craft one stack."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:gunpowder","Count":256,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":17809,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"StevesCarts:ModuleComponents","Count":16,"Damage":43,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":762,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTNT","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"TNT is much more powerful than the powderbarrel but much harder to craft. There are LV and HV ways to craft. At LV you need heavy or light fuel to make some toluene which can be solidified to gelled toluene. Alternatively you can use sugar and plastic dust in a chemical reactor to make toluene more efficiently. Mix it with sulfuric acid to make TNT.\n\nThe HV way requires an oil cracking unit to make all kinds of cracked fuel or cracked naphta and a distillation tower to extract toluene from that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30647,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":256,"Damage":32010,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:tnt","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32010,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30720,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}]}]},{"questID":763,"preRequisites":[80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockITNT","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§liTNT","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Industrial TNT is the HV variant of TNT. It explodes with more power, yet does not destroy blocks when it explodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30647,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":32010,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30628,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32010,"OreDict":""},{"id":"IC2:itemFluidCell","Count":8,"tag":{"Fluid":{"FluidName":"liquid_nitrationmixture","Amount":1000}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":764,"preRequisites":[556],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemDynamite","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDynamite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dynamite is the most basic explosive you can use in the implosion compressor.\nMix some paper, string and glyceryl trinitrate in a chemical reactor to get dynamite."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:paper","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30714,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemDynamite","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17809,"OreDict":""},{"id":"IC2:itemDynamite","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":765,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1157,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to oil drill!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps are nice but you're going to reach a point where you will want MOOOOOOOOOOOOORE oil. This multiblock will help with that but you will need to search for oil using a seismic prospector. You can find raw, light and heavy oil. There's also a chance to find natural gas.\n\nHigher tiers of power will drill faster. You need to upgrade the energy hatch corresponding to the power tier. \n\nLater you can upgrade the oil drilling rig so it extracts from more than one chunk at a time.\n\nYou need mining pipes in the machine controller block.\n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1157,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":15,"Damage":4401,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":62,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":766,"preRequisites":[160,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1160,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLet's get crackin!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cracking oil products like light and heavy fuel with the oil cracker is faster and more efficent than using a chemical reactor, producing 25 percent more output. Cracked products will result in additional by-products in the distillation tower. It is a smart idea to get this multiblock since you are going to need TONS of industrial TNT from Toluene for advanced tier rockets. \n\nThe 16 coils form 2 vertical rings of 8 on either side of the controller. The casings between the rings can be replaced with a hatch for steam/hydrogen input. Energy hatch and maintenance hatch can replace any of the casings. The input product hatch and output product hatch must replace one of the casings outside of the coils.\n\nHint: Only GT/Railcraft steam can be used, not ic2 steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1160,"OreDict":""},{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":20,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":53,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":63,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30001,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"steam","Amount":1000}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":767,"preRequisites":[73],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAnalyzing the soil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of looking for ores by hand? Want to find deep oil that will last a long time? A seismic prospector will tell you the ores in the surrounding chunk in a handy book you can read, and also the oil in the oilfields beneath each 8x8 chunks.\n\nTo determine which kind of oil or gas there is in the chunk you need to scan the soil by right clicking an Advanced Seismic Prospector with 2 Powderbarrels, 4 Glyceryl Trinitate cells, 8 iTNT or 16 TNT. Make sure you wait a few seconds after placing the prospector before applying the explosives.\n\nThen use a Data Stick to extract the data by right clicking on it after the animation has finished.\n\nNow you need to put the analyzed data stick in a GT scanner. Then place it in the bottom right slot of the printer and add 3 paper in the top left slot and make sure you have at least 144 mb squid ink in it. (Only gregtech machines will work)\n\nAfter the process is done take the printed pages and combine it with a piece of leather in an assembling machine filled with at least 20 mb of refined glue. Don't assemble more than one book at time.\n\nTADA now you have a book with detailed info about the chunks you scanned.\n\nNote: Each oilfield is 8x8 chunks, and always on a by 8 chunk boundary. Within the field the amount can vary +- 25 percent. The amount reported in the book is the minimum and maximum per oilfield across all chunks in the field. The prospector reports on 3x3 oil fields at all tiers with the center oil field where the seismic prospector is located. Oil extraction rate depends on many factors, check the wiki for details. In general, anything above 300 is really good. The total amount in the chunk is complicated. \n\nOre locations are given as the center of the chunk. Ores that are marginal in that chunk may not be found in the center but on an edge. Look at where ores are located and determine the center of the vein. At higher tiers, it scans more chunks for ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":768,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1126,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou smell like a distillery!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This bad boy will tremendously boost the by-products of your cracked fuel or pyrolyse oven. This way you can make industrial TNT, polyethylene, polytetrafluoroethylene and other plastics more efficiently. \n\nYou will also need this for your automated setups.\n\nYou will need to make EV circuits in a cleanroom to build this machine.\n\nFor hatches, you can choose your own tier. 1 MV energy does most of the useful recipes. 2 MV energy or 1 HV energy hatch will cover almost all the rest except pollution or acetone.\n\nYou will need 1 input hatch, and at least 5 output hatches. An output bus will capture any solid outputs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1126,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":40,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30740,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":769,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":573,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPlaying with dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine will help you turn dust into crystals which you will need for high tier recipes. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":573,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemDust2","Count":9,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":770,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":213,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAvengers, Assemble! 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You know what this does. :D"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":213,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":771,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":571,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDust to crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use the autoclave to crystallize your dust. You can make raw carbon mesh out of carbon dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":571,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":772,"preRequisites":[1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":593,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPrecision is required","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will use this a lot to make high tier circuits, and for other recipes"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":593,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24532,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":773,"preRequisites":[771,759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPartCarbonMesh","Count":24,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay one: Raw carbon mesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This way of making carbon requires autoclaving 4 carbon dust. You can use polyethylene which gives you only 1 raw carbon fibre at LV tier, polytetrafluoroethylene gives you 2 at MV Tier or go for the best way: molten epoxid which yields 4 at HV Tier. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonFibre","Count":48,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonMesh","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11473,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":774,"preRequisites":[731,771],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.BioOrganicMesh","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWay two: Bio Organic Mesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If want to save the ecosystem you can autoclave 16 plantballs to get raw bio fiber with the following liquids:\n\n§4-Biomass 33% chance\n-Methanol 50% chance\n-Fuel 90% chance\n-Nitro-diesel 100% chance\n\n§rHowever, making carbon plates this way will require an electric blast furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.RawBioFiber","Count":48,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.BioOrganicMesh","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30709,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":775,"preRequisites":[692,778],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CarbonPartChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon parts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These are the first parts you will need for your beloved nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.CarbonPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CarbonPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCarbonMesh","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":776,"preRequisites":[775,797,796],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemNightvisionGoggles","Count":1,"tag":{"charge":200000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Seeing things brighter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano helmet is a bit special. It will provide you with night vision as long as you have energy! Don't turn it on in bright areas or you'll be blinded!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemNightvisionGoggles","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":777,"preRequisites":[775,769,772],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoCrystal","Count":64,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are those green diamonds? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They may not be green diamonds but they are needed for your nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":778,"preRequisites":[773],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPartCarbonPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§7§6§lCarbon Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Carbon plates are needed for the nano armor. Go check out the armor chapter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11473,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":779,"preRequisites":[777,775,776],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorNanoChestplate","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carbon skin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can stop worrying about some mobs for now. This will help you survive a bit and will give you some of that SWAG. Your journey doesn't stop here traveller, as quantum armor awaits you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoHelmet","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoChestplate","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoLegs","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorNanoBoots","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":24,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":780,"preRequisites":[774],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.BioCarbonPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOrganic Way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bio carbon plates are made out of raw carbon mesh. Put it in the electric blast furnace to make carbon plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.BioCarbonPlate","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:cube","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:coal_block","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":781,"preRequisites":[77,717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1159,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lStill not enough charcoal?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This oven is the best way to get charcoal and creosote (x50 faster than Railcraft's coke oven) and other byproducts. You will need tons of bronze, iron and steel to build it, but it's worth it. Finally, it will be possible to dismantle the charcoal pit.\nWith Cupronickel coils the oven is a bit slower. Each coil tier speeds up the charcoal production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:gt.blockcasingsNH","Count":66,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1159,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""},{"id":"dreamcraft:tile.TripleCompressedCharcoal","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":782,"preRequisites":[760],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMonocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make wafers, you need to make monocrystalline silicon first. The process takes 450 seconds and requires silicon dust and gallium arsenide dust in the electric blast furnace. You can make 16 wafers out of every boule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":1980,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32030,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":980,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":783,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1131,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWe need big toys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All your little turbines take up too much space? Are you running out of water? It is time to solve these problems. This large turbine can help you produce a tremendous amount of energy. It will also distill water for you, so you can use the same water again inside your large boiler. Don't forget to make a rotor for the turbine. \n\nMake sure you provide the optimal flow of steam using a fluid regulator. Don't exceed your dynamo hatch's EU rating, or it will explode! For HV you will probably want an IC2 fluid regulator. Above HV you can use the fluid regulator covers.\n\nTurbines with a small turbine durability below 75k have their recipes removed. Use NEI with the appropriate long rod to find assembler recipes that will work for you. Long magnalium for small turbines, long titanium for normal turbines, etc.\n\nPre-moon, the best rotors are small ardite or vibrant alloy. Remember to disassemble rotor blades before they break to recover the materials.\n\nPost-moon, the best HV rotors are normal damascus or blue steel. Risk-takers can try ultimet but you must not provide optimal flow since it will give 517 EU/t, blowing up a single amp dynamo. Luckily turbines are now fully functional with multi-amp dynamos, so give those a try if you need extra amps!\n\nFor additional choices, see the Large Turbine Calculator in Discord."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":30,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1131,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":170,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:tile.TripleCompressedCharcoal","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":784,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIt's time to get more steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As soon as you have the ability to store energy in large quantities, it would be necessary to have a way to generate energy in large quantities. You need a large bronze boiler. But in order to make this boiler, you will need a mountain of bronze. This boiler produces 800 liters of steam per tick. This is enough to run 10 basic steam turbines.\n\nThe large boiler can use either water or distilled water. Water is consumed at a rate of 1L of water per 150L of steam.\n\nTo make a large boiler you must make a 3x3x5 structure with Bronze Pipe Casings in the center of the middle 3 levels. The lowest level must contain at least 1 or 2 input hatches, 1 or 2 input buses, 3 or 4 fireboxes, 1 muffler, and one maintenance hatch. The lowest level can not contain any plated bricks. All hatches, buses, and mufflers must have their back side touching a firebox. The output hatch can be placed on any of the upper 4 levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":5,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":32,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":61,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":71,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":91,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:tile.DoubleCompressedCharcoal","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":785,"preRequisites":[752],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTransistor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next tier we need advanced circuits. To create some advanced circuits, you need some transistors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19057,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":32717,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32719,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":786,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1021,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSteam is never enough","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can make advanced circuits, which means it's time to build a large steel boiler. This boiler is one and a half times more efficient than a bronze one, and that means we need 5 more steam turbines. Don't forget to monitor the water level!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":4,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1021,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5134,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":787,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1022,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMoooooore steam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stock up on titanium, it will be fun. A large titanium boiler produces 1600 litres of steam per tick. For this amount you need to choose the right rotors for your turbines. For example, 2 normal damascus steel rotors will be just right. Optimal flow for such rotor is 800 liters per tick. Make a fluid regulator in the assembler to control the flow rate. If you have more than one boiler, you will need to make calculations in order to select the appropriate rotors. Make sure your dynamo hatch is capable of accepting all the EU, or it will explode!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":3,"Damage":3,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1022,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":14,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":788,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEven more steam? Are you sure?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This boiler is the most efficient source of steam. It allows you to produce as much as 2000 litres of steam per tick. If you need more, then build a dual or even quad boiler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":3,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1023,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":3,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:tile.QuadrupleCompressedCharcoal","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":789,"preRequisites":[769],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatCrystal","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnergy Crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Make energy crystals out of ruby and redstone dusts in the MV mixer. Energy crystals can store 1 million EU and work as an HV battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemDust2","Count":36,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemBatCrystal","Count":4,"tag":{},"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":790,"preRequisites":[789],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNano Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nano crystals are used for making the nano armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatCrystal","Count":1,"tag":{},"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoCrystal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32719,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":791,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":592,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Precision Laser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits need an MV precision laser. Let's craft one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":592,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":792,"preRequisites":[782],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSilicon Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some silicon wafers, put the monocrystalline silicon boule in a cutting machine. It would be better to immediately make the MV version because you will need it later for RAM, IC's and other chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":252,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":793,"preRequisites":[794],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32079,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGood Integrated Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Good circuits have three variants. For the advanced circuits you need the good integrated circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32701,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32079,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32716,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":794,"preRequisites":[795,837],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIntegrated Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are two variants of basic circuits. The basic circuit from IC2 or the integrated circuit which needs a circuit assembling machine to be made. The good integrated circuit needs two integrated circuits to be crafted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32715,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32701,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32100,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32715,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":795,"preRequisites":[717,530,529],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1180,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBasic Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits require an LV circuit assembling machine. Basic ones can be made much more efficient with this machine. Let's craft one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1180,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11345,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":796,"preRequisites":[794,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.sensorLens","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sensor lens","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The night vision goggles need special sensor lenses to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28308,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.sensorLens","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemBatCrystal","Count":1,"Damage":26,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":797,"preRequisites":[794,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:reactorHeatSwitchDiamond","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Heat Exchanger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The night vision goggles need advanced heat exchangers to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"IC2:reactorHeatSwitchSpread","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:reactorHeatSwitchDiamond","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":798,"preRequisites":[236,234,235],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron capped Greatwood Wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making a gold capped greatwood wand requires 35 vis, but your old wand's limit is 25. So first create an iron or copper capped greatwood wand and then create a gold capped greatwood wand.\nMake sure you use NEI 'U' command on the wand caps to find the correct GT:NH recipe for the wand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":0,"terra":0,"ignis":0,"ordo":0,"perditio":0,"aer":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":799,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't try to dive with it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining a scuba helmet with a nano helmet in an assembling machine will give you a nano scuba helmet. You'd better not try to dive with it because you can't. It is a part of the new quantum suit helmet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoHelmet","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":800,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plated Leggings - Better not try to wear it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining stainless steel platings with some nano leggings in the assembler gives you nano plated leggings. Better not try to wear them because you can't. They are part of the new quantum suit leggings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoLegs","Count":1,"Damage":27,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":801,"preRequisites":[779,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Don't try to walk with it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining some rubber boots with nano boots in the Assembler gives you Nano Rubber Boots. Better not try to put them on because you can't. They are part of the new quantum suit boots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorNanoBoots","Count":1,"Damage":27,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":802,"preRequisites":[799,801,800,654],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iridium Plated","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plating all your armor parts with iridium alloy casings gives them a better durability. Before you can wear these quantum armor parts you need to activate them with some quantum crystals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.IridiumAlloyItemCasing","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.NanoScubaHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"GraviSuite:advNanoChestPlate","Count":1,"tag":{"toolXP":0,"charge":0,"toolMode":0},"Damage":27,"OreDict":""},{"id":"dreamcraft:item.NanoPlatedLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.NanoRubberBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmetEmpty","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartIridium","Count":4,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":803,"preRequisites":[802,804],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The quantum armor is a high tier and very durable armor with a lot of features like night vision, fall damage reduction and running very fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32706,"OreDict":"circuitMaster"},{"id":"gregtech:gt.blockmachines","Count":20,"Damage":1662,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32597,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32644,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":32604,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":32673,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumPartHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantumPartBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemArmorQuantumHelmet","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumChestplate","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumLegs","Count":1,"tag":{},"Damage":27,"OreDict":""},{"id":"IC2:itemArmorQuantumBoots","Count":1,"tag":{},"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32604,"OreDict":""},{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":804,"preRequisites":[802,807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum crystal ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The quantum crystal is needed to turn quantum armor parts into wearable quantum armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":805,"preRequisites":[789,1406],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.LapotronDust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lLapotron Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lapotron crystals require you to mix your energium dust with some lapis dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":72,"Damage":2526,"OreDict":""},{"id":"IC2:itemDust2","Count":48,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":806,"preRequisites":[805,808],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemBatLamaCrystal","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lLapotron Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new HV mixer you can make lapotron dust. Place it in an autoclave to make some raw lapotron crystals. With an EV assembler and advanced circuits you can make lapotron crystals which store up to 10 million EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LapotronDust","Count":120,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCircuitAdv","Count":8,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"dreamcraft:item.RawLapotronCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32714,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":807,"preRequisites":[1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.QuantumCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuantum Crystal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your quantum armor you need some quantum crystals. Place a lapotron crystal in your precision laser to get a quantum crystal "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.QuantumCrystal","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.LapotronDust","Count":60,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":808,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":583,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMixing at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High Tier dusts need HV Mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":583,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11367,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11366,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":809,"preRequisites":[831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"NASA Workbench aka Dire Crafting Table","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Avaritia 9x9 dire crafting table replaces the NASA workbench. It is required to craft all rockets and high tier equipment. First of all you need 81 crafting tables to make a double compressed crafting table, a few HV components, wafers and a crystal matrix. And yes, you do need nether stars. Hint: Check out the nether star recipe which uses null catalyst and salis mundus. Null catalyst can be duplicated by adding magma cream, blaze powder and a tiny pile of nether star dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:crafting_table","Count":81,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Avaritia:Triple_Craft","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":144,"Damage":17500,"OreDict":""},{"id":"dreamcraft:item.StainlessSteelBars","Count":36,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:nether_star","Count":18,"Damage":0,"OreDict":""},{"id":"Avaritia:Resource","Count":36,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Avaritia:Resource","Count":9,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Avaritia:Crystal_Matrix","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32642,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":130,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":810,"preRequisites":[812,813,814,815,816,819],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of hard work and a few stacks of TNT your first rocket is finally ready. But before you can go to the Moon you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":3,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.spaceship","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":22,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":811,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. You can craft the first one using a data circuit and a compressed steel plate in a hv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":812,"preRequisites":[80,809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 36 of these plates out of compressed aluminium plates, compressed bronze plates and compressed steel plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":37,"Damage":10,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":148,"Damage":26306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":37,"Damage":32462,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":37,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":813,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Nose Cone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2.inv","Count":1,"Damage":14,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":814,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.rocketFins","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":815,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. Better craft two, because the Moon lander needs one also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32731,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":2,"Damage":14,"OreDict":""},{"id":"GalaxySpace:item.CompressedSDHD120","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":816,"preRequisites":[815,817,818],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon lander is required for a soft landing.\nYou will need an additional frequency module for hearing things on planets and a second seat for a Moon buggy you may build later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":3,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":817,"preRequisites":[809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.buggymat","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Buggy Seat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The buggy seat is part of the Moon lander and the Moon buggy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":10,"Damage":9,"OreDict":""},{"id":"IC2:blockRubber","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.buggymat","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalaxySpace:item.CompressedSDHD120","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":818,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":19,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frequency Module","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The frequency Module will help you hear sounds properly while in space (it's also used with the telemetry unit so that your buddies can keep track of you from your base, if you are playing with friends). You need it in your inventory and in the Moon lander."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32692,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"GalacticraftCore:item.battery","Count":2,"tag":{"electricity":0},"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":7,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":819,"preRequisites":[812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Small Fuel Canister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 1 rocket you need to craft two of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleSmallCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.CompressedDualAluminium","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.CompressedDualBronze","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":820,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.landingPad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Launch Pad","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a launch pad. Build a 3x3 launch pad and place your rocket on top of it.\n\nMake sure you don't have any lightning warp effects or you'll be really sad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":9,"Damage":11,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":9,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.landingPad","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":821,"preRequisites":[827],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.fuelLoader","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To pump fuel into your rocket you need a fuel loader. Place it right next to the middle of any side of the launch pad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5132,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.fuelLoader","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":822,"preRequisites":[823],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenGear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Gear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oxygen gear is used to attach oxygen tanks to the oxygen mask. This is absolutely vital for any astronaut."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":5,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenGear","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockAlloyGlass","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":823,"preRequisites":[795,809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenMask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Mask","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen mask is part of the system used to breathe on planets without oxygen, the others being oxygen gear and oxygen tanks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ReinforcedGlassPlate","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenMask","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockAlloyGlass","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":824,"preRequisites":[823,822],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Light oxygen tank is an oxygen storage tank that can hold up to 900 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank. I recommend making the medium tanks and using the light tanks as spares to return to base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":14,"Damage":8,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":2,"Damage":900,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":825,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockOreCopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCopper Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can be found between y levels 5 and 60 either as \"Copper Ore\" or \"Chalcopyrite\". Most of the time you'll find it together with \"Iron\" and \"Pyrite\".\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in NEI and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":24,"Damage":855,"OreDict":"oreChalcopyrite"},{"id":"gregtech:gt.blockores","Count":24,"Damage":35,"OreDict":"oreAnyCopper"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:oreBerries","Count":5,"Damage":2,"OreDict":""},{"id":"harvestcraft:footlongItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":826,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lIron Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With iron tools, you are able to mine most of the Overworld ores. I think you already found iron or magnetite. So bring me some ores and make some iron ingots out of them.\n\n§4Hint:\nTo see where a special ore can be found click the raw ore in nei and it will show you more details. Works with small ores too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":917,"OreDict":"oreBandedIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":32,"OreDict":"oreIron"},{"id":"gregtech:gt.blockores","Count":16,"Damage":870,"OreDict":"oreMagnetite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":931,"OreDict":"oreYellowLimonite"},{"id":"gregtech:gt.blockores","Count":16,"Damage":930,"OreDict":"oreBrownLimonite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:oreBerries","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":827,"preRequisites":[819],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For every flight the rocket needs some fuel. So refine some fuel and fill some fuel canisters. \nYou can use Fuel or Rocket Fuel from Ender IO."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":8,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":828,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Collector","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen collector is a block that gathers oxygen from leaves and farm plants to use in an oxygen bubble distributor, oxygen sealer, oxygen compressor, and other oxygen-reliant machines. If you plan to build a Moon base, which needs a continuous oxygen supply, you will need to build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1587,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":829,"preRequisites":[824],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The oxygen compressor is used to fill empty or depleted oxygen tanks. Connect an oxygen pipe to the blue ring input side and a power source to the grey square input side. Place an oxygen tank in the bottom right slot and it will take oxygen from the input and place it into the tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenConcentrator","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.oilCanisterPartial","Count":1,"Damage":1001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32642,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":10,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":830,"preRequisites":[822],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Parachute","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A parachute is used to prevent death upon re-entry into the Overworld's atmosphere. The parachute is an essential part of your journey to space. You should never journey into space without it. There will even be a warning if you try to launch without one on you.\n\nUse the assembler to save materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:wovencottonItem","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.canvas","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":3,"Damage":19305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.canvas","Count":6,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32415,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32418,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32416,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":32425,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":831,"preRequisites":[832],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced wafer is used for more advanced machines such as the advanced solar panel or the Avaritia dire crafting table. It is also used in the creation of a space station."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32034,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":832,"preRequisites":[160,795,102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic wafer is used for creating basic machines such as the basic solar panel, the fuel loader, the energy storage module and the compressor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32033,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":12,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32033,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":833,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purge your warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The warp you have accumulated over time is starting to become a problem. Making bath salts to clean off the warp is only a temporary solution. To truly get rid of it, you need something more powerful, a pure tear. If you collect a few things for me, I will give you one. Think wisely about using it, since it's a very long journey to unlock it through research."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:nether_star","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":10,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11317,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":16,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":29500,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":2,"Damage":7,"OreDict":""},{"id":"minecraft:ender_eye","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"alienis"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"permutatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"praecantatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"sano"}]},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":834,"preRequisites":[66],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lCircuit Boards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For every circuit you need a basic circuit board. Craft a coated circuit board and use copper wire to finish it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17809,"OreDict":""},{"id":"IC2:itemHarz","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32710,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32710,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bread","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32710,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":835,"preRequisites":[67],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32716,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§4§3§lResistor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every basic circuit needs two resistors to work"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1360,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2535,"OreDict":""},{"id":"IC2:itemHarz","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32716,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:blueberrysmoothieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":836,"preRequisites":[542],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2980,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lGallium Arsenide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The diode requires gallium arsenide and you may be wondering how to get gallium or arsenic this early in the game.\n\nSphalerite dust in an electrolyzer is the primary source of gallium at this tier. \nYou can also get gallium out of crushed zinc ore by using a thermal centrifuge. You can find the small zinc ores in the Overworld or the in the Nether at Y Level 80 - 210. To get additional crushed ore, use a Tinker's Construct tool with the Luck (Fortune) enchant on it - apply a lot of Lapis. \n\nYou can get arsenic from realgar small ores in the Nether at Y level 5 - 85. Centrifuge the dusts in a centrifuge. Other sources are Tinker's Construct cobalt ore in the nether and cobaltite ore in the Twilight Forest.\n\nYou need to level up your obsidian level tool, use a alumite tool, or make an Ironwood Pickaxe to harvest cobalt ore.\n\nAnother nice way to get gallium and arsenic is with XP buckets in a crafting grid.\n\nMix those two dusts in a mixer to get gallium arsenic dust.\n\nIn the nether it is easier to use a GT miner near the ceiling to get all the ores you need."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2039,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2980,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2039,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":837,"preRequisites":[791],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32038,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lILC and RAM","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Advanced circuits need integrated logic circuits and random access memory chips.\nYou can get those by cutting the ILC and RAM wafers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32036,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32038,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24502,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":838,"preRequisites":[785,793],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next tier we need advanced circuits. To make an advanced circuit, you need good integrated circuits, RAM, an integrated logic circuit, and transistors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28308,"OreDict":""},{"id":"dreamcraft:item.ReinforcedGlassLense","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":839,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32498,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHandle tiny piles like a K1ng","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Don't you hate having to manually compress all those tiny piles ? Well, let me show you how to automate that. A combination of typefilter, chest buffer (or super buffer in HV) and packager frees you from that annoying task. The chestbuffer can hold up to 9 stacks of tiny piles and the super buffer can hold 256 stacks of tiny dusts, which is more than enough. You can set its mode with a screwdriver on the output side. Set it to 9 to export 9 tiny piles at a time and let the packager compress these into regular dusts.\n\nSuper buffers can be lag sources, so be careful to keep them as empty as possible. If you are using a multiblock packager, be sure to change the buffer from Stocking mode to Transfer Size mode."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":9251,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":9231,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32498,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":401,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemItemConduit","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1386,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":840,"preRequisites":[643,641],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30644,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lButane and Propane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can distill a lot of different gases out of your \"refinery gases\".\nMethane, butane, propane, helium and ethane.\n\n§4Hint:\nRefinery gas is not the best source for Propane and Butane. Better refine those out of naphtha."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30643,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30644,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":841,"preRequisites":[850,851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30639,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTetranitromethane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bio diesel and diesel can be boosted using tetranitromethane. Ethenone and nitric acid are required to make tetranitromethane in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30653,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30641,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30639,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30629,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":842,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMethane Gas","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Methane gas with a burn value of 104,000 EU per cell can be burned in the gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30691,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30715,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":843,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30673,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Methanol with a burn value of 84,000 EU per cell can be used to make biodiesel and other fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30673,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":844,"preRequisites":[736],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ethanol with a burn value of 192,000 EU per cell can be used to make biodiesel and other fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30706,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":845,"preRequisites":[843,844,849,848,1544],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30627,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBio Diesel Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With ethanol or methanol and seed oil or fish oil you can make bio diesel. Burn value is 256,000 EU per cell. Diesel and bio diesel are needed for cetane-boosted diesel.\n\nYou get some glycerol as by-product. Save it so you can make glyceryl trinitrate for your dynamite or for your future epoxid production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30627,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30627,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30691,"OreDict":""},{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":846,"preRequisites":[550,126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lO like Oxygen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oxygen can be made in several different ways. Most commonly you'll either electrolyze it out of cassiterite sand, sugar from sugar canes or sugar beets, water, or various other oxygen-rich dusts, or centrifuge it from brown or yellow limonite dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":91,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2930,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2931,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":847,"preRequisites":[1744],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can make ethylene many different ways\n\n- Ethanol and sulfuric acid in a Chemical Reactor \n- Ethanol in a Chemical Dehydrator\n- Distilling various gases (i.e. wood gas) in a Distillery\n- Cracking Naphtha, fuels or refinery gas with hydrogen or steam in the Chemical Reactor will work too. Check NEI or the Game Mechanics Spreadsheet at http://bit.ly/gtnh-datasheets for details"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemBiochaff","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":848,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:fluid.seedoil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSeed Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make some bio diesel you need seed oil or fish oil and mix that with ethanol or methanol. Seeds give seed oil and fish produce fish oil when placed in a fluid extractor.\n\n§4Pam's peanuts are a good seedoil source. Another option is Forestry Butternuts. Or you can use IC2 crops to get Rapeseed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30713,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30711,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":849,"preRequisites":[543,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2685,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lSodium Hydroxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Make some sodium hydroxide. You can make it out of sodium (or out of salt water once you reach EV).\n\n§5§4The by-product hydrogen can be burned in a gas turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2017,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2685,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2017,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":850,"preRequisites":[852,893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEthenone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hopefully you saved some sulfuric acid during your fuel production. Together with acetic acid you can make ethenone.\nCraft an advanced chemical reactor to get access to more advanced recipes.\n\nSave the ethenone for HV, you will need it to make tetranitromethane for cetane boosted diesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30670,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30691,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":851,"preRequisites":[846,853],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30653,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitric Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nitric acid can be made out of water, oxygen and nitrogen dioxide."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":12,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30717,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":852,"preRequisites":[847,846],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30670,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAcetic Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Acetic acid can be made out of oxygen and ethylene. Alternatively, it can be made out of biomass, wood vinegar or vinegar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30670,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":853,"preRequisites":[846,855],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitrogen Dioxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make nitrogen dioxide you need to combine oxygen gas and nitric oxide in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30013,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30658,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30717,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":854,"preRequisites":[550,555,943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAmmonia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nitrogen and hydrogen... Ammonia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":78,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30012,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":26,"Damage":30659,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":855,"preRequisites":[846,854],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30658,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNitric Oxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make nitric oxide you need to combine oxygen and ammonia in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":30658,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30691,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":856,"preRequisites":[857,858,2293],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§l1,1-Dimetylhydrazine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make 1,1-dimethylhydrazine you need to combine some dimethylamine and chloramine in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30654,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30655,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":857,"preRequisites":[854],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimethylamine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining ammonia and methanol in a chemical reactor produces some dimethylamine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30673,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30656,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30659,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":858,"preRequisites":[854,859],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChloramine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining hypochlorous acid and ammonia in a chemical reactor produces some chloramine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30655,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30659,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":859,"preRequisites":[126,1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lHypochlorous Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hypochlorous acid requires water, chlorine and some mercury."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30087,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30684,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":16,"Damage":826,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":860,"preRequisites":[1012,1424],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11028,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lTitanium finally","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rutile, chlorine and carbon dust makes Titaniumtetrachloride. Combining this with Magnesium in an HV EBF will give you hot Titanium ingots. Freeze those and you will get your first titanium.\nOn the Moon if you are lucky you can find Ilmenite ore which make the processing of Titanium a bit easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":12028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":861,"preRequisites":[1244,1891],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11316,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lTungstensteel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is needed for the next tier. Tungsten can be found on Mars or in Moon stone dust. Mix that with some steel dust. Smelt it at 3000K (requires nichrome coils) in an electric blast furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11316,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":862,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:ShortBow","Count":1,"tag":{"InfiTool":{"BaseDurability":57,"BaseAttack":2,"DrawSpeed":16,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":57,"MiningSpeed2":150,"BaseDrawSpeed":16,"Head":0,"Attack":2,"Handle":0,"Broken":0,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":3,"Modifiers":0},"display":{"Name":"Wooden Shortbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first bow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since vanilla bows are only craftable in the assembling machine and mobs do not drop them very often you have to make a Tinkers bow. Wood would be the best material for now. So craft the bow limbs out of wood and the bow string out of strings. The arrow that has the most durability is bone, so craft the stick out of bone. It is much lighter but less durable than a regular arrow. Use a flint tip to make it repairable with flint.\n\n§4You can repair your bow the same way as all the other Tinkers tools. Arrows can be regained by repairing them or picking them up from the floor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:Pattern","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":25,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":3,"Damage":0,"OreDict":"plankWood"},{"id":"minecraft:bone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":3,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:fletching","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:BowLimbPart","Count":2,"Damage":0,"OreDict":""},{"id":"TConstruct:bowstring","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:ShortBow","Count":1,"tag":{"InfiTool":{"BaseDurability":57,"BaseAttack":2,"DrawSpeed":16,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":57,"MiningSpeed2":150,"BaseDrawSpeed":16,"Head":0,"Attack":2,"Handle":0,"Broken":0,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":3,"Modifiers":0},"display":{"Name":"Wooden Shortbow"}},"Damage":0,"OreDict":""},{"id":"TConstruct:ArrowAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000029802322,"BaseDurability":107,"BaseAttack":2,"ToolEXP":0,"HarvestLevel":1,"RenderHead":3,"ModDurability":0,"Shoddy":0,"RenderHandle":1,"Accuracy":95,"Accessory":0,"MiningSpeed":400,"Unbreaking":0,"Damage":0,"BonusDurability":0,"TotalDurability":107,"Head":3,"Attack":2,"Handle":1,"Broken":0,"Mass":3.125,"Ammo":11,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Flint Arrows"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bone","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":863,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Javelin","Count":1,"tag":{"InfiTool":{"BaseDurability":35,"ExtraAttack":44,"BaseAttack":6,"ToolEXP":62,"Built":1,"ExtraSmite":20,"ExtraLuckLooting":33,"HarvestLevel":4,"RenderHead":14,"ModDurability":0,"Shoddy":0,"RenderHandle":14,"Accessory":14,"MiningSpeed":650,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":35,"Head":14,"Attack":6,"Handle":14,"Broken":0,"Ammo":7,"RenderAccessory":14,"ToolLevel":1,"RepairCount":1,"Modifiers":0},"display":{"Name":"Bronze Javelin"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lBronze javelin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The bronze javelin is a bit expensive and has only 7 throws, yet it is a good mid-range weapon. With one bronze ingot you can replenish your stack of javelins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":25,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:arrowhead","Count":1,"Damage":14,"OreDict":""},{"id":"TConstruct:toughRod","Count":2,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:Javelin","Count":1,"tag":{"InfiTool":{"BaseDurability":35,"Head":14,"BaseAttack":6,"ToolEXP":0,"HarvestLevel":4,"Attack":6,"RenderHead":14,"ModDurability":0,"Handle":14,"Broken":0,"Shoddy":0,"RenderHandle":14,"Ammo":7,"Accessory":14,"MiningSpeed":650,"RenderAccessory":14,"ToolLevel":1,"Unbreaking":1,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":35},"display":{"Name":"Bronze Javelin"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32241,"OreDict":""},{"id":"TConstruct:materials","Count":2,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":864,"preRequisites":[33],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:ThrowingKnife","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":1,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Ammo":12,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Throwing Knife"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lYour first flint throwing knife","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Is the bone bow too expensive for your taste? Then make a flint throwing knife instead. You need flint and a stick to get 12 knives. The durability and the attack damage are very low but it still helps with killing mobs from a safe distance."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":12,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:flint","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:knifeBlade","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:ThrowingKnife","Count":1,"tag":{"InfiTool":{"BaseDurability":113,"Head":3,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":1,"Attack":3,"RenderHead":3,"ModDurability":0,"Handle":0,"Broken":0,"Shoddy":0,"RenderHandle":0,"Ammo":12,"MiningSpeed":400,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":113},"display":{"Name":"Flint Throwing Knife"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint","Count":10,"Damage":0,"OreDict":""},{"id":"TConstruct:blankPattern","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":865,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_bars","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMonster trap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're lucky you spawned in a sand or rainforest biome and find some quicksand. Collect a stack of the stuff, dig a small ditch and fill it with the quicksand to protect your \"dirt base\" home. Just don't fall in!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mud","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:torch","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":866,"preRequisites":[97,667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All the different mining veins that have been found seem to be really far apart. One way to shorten the travel time is to create a railroad from your base to the different mines. Sadly this requires a large amount of both iron and creosote. Let's not forget to place the last symbolic rivet on one of your new train lines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:rail","Count":512,"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.buffer.stop"},"Damage":32363,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:rail","Count":128,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":60,"Damage":0,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":867,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLapis, Lazurite, Sodalite, Calcite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to make your bricked blast furnace you need to find a lapis vine containing calcite.\nYou can find the vein in the overworld or the Twilight Forest at Y 20-50."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":526,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":524,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":823,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32244,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2934,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":868,"preRequisites":[50],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2934,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§2§3§lGypsum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make bricks for the blast furnace you need concrete and gypsum. Gypsum can be found in a vein together with basaltic and granitic mineral sand, and fullers earth. Y 50-60 and only in the overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":935,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":936,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":928,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":934,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:gingerbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:pumpkinbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2934,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2823,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":869,"preRequisites":[95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSifting Machine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need flawless or exquisite diamonds, emeralds, rubies or other gems? Well then it's time for you to make a Sifting Machine.\n\nYou can find small Zinc ores (look in NEI) or you can search the Nether for Sphalerite.\n\nYou'll need either an Ore Washer or Simple Ore Washer since the Sifter only takes purified ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6535,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":870,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSmelt all the things...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smelting up to nine items at once? With a bit of steel you can make a railcraft Steam Oven. 2x2x2\n\nHint: All furnace recipes work just fine, but you cannot use it to make charcoal from wood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":104,"OreDict":""},{"id":"Railcraft:machine.beta","Count":8,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":8,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":8,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":871,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32307,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lMolds, molds, molds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make steel and have a tinkers smelter you have to make molds. Molds can be used in the alloy smelter and the fluid solidifier. You need them to make vacuum tubes, ingots, gears and more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32302,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32307,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32309,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":872,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:maplesyrupItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Maple Syrup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You spent hours and hours to find some maple trees? Why not use your forest ranger coins to buy some syrup? Add some spruce saplings and plant some maple trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:pammapleSapling","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":873,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:rhubarbseedItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Seed Bags","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finding some special \"pams harvest craft\" seeds can be very difficult. With your farmer coins you can buy some seedbags."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":35,"OreDict":""}]}]},{"questID":874,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.pad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Jetpack v.0.1 Alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you like flying? Ok then, make a slimy bouncepad and enjoy the good view."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:slime.gel","Count":3,"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:slime.channel","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:slime.pad","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:slime.gel","Count":4,"Damage":2,"OreDict":""},{"id":"TConstruct:slime.sapling","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":55,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":875,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSlime Island Journey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rubber trees are not the only source for raw rubber. Go and find a slimy island high in the sky. Slime balls and slime leaves give raw rubber too.\nMake some slime tree farms beside your rubber farm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:CraftedSoil","Count":1,"Damage":5,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:slime.sapling","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:strangeFood","Count":4,"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_sword","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:ladder","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":876,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1169,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBring me my vat of polyethelyne!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of using small cells to process chemicals? Build a Large Chemical Reactor and you can just pipe in and out fluids. Or use the glorious large fluid cells to deliver and remove fluids from the hatches. \n\nBe careful, if the output hatches are full, the reactor will void any extra products!\n\nSome of the old recipes can now be done simply in the LCR, btw.\n\nThe LCR also counts as a cleanroom for any cleanroom recipes.\n\nYou will also need:\n1 Maintenance Hatch\n1 Energy Hatch\n1 Input Bus\n5 Output Bus\n5 Input Hatch\n5 Output Hatch"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1169,"OreDict":""},{"id":"gregtech:gt.blockcasings8","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings8","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32408,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":877,"preRequisites":[879],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood","sceptre":1},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scepter with 75 vis capacity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A scepter is crafted from a wand core, a primal charm, three wand caps, a twilight forest monster mob drop, and some screws. Any sort of core or cap may be used, but the caps must match each other. A scepter cannot hold a focus, but holds 150 percent as much vis as a wand with the same core, and gives an additional 5 percent discount for costs, beyond any discounts from its caps or the user's worn equipment. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LichBone","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood","sceptre":1},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":878,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic Staff Core","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A staff requires an extra step for crafting: Two (matching) wand cores must be combined with a primal charm, and crystal clusters to produce a staff core. (While the recipes are all similar, each type of staff core requires a separate research topic to be learned.) "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":879,"preRequisites":[265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Primal Charm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new 50 vis wand you are able to make a Scepter which holds up to 75 vis.\nFirst you need some primal charms which cost 50 vis to craft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:blockCrystal","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28351,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCrystal","Count":4,"Damage":6,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":880,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":66,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Witch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. What's cooking?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":66,"OreDict":""}]}]},{"questID":881,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":57,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Pigmen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Do you want some bacon?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":57,"OreDict":""}]}]},{"questID":882,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Blaze","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me warm you up a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":61,"OreDict":""}]}]},{"questID":883,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":62,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magma Cube","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely, and bouncy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":62,"OreDict":""}]}]},{"questID":884,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Enderman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Don't look me in the eyes!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":58,"OreDict":""}]}]},{"questID":885,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":59,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Cave Spider","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me sing itsy-bitsy spider for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":59,"OreDict":""}]}]},{"questID":886,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ghast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. At least you're not a big cry-baby?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":2,"Damage":56,"OreDict":""}]}]},{"questID":887,"preRequisites":[878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Wizard's Staff has a Knob on the End","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Join the core with two wand caps, a twilight forest mob drop, and screws just as for making a wand. A staff cannot be used for crafting, but holds 250 percent as much vis as a corresponding wand. It can even serve as a backup weapon for melee. While it cannot receive weapon enchantments, its damage is decent, and it does not take damage with use (no durability bar)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:WandRod","Count":2,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":888,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":60,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Silverfish","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Let me be as annoying as possible."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":3,"Damage":60,"OreDict":""}]}]},{"questID":889,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magma Cube","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You feel lonely. Wanna bounce?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":5,"Damage":56,"OreDict":""}]}]},{"questID":890,"preRequisites":[16],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lBetter Tank... ULV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 32 buckets in a tank. The ULV Tank from Gt++ needs steel plates, iron plates, tin plates, a clay pipe, and a water bucket."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":817,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":30768,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":891,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Tank... LV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 64 buckets in a tank. The LV Tank from Gt++ needs steel plates, iron plates, bronze plates, a huge clay pipe, and an LV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":892,"preRequisites":[891,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Tank... MV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 128 buckets in a tank. The MV Tank from Gt++ needs steel plates, darksteel plates, bronze plates, a bronze pipe and an LV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":819,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":893,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #2 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second item you'll need a lot of in MV tier. When you want to get fluid out of tanks you'll need one. \n\n§4Hint: Goes pretty well with fluid pipes or GT machines, adjust with a screwdriver. It can also be upgraded further into a fluid regulator which allows precise control of fluid transfer speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32611,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":6,"Damage":5134,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":894,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":818,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter Tank... HV Tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 256 buckets in a tank. The HV Tank from Gt++ needs aluminium plates, darksteel plates, vacuum tubes, a steel pipe, and an MV pump."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":820,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":895,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32631,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #1 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first item you'll need a lot of in MV too. If you want to pull items out of chests or barrels you'll need one. \n\n§4Hint: Goes pretty well with item pipes or GT machines, adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32631,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":896,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32641,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #3 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An electric piston for your MV machines. The third item you are going to craft a lot of in the future."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32641,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":897,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #4 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fourth item you'll need a lot of in MV, which is also a pain to craft. Arguably the most painful item ever. \n\n§4Hint: Works like a conveyor but can work with selected item slots. Adjust with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":898,"preRequisites":[890,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":767,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSimple Ore Washer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Too lazy to make an ore washer, yet bored with your non-automatable cauldron? Then the simple washer is the machine for you! It works reasonably fast and uses only 8eu max - make sure you don't provide too much voltage! Ok, so you do not get any byproducts, but who cares!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5133,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":899,"preRequisites":[409],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Paying the highest price","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A tier 2 blood altar needs 8 runes placed around the altar. Your new altar can hold more blood."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:Altar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":900,"preRequisites":[901],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Don't look it in the eyes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bad things may happen if this creature is allowed to stay alive. The ores in its cave are valuable anyway."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Hydra","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":901,"preRequisites":[903],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.meefStroganoff","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"I don't even...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ok so there is this maze. And there are... minotaurs. But what in the world is a minoshroom?"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Minoshroom","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":902,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"A big ugly snake","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Required for your first wand and in general, an ugly creature."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Naga","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":903,"preRequisites":[902],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Adventure time!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stop him before he makes his wish at Prismos'!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Twilight Lich","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":6,"Damage":0,"OreDict":""}]}]},{"questID":904,"preRequisites":[900],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.phantomHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Who you're gonna call?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Phantom Busters! Or wait... Ah whatever. They drop good armor by the way."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Knight Phantom","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":905,"preRequisites":[904],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"The big fluffy crybaby","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It flies, it makes funny sounds, and .. IT'S SO FLUFFY! Well, kill it."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Tower Ghast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":906,"preRequisites":[907],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Let her go","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It seems the cold doesn't bother her. Committed crimes: None. But... you know... you have to progress somehow..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Snow Queen","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":907,"preRequisites":[905],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.alphaFur","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Yeti. Alpha, Yeti.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wanted: Alpha Yeti. Death. Committed crimes: Violently throwing ice at people, for no reason."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TwilightForest.Yeti Boss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":908,"preRequisites":[451],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secret: A nice....","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey, you! I want that lamp. I have something for you in return. You don't need it anyways, do you?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"TwilightForest:item.lampOfCinders","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:cleaver","Count":1,"tag":{"InfiTool":{"RenderExtra":9,"BaseDurability":27,"BaseAttack":6,"ToolEXP":0,"Built":1,"Moss":3,"Effect1":4,"HarvestLevel":0,"ModifierTip1":"Moss","RenderHead":9,"ModDurability":0,"Shoddy":0,"RenderHandle":9,"Accessory":9,"MiningSpeed":100,"Unbreaking":0,"HarvestLevel2":0,"Damage":0,"BonusDurability":0,"TotalDurability":27,"MiningSpeed2":100,"Head":9,"Tooltip1":"Auto-Repair","Attack":6,"Handle":9,"Broken":0,"Extra":9,"RenderAccessory":9,"ToolLevel":1,"Modifiers":20},"display":{"Name":"Paper Cleaver"}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":909,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Creeper)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who hasn't experienced this... You think nothing evil, mine a few diamonds, and suddenly, you wake up in your bed, all your items gone. Time to strike back!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Creeper","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":910,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gold_nugget","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Pigman)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\"Zombie Pigman\"? What the hell is going on with you zombies! Maybe you should encase your animals better at night..."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"PigZombie","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":911,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Spiders)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eeeek! Wall climbing monsters, gross! Slay them. Quickly! Watch out for the witch spiders, they can give as good as they get."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Spider","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":912,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Skeleton)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Arrows are nice, if you shoot them. If one hits you, well, bad things happen. \n\nHint: Arrows are an excellent source of telum."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Skeleton","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":913,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Blaze)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You should be careful with this task. Fire protection is highly recommended."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Blaze","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":914,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Zombie)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody knows who they are, or where they came from. They're just annoying at night, and too stupid to make a crafting table."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Zombie","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":915,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:enderman_head","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Enderman)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Uh, fancy teleport pearls. You need them. All of them. Now!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{"SMData":{"SMWebImmune":0,"SMArrowRefireMin":0,"SMUnderPressure":0,"SMWaterDamage":0,"SMLeash":0,"SMBurningImmune":0,"SMArrowSpread":14,"SMRegenTick":0,"SMFallImmune":0,"SMWaterPushImmune":0,"SMArrowRange":0,"SMArrowMoveSpeed":0,"SMArmor":0,"SMWaterBreath":0,"SMArrowRefireMax":0,"SMTex":["minecraft:textures/entity/enderman/enderman.png","minecraft:textures/entity/enderman/enderman_eyes.png"],"SMScale":0.9321846,"SMFireImmune":0,"SMArrowDamage":2,"SMPotionImmune":[],"SMRegen":0}},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":40,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.30000001192092896,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":7,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"carriedData":0,"PersistenceRequired":0,"HealF":40,"id":"Enderman","carried":0,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":6506027634560194000,"Health":40,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":27476269499968,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Enderman","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":916,"preRequisites":[913,909,914,910,915,912,911,537,985],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Wither)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After collecting a couple of those wither skeleton heads, you feel like you could use some more action. So why not kill a wither? You'll need a ton of nether stars anyway...\n\nKill it twice for something nice."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"WitherBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":3,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":917,"preRequisites":[456],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:heartCanister","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Secret: The trade for life","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You have been busy my friend. I have something for you. Give me your hearts, and I will magically enhance them so you can actually use them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"betterquesting:extra_life","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:heartCanister","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":918,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Skeleton: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to advance to a higher tier and reach Mars, Deimos and Phobos, you need to make yourself a better rocket. There are rumors that an Evolved Skeleton hiding out on the Moon has schematics of such a device."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Moon","range":-1,"index":0,"dimension":28,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":450,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.4000000059604645,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":450,"id":"GalacticraftCore.EvolvedSkeletonBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":3550669721897671700,"Health":450,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":2977706436292,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedSkeletonBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":919,"preRequisites":[918],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Creeper: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not that regular creepers are nasty enough, no. There is an evolved creeper boss! He is your key (Well he HAS a key...) to reach the next tier of planets (Asteroid Belt, Ceres, Io, Europa, Ganymede, Callisto)."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Mars","range":-1,"index":0,"dimension":29,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":-2,"Name":"tc.mobmod"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftMars.CreeperBoss","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-3749161857075506000,"Health":600,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31694812711759,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftMars.CreeperBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":920,"preRequisites":[919],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"inventory":{},"type":4,"leftTank":{"Empty":""},"rightTank":{"Empty":""}}},"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Blaze: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to proceed to Tier 4 Planets, the blaze boss needs to be killed. Find him in one of the dungeons on Ceres."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Ceres","range":-1,"index":0,"dimension":42,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossBlaze","Fuse":30,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-2265408451657568300,"Health":600,"roomCoordsX":0,"Dimension":0,"OnGround":0,"ignited":0,"Air":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24409945973051,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"ExplosionRadius":3,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossBlaze","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":921,"preRequisites":[920],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:misc","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Ghast: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fluffy, fluffier, ghasts! And also big crybabies. This one hides in a dungeon on IO, and holds the key for Tier 5 planets."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"IO","range":-1,"index":0,"dimension":36,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Attributes":[{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"roomCoordsY":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossGhast","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-1940216915570942500,"Health":600,"roomCoordsX":0,"Air":0,"OnGround":0,"Dimension":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31541628372871,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossGhast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":922,"preRequisites":[921],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Crystal Boss: Ayyy.. Wait, what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Seriously, a crystal boss? Anyway, it's your key to Tier 6 planets, and he lurks around on Enceladus."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Enceladus","range":-1,"index":0,"dimension":41,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"SkeletonType":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"roomCoordsY":0,"carriedData":0,"roomCoordsZ":0,"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedCrystalBoss","Fuse":30,"carried":0,"ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-6796800124609087000,"Health":600,"roomCoordsX":0,"Dimension":0,"OnGround":0,"ignited":0,"Air":0,"roomSizeZ":0,"Rotation":[0,0],"roomSizeY":0,"roomSizeX":0,"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24491145111402,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"ExplosionRadius":3,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedCrystalBoss","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":923,"preRequisites":[922],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Slime: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Totally looks like a thaumic slime to me. Don't you think so? Find this dude on Proteus."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Proteus","range":-1,"index":0,"dimension":47,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"Size":0,"Attributes":[{"Base":600,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.05000000074505806,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0,0,0,0,0],"PersistenceRequired":0,"HealF":600,"id":"GalacticraftCore.EvolvedBossSlime","Motion":[0,0,0],"Leashed":0,"UUIDLeast":7447897214129004000,"Health":600,"Air":0,"OnGround":0,"Dimension":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":""},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":31487744687521,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":5,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":924,"preRequisites":[923],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Wolf:Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final frontier... A... wolf that is not even an Iron Maiden fan?... What did you expect, a super boss? Heh. No. Budget was too tight..."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Pluto","range":-1,"index":0,"dimension":49,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":350,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":4,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":5,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":350,"id":"GalacticraftCore.EvolvedBossWolf","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-514555328123248260,"Health":350,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":24669862148609,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"GalacticraftCore.EvolvedBossWolf","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":925,"preRequisites":[924,908,916,906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeCore","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Technology: Evolved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You beat the game, literally. There is nothing left to do, you might want to try real life... But one thing might be interesting for you. You know, just for the phuns. Select one of the totally OP items here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorIII","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:BlockJarNodeItem","Count":1,"tag":{"nodetype":0,"display":{"Lore":["This! Is OP"]},"Aspects":[{"amount":1000,"key":"instrumentum"}],"nodemod":0,"nodeid":"0:-312:64:54"},"Damage":0,"OreDict":""},{"id":"TConstruct:creativeModifier","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":900100,"terra":900100,"ignis":900100,"cap":"orichalcum","rod":"neutronium","ordo":900100,"perditio":900100,"aer":900100},"Damage":2000,"OreDict":""},{"id":"ProjRed|Fabrication:projectred.fabrication.icchip","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":926,"preRequisites":[410,422],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyThaumium","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your altar more powerful you need to upgrade it. You need to build pillars two block high out of blood-soaked thaumium block and on top one block of glowstone blocks on each pillar."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCosmeticSolid","Count":8,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:glowstone","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyThaumium","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":927,"preRequisites":[421,430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyVoid","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make tier 4 slates you need a Tier 4 altar. This can be made like the tier 3 altar with pillars out of void-blood-soaked stones four blocks high and a blood brick on top of the pillars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:ritualStone","Count":4,"Damage":0,"OreDict":""},{"id":"AWWayofTime:weakBloodShard","Count":1,"Damage":0,"OreDict":""},{"id":"thaumicbases:voidBlock","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AWWayofTime:largeBloodStoneBrick","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyVoid","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:speedRune","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":928,"preRequisites":[704],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make tier 5 slates you need a Tier 5 altar. This can be made with 4 beacons. Beacons have thaumcraft recipes and can be found in the thaumcraft book on the GTNH page."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":929,"preRequisites":[703,702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:tile.BloodyIchorium","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blood Altar Tier 6","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The highest tier of the blood altar is tier 6. You need pillars of blood-soaked ichorium 7 blocks high and on top the crystal cluster blocks made out of demon soul shards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:kamiResource","Count":56,"Damage":2,"OreDict":"ingotIchorium"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal8","Count":28,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"AWWayofTime:blockCrystal","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.BloodyIchorium","Count":28,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:AlchemicalWizardrybloodRune","Count":8,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":930,"preRequisites":[530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":679,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAuto Mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A miner in LV age? Wow! This nifty machine will find ores for you. Place up to two stacks of mining pipes in the right slots. This machine needs 8 EU/t to work. The miner searches for ores in a 17x17 block work area. Now comes with 2 fortune bonus! Great for gathering additional small ores...\n\nDon't forget to cover it up! These are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":679,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":931,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":680,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAuto Mining MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV miner will find ores for you faster than the LV miner. Place up to two stacks of mining pipes in the right slots. This miner need 32 eu to work. The Miner searches ores in a 33x33 block area and works two times faster than the LV variant. Comes with 4 fortune bonus, great for gathering small ores in the Nether.\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":680,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":932,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAuto Mining HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV miner will find ores for you faster than the MV miner. Place up to two stacks of mining pipes in the right slots. This miner needs 128 eu to work. The Miner searches ores in a 49x49 block area (three chunks wide, perfect for a chunkloader) and works two times faster than the MV variant. It also has a 6 fortune bonus, making it even better for small ores. Recommend taking some with you to the Moon to gather meteoric iron."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":933,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now its time to invest in some renewable energy. Let's start with solar panels. The basic one only gives 1 EU/t. Most GT machines can use them as covers. Be sure to put a glass layer above them in case it rains while you swap panels. You will still want to keep rain off the sides of the machine hull too.\n\n§4The Aluminium Iron plate needs an MV Forming Press."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"IC2:blockAlloyGlass","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"IC2:itemPartCarbonPlate","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.AluminiumIronPlate","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":2000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":934,"preRequisites":[933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun 8V","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the ULV one. It generates 8 EU/t. Most gt machines can use them as covers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32750,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17980,"OreDict":""},{"id":"dreamcraft:item.ReinforcedAluminiumIronPlate","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":935,"preRequisites":[933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of the Sun 1x1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those single eu panels on a block to make them placeable in the world. Use an MV assembler to combine the panel with a ULV hull."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32750,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32033,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":936,"preRequisites":[934,206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun at LV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the LV one. It generates 32 EU/t max. Most gt machines can use them as covers. First you need to produce a sunnarium item by using 10 million eu power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32751,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17473,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"dreamcraft:item.IrradiantReinforcedAluminiumPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2320,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"IC2:itemPartIndustrialDiamond","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":937,"preRequisites":[936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun 1x1 LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 32 EU panels on a block to make them placeable in the world. Use an MV assembler to combine the panel with an LV hull, a battery, and a robot arm. Now this panel will clean itself!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32518,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32650,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":938,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTreetapElectric","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomated Sticky Resin Farmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are tired of crafting tons of tree taps, how about a machine that uses power but never breaks? Let's craft an electric tree tap!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemTreetap","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemTreetapElectric","Count":1,"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":100000},"Damage":32518,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":939,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemToolHoe","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomated Farmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your hoe must be getting worn out by now. Why not craft an electric one which never breaks?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":4306,"OreDict":""},{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemToolHoe","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":940,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1172,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCleanroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to make more advanced circuits you'll need a cleanroom. The cleanroom is a multiblock between 3x4x3 and 15x15x15 (WxHxD) blocks. Besides plascrete blocks for all edges you'll need a controller in the top center, filter machine casings for the rest of the top except edges, an energy and maintenance hatch , a reinforced door and three machine hulls. For now you can use MV tier.\n\nLet's build a 5x5x5 room. Expanding it vertically is easy to do, or you can make it wider and longer, as long as both X and Z match and are odd. Up to 5% of the plascrete blocks can be replaced with Reinforced Glass to see into the cleanroom and check on machines.\n\nYou can pass materials through the walls using Machine Hulls. You can pass 1A of power using Machine Hulls as well, or you can use Diodes to pass multiple amps through walls.\n\nJust be really careful when upgrading you machines. Be sure to remove the machine hulls and diodes and replace them with the new power tier, or else you will be very sad.\n\nIf the Cleanroom has maintenance issues, it will have a chance to void recipes needing a cleanroom. Monitor your cleanroom with a Hand Scanner, Industrial Information Panel, or using a Needs Maintenance Cover and a Redstone Powered Light or Howler Alarm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone_pressure_plate","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemDoorAlloy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":3,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockreinforced","Count":82,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":8,"Damage":11,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1172,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":941,"preRequisites":[77,1477,1478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32762,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lA very useful Scanner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The portable scanner is a tool capable of showing advanced information about almost every block in the game. \nIn order to function, the tool needs to be charged first. It can hold up to 400k EU and accept 128 EU/t or less. This is MV tier.\n\nIt can scan crops, which shows more information than the cropnalyzer does. The crop, which was scanned in the world, will drop a scanned seed bag.\nIt can scan machines from GregTech, giving information about current progress, the stored energy, efficiency, problems and CPU-load - be sure to check the full chat window for additional details.\nFor any block in the game it scans, it gives information about its ID, Metadata, position in the world and hardness value.\nIt also gives information about pollution level in the chunk the scanned block belongs to.\nIn addition it shows when the cleanroom has reached its 100 percent efficieny level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32762,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32764,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":942,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":16384000,"SecondaryMaterial":"Neutronium"}},"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lIt's a dirty job, and you're going to do it","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Plunger is used to clear liquids from pipes. It can also be used on a machine to remove up to 1000mb of fluid from its internal buffer. You don't have to wrench your machine and replace it. It can be crafted from a rod of the desired material and rubber sheets. \n\n§4Hint: Plunger deals 2.75 - 7.75 damage depending on the materials used."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":44,"OreDict":"craftingToolPlunger"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:oldworldveggiesoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":943,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":423,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPerforming chemical experiments at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High tier chemical recipes like ammonia need an HV chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":423,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5683,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":944,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSuper Tank I","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to store 4000 buckets in a tank. The super tank I needs a hermetic casing made with aluminium plates and PTFE pipe. The tank need 4 circuits, a pulsating iron plate and an MV pump. Now you can store the same amount of fluids a steel 5x5 Railcraft tank contains in a single block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings6","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":945,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2879,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lChad - A better way to make Paper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making paper out of wood pulp and water can be tedious and difficult. Why not macerate some sugar cane down to chads and press it with two stone plates to paper? Later on you can use the chemical bath for a even better ratio."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":24,"OreDict":"craftingToolMortar"},{"id":"minecraft:reeds","Count":45,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:stone_slab","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":2,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":2879,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:paper","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"minecraft:stone_slab","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":946,"preRequisites":[3],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:planks","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBamboo fence","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are lucky and start off in a bamboo forest.\nBamboo is a very useful tree since it grows really fast and when you place bamboo sticks they will grow and protect your base behind a 3 block tall wall.\nAlternatively, you can also use Berry Bushes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:bamboo","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"BiomesOPlenty:saplings","Count":20,"Damage":2,"OreDict":""},{"id":"TConstruct:trap.punji","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":947,"preRequisites":[43],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:trap.punji","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lPunji Sticks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A early game protection moat can be made out of punji sticks. It hurts all mobs/players and additionally gives a slowness II potion effect. Make a trench around your base and put the punji sticks inside."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":20,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":20,"Damage":0,"OreDict":""},{"id":"minecraft:reeds","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TConstruct:trap.punji","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiomesOPlenty:saplings","Count":10,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":948,"preRequisites":[37,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11304,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBetter than iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wrought Iron will become more important very soon when you have a bit of steel and are able to build high pressure steam machines. The material is much harder than iron, and you can make better tools with it too.\nTo make wrought iron, you need a tinkers smelter to melt some iron ingots down and cast nuggets; put these in a furnace to get wrought iron nuggets. With the compressor, you can compress the nuggets into ingots.\n\n§§§4§4§9§4Hint:\nCrushed or purified iron ore (not an impure version, look for Chalcopyrite veins) can be smelted to iron nuggets directly. Or you can use an alloy smelter to turn iron ingots into nuggets faster than a smeltery.\n\nLater on, you can use an arc furnace to make wrought iron ingots directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":9032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":9304,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":11304,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"WroughtIron","MaxDamage":38400,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"WroughtIron","MaxDamage":38400,"SecondaryMaterial":"WroughtIron"}},"Damage":16,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":949,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:stalkgarden","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Garden Bags","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finding some special \"Pam's HarvestCraft\" gardens can be very difficult. With your farmer coins you can buy some garden bags."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":36,"OreDict":""}]}]},{"questID":950,"preRequisites":[89],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":3456000,"globalShare":1,"questLogic":"AND","name":"XP berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few xp berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmerI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":5,"OreDict":""}]}]},{"questID":951,"preRequisites":[893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":522,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFluid Solidifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use molds to make plates, sticks, bolts and many more item parts in the fluid solidifier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":522,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5132,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":952,"preRequisites":[951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lBase too big? I've got a fix for you!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Keeping a base spread apart for pollution or explosion prevention can really wear you out. Try harvesting some Marble and centrifuging it into Calcite, and mix up some concrete in your Mixer. Next output it into a Fluid Solidifier with a block mold to make concrete blocks. You'll move faster on top of these blocks. They can even be turned into bricks to prevent unwanted spawns! Hint: 10 buckets of wet mix converts to exactly 160 blocks. These blocks can also be Chiseled into different varieties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":24,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":2845,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":2823,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2939,"OreDict":"dustQuartzSand"},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2299,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2805,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockconcretes","Count":160,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":953,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5143,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stainless steel pipes are much better than steel pipes. Like all high tier pipes (Titanium, Tungstensteel etc) you need a better wrench to deconstruct the pipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5143,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":954,"preRequisites":[75,143],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockReservoir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThe \"Water Problems\" are solved","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Entering the HV age you found a way of making a water reservoir which solves the finite water problem. Craft it with some fused quartz glass, HV pumps, and cauldrons."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockFusedQuartz","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32612,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:cauldron","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:blockReservoir","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":5142,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":955,"preRequisites":[49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Piston","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some pistons? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:sticky_piston","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":956,"preRequisites":[103,95],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5122,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Bronze Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bronze fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5122,"OreDict":""}]}]},{"questID":957,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23354,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Magnetic Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic iron for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23354,"OreDict":""}]}]},{"questID":958,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21057,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tin Rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some tin rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21057,"OreDict":""}]}]},{"questID":959,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Iron Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some iron rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23032,"OreDict":""}]}]},{"questID":960,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Brass Rod","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some brass rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23301,"OreDict":""}]}]},{"questID":961,"preRequisites":[103,530],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8516,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Certus Quartz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some certus quartz? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":8516,"OreDict":""}]}]},{"questID":962,"preRequisites":[98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:vacuumhopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lVroooooom...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of standing around to collect all the drops and XP from your diamond spikes?\n\nMake yourself a vacuum hopper to suck up all the drops and XP. Feed the XP into a tank to store it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:vacuumhopper","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":963,"preRequisites":[834],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Basic Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some basic circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32100,"OreDict":""}]}]},{"questID":964,"preRequisites":[748],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Good Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some good circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32101,"OreDict":""}]}]},{"questID":965,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32700,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Vacuum Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some vacuum tubes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32700,"OreDict":""}]}]},{"questID":966,"preRequisites":[835],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32716,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Resistors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some resistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32716,"OreDict":""}]}]},{"questID":967,"preRequisites":[747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Diodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some diodes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32715,"OreDict":""}]}]},{"questID":968,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32033,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Wafers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""}]}]},{"questID":969,"preRequisites":[785],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32717,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Transistors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some transistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32717,"OreDict":""}]}]},{"questID":970,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ram Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ram wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""}]}]},{"questID":971,"preRequisites":[794],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32037,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Integrated Logic Circuit Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some integrated logic circuit wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32037,"OreDict":""}]}]},{"questID":972,"preRequisites":[546,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30707,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some oil? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30707,"OreDict":""}]}]},{"questID":973,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:fluid.creosote.cell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Creosote Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some creosote oil? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30712,"OreDict":""}]}]},{"questID":974,"preRequisites":[641,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30739,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Naphtha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some naphtha? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30739,"OreDict":""}]}]},{"questID":975,"preRequisites":[644,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30715,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Methane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some methane? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30715,"OreDict":""}]}]},{"questID":976,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Ethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ethanol? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30706,"OreDict":""}]}]},{"questID":977,"preRequisites":[846,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Oxygen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some oxygen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30013,"OreDict":""}]}]},{"questID":978,"preRequisites":[555,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30012,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Nitrogen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some nitrogen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30012,"OreDict":""}]}]},{"questID":979,"preRequisites":[550,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Hydrogen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some hydrogen? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30001,"OreDict":""}]}]},{"questID":980,"preRequisites":[745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30726,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Glue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some glue? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30726,"OreDict":""}]}]},{"questID":981,"preRequisites":[1084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Lubricant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some lubricant? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30724,"OreDict":""}]}]},{"questID":982,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30720,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Sulfuric Acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What some sulfuric acid? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30720,"OreDict":""}]}]},{"questID":983,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Engineering processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some engineering processors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":24,"OreDict":""}]}]},{"questID":984,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Silverwood Sapling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silverwood saplings are always rare to find. Want some? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":8,"Damage":1,"OreDict":""}]}]},{"questID":985,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Ghast)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"They shoot you with explosive fireballs but they are weak when you hit them or knock the fireballs back with a weapon. Better upgrade your armor with fire and blast protection.\n\nSorry about the giant ghast Amancila, it can't be changed. \n\nYou'll need to kill 10."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"Ghast","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":986,"preRequisites":[943,602],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal_frame","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Is this the End? No the END Dimension","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your investigation into the pearls has shown you that the source of the disturbance seems to be coming out of the shimmering portals inside strongholds. You feel strangely drawn into its mysterious depths.\n\nHint: throwing Ender Eyes in the air in the Overworld will guide you to the nearest stronghold . From time to time Ender Eyes are destroyed in this process, so make extras."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_pearl","Count":12,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"END","range":-1,"index":2,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"BiomesOPlenty:helmetAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":78}],"RepairCost":2,"display":{"Name":"Dream Masters Helmet"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:chestplateAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":34}],"RepairCost":2,"display":{"Name":"Dream Masters Chestplate"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:leggingsAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":3},{"lvl":5,"id":4},{"lvl":5,"id":34}],"RepairCost":2,"display":{"Name":"Dream Masters Leggings"}},"Damage":0,"OreDict":""},{"id":"BiomesOPlenty:bootsAmethyst","Count":1,"tag":{"ench":[{"lvl":5,"id":0},{"lvl":5,"id":1},{"lvl":5,"id":2},{"lvl":5,"id":3},{"lvl":5,"id":4}],"RepairCost":2,"display":{"Name":"Dream Masters Boots"}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":987,"preRequisites":[604,990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"ACTIVATED","storedEnergyRF":5000000},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUpgraded RF Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Capacitor Banks are upgraded RF batteries which can store the RF power you generate. You can put many blocks together to enlarge your total battery capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":2,"tag":{"type":"ACTIVATED","storedEnergyRF":0},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":988,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":25000000},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lBigger, Better, Chargier?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Vibrant Capacitor Bank is the largest RF Battery for now. It can store 25 million RF in a single block. Putting many capacitor banks together will enlarge your total battery capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":989,"preRequisites":[160,81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11367,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lVibrant alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vibrant alloy is a high tier EnderIO alloy made out of ender eye, energetic alloy and chrome dust. 3600k heating coils and a vacuum freezer are needed to make ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11367,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":990,"preRequisites":[78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11366,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnergetic Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic alloy is a new alloy from EnderIO made out of gold, conductive iron and black steel dust. Double-layer capacitors need it and it can be made in the electric blast furnace with tier 2 coils (2700K)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11366,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":991,"preRequisites":[141,139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dark Steel Armor basic upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to upgrade one armor item with basic upgrades, you need a vibrant crystal and 10 xp levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:waterlily","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:craftingMaterial","Count":36,"Damage":2,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8194,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":992,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"NA":0,"Health":30,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Go find some tropical bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next you will need to find some tropical bees. The hives can be found in Jungle biomes. Be careful as these bees are very aggressive and can poison you. Collect the silky combs and extract some silk wisp from those in order to make some Apiarist's clothes.\nLooking for pristine Bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesTropical","UID0":"forestry.speciesTropical"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beeCombs","Count":8,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":993,"preRequisites":[992,539,994],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeCombs","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Silky combs and Propolis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Collect silky combs and extract some silk wisp out of it in order to make some Apiarist's clothes.\nThis can take quite a bit of time.\nUse a GregTech or Forestry Centrifuge to get Silky Propolis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":370,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:propolis","Count":305,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":25,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":994,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Forestry Centrifuge is able to centrifuge up to 9 items out of bee combs. It uses RF energy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17310,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32600,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20305,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11034,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:waxCapsule","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBees","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":995,"preRequisites":[539,994,993],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:craftingMaterial","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Woven silk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Centrifuge your silky propolis to get some silk wisp at a chance of 60 percent. Put 9 silk wisp in the Forestry carpenter or Gregtech assembler to get woven silk. \nThis fine fabric can be used for crafting Apiarist's Clothes or to upgrade your Forestry Backpacks to 45 slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":216,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":24,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":25,"OreDict":""},{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":996,"preRequisites":[578,995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Apiarist's Cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have collected 24 woven silk you can make a complete Apiarist's suit to be protected from bee stings and other bad bee effects. You can also use the suit parts to upgrade your EnderIO Dark Steel Armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":24,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristChest","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristLegs","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":997,"preRequisites":[991],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"id":5635,"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.glide":{"upgradeItem":{"id":5654,"Count":1,"Damage":1},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.glider"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"id":4910,"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.chestplate","slot":1}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dark Steel Armor advanced upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your Dark Steel armor can be upgraded in various ways by combining it with various other items. You will need an anvil and a lot of XP.\n\nMake sure when making the potions to only do three at a time, so the NBT data matches."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apiaristHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristChest","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristLegs","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:apiaristBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":3,"Damage":8194,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:waterlily","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"EnderIO:itemGliderWing","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:noteblock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":7,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_helmet","Count":1,"tag":{"enderio.darksteel.upgrade.soundDetector":{"upgradeItem":{"id":25,"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.sound"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.naturalistEye":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.naturalistEye"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.helmet","slot":0},"enderio.darksteel.upgrade.nightVision":{"upgradeItem":{"Count":1,"Damage":8198},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.nightVision"},"enderio.darksteel.upgrade.gogglesRevealing":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.gogglesOfRevealing"},"enderio.darksteel.upgrade.speedBoost":{"level":2,"upgradeItem":{"Count":1,"Damage":1},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.solar_two"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_chestplate","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.glide":{"upgradeItem":{"Count":1,"Damage":1},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.glider"},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.chestplate","slot":1}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_leggings","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.leggings","slot":2},"enderio.darksteel.upgrade.speedBoost":{"level":3,"multiplier":0,"upgradeItem":{"Count":1,"Damage":8194},"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.speed_three"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_boots","Count":1,"tag":{"enderio.darksteel.upgrade.swim":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.swim"},"enderio.darksteel.upgrade.jumpBoost":{"level":3,"upgradeItem":{"Count":1,"Damage":0},"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.jump_three"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.apiaristArmor":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.apiaristArmor.boots","slot":3}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:blockSolarPanel","Count":2,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":2,"OreDict":""},{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":8262,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":8258,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":998,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDark Steel Tool and Weapon basic upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to upgrade a weapon or tool, you need a vibrant crystal and 10 xp levels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemMaterial","Count":2,"Damage":8,"OreDict":""},{"id":"minecraft:diamond_shovel","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":999,"preRequisites":[998],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":6},"maxOuput":1000,"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.empowered_one","maxInput":1000,"capacity":100000,"energy":100000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDark Steel Tool and Weapon advanced upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your weapons and tools can be upgraded even more by adding capacitors and various other items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":0,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":1,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:itemMaterial","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:diamond_shovel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EnderIO:item.darkSteel_sword","Count":1,"tag":{"enderio.darksteel.upgrade.travel":{"upgradeItem":{"Count":1,"Damage":8},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.travel"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_pickaxe","Count":1,"tag":{"enderio.darksteel.upgrade.travel":{"upgradeItem":{"Count":1,"Damage":8},"level_cost":30,"unlocalized_name":"enderio.darksteel.upgrade.travel"},"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000},"enderio.darksteel.upgrade.spoon":{"upgradeItem":{"Count":1,"Damage":0},"level_cost":10,"unlocalized_name":"enderio.darksteel.upgrade.spoon"}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_axe","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""},{"id":"EnderIO:item.darkSteel_shears","Count":1,"tag":{"enderio.darksteel.upgrade.energyUpgrade":{"upgradeItem":{"Count":1,"Damage":2},"maxOuput":10000,"level_cost":20,"unlocalized_name":"enderio.darksteel.upgrade.empowered_four","maxInput":10000,"capacity":1000000,"energy":1000000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EnderIO:itemBasicCapacitor","Count":8,"Damage":2,"OreDict":""},{"id":"EnderIO:blockCapBank","Count":1,"tag":{"type":"VIBRANT","storedEnergyRF":0},"Damage":3,"OreDict":""},{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1000,"preRequisites":[989,933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRF Solar Panel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is possible to power RF machines with a solar panel. It outputs 10 RF/t. Perfect for low use RF machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1001,"preRequisites":[1000],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRF Solar Panel Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The upgraded RF solar panel is much better. It outputs 40 RF/t."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:itemBasicCapacitor","Count":16,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1002,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:magicbees.enchantedEarth","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanted Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted Earth makes saplings and seeds planted on it grow faster. When stacked on top of each other it has a chance to add ticks to the block above accumulating all the way to the top. This will randomly speed up growth a bit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:magicbees.enchantedEarth","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1003,"preRequisites":[936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§aPower of the Sun at MV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the MV one. It gives 128 EU/t max. Most GT machines can use them as covers. First you need to produce sunnarium out of 9 smaller sunnarium pieces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17341,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32752,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17470,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"dreamcraft:item.IrradiantReinforcedTitaniumPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2340,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1004,"preRequisites":[1003],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPower of the Sun 1x1 MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 128 EU panels on a block to make them placeable in the world. Use an HV assembler to combine the panel with an MV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32651,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1005,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2056,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lIndium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"At EV Level you are able to make Indium for HV Solar Panels. Indium cannot be found in Ore form. It can only be made with an EV chemical reactor.\nFirst you need to make indium out of purified galena and sphalerite ore. Mix in some aluminium to get indium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":6839,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":27,"Damage":6830,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2056,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1006,"preRequisites":[1003,1005,861,1890],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun at HV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the HV one. It generates 512 EU/t max. Most GregTech machines can use them as covers. First you need to produce enriched sunnarium by mixing irradiated uranium and sunnarium. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17339,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32753,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32065,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17981,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32705,"OreDict":"circuitElite"},{"id":"dreamcraft:item.IrradiantReinforcedTungstenPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1007,"preRequisites":[1006],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun 1x1 HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 512 EU panels on a block to make them placeable in the world. Use an EV assembler to combine the panel with an HV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32538,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1008,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBooks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Books can be found easily enough in villages or in the roguelike dungeons surface brick house.\nI'm sure they have a recipe too.\n\nNow glue on the other hand...or should I say horse? Try and get a horse inside a smeltery and feed it hay to keep it alive.\n\nOr you can wait until after you go to the Nether and get some sulfur. Either way. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:book","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemDust","Count":32,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32234,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1009,"preRequisites":[633,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fish trapping 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fishing can be very boring. Why not automate it with a fish trap?\nThis is your fish trap 2.0"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":5132,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":4,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1010,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:freshmilkItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fresh Water and Milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many cooking recipes need milk and water. Crafting it in the crafting table can be very tedious.\nIt is much easier using a Forestry worktable. Drag-click all your buckets into the worktable, and craft them all at once."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:freshwaterItem","Count":64,"Damage":0,"OreDict":""},{"id":"harvestcraft:freshmilkItem","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2817,"OreDict":""},{"id":"harvestcraft:flourItem","Count":16,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1011,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":822,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Bauxite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main goal when you reach the Moon is to find some bauxite ore to make titanium for the EV machine tier. Some meteoric iron is required for your tier 2 rocket for reaching Mars so be sure to collect a stack from fallen meteors and small ores beneath the surface."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":822,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":19,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":918,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1012,"preRequisites":[1011],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2375,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRutile","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rutile can be thermal centrifuged out of bauxite and ilmenite dust. \nElectrolyzing bauxite can extract even more rutile and putting ilmenite in the electric blast furnace can give some rutile too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":383,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2375,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2010,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30376,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2018,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1013,"preRequisites":[1015,2295],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32011,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lSMD Circuit components","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Surface-mount devices are more advanced circuits parts. They are needed for high tier circuits and are cheaper to craft than basic capacitors, transitors, diodes and resistors. You need an Advanced Assembler and some molten polyethylene.\n\nBe sure to check how much gallium you have available. It might not be worth it to use SMD diodes and resistors until you have a steady supply with an HV macerator, bees, or bauxite ore. Also look into IC2 crops to 4x your zinc, sphalerite, and bauxite.\n\n§4The easiest way to get Platinum is with Nickel ore and a chemical bath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32020,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1014,"preRequisites":[1017],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lWorkstation Extreme Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier of circuits are the extreme circuits. Workstation Circuits are the easiest one and are needed in EV Tier. Let's craft some.\n\nIn addition, you will need 16 Diodes, SMD or non-SMD."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32703,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":26085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32704,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1015,"preRequisites":[1021,1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lEmpty Plastic Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Plastic circuit boards require plastic Plate with Sulfuric Acid to make an Empty Board. By adding copper foil and Iron(III) Chloride or Sodium Persulfate you can craft a plastic circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":29035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32007,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1016,"preRequisites":[1013,1221,1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lIntegrated Processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are three variants of good circuits. The good electronic circuit, the good integrated circuit and the integrated processor which needs an MV circuit assembling machine. The integrated processor requires a CPU, capacitors, transistors and resistors.\nA cleanroom is needed.\n\nYou will need in addtion 4 Resistors, 4 Capacitors and 4 Transistors. You can use SMD or non SMD versions."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1017,"preRequisites":[1013,1019],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32703,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lProcessor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another variant of the advanced circuit from IC2 is the processor assembly.\nTwo Integrated Processors are needed in the MV circuit assembler recipe.\nThe recipe is a cleanroom recipe.\n\nIn addition you will need 8 Capacitors, SMD or non-SMD is fine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32080,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19308,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32703,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1018,"preRequisites":[1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lCentral Processing Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Integrated Processors need central processing units. You can get these by cutting a ram wafer.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32044,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24545,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1019,"preRequisites":[1016],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32014,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSmall Coil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Processing assembly needs some small coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":19345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":28613,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19345,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1020,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"iron3chloride","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lIron (III) Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron(III) Chloride can be made by first making hydrochloric acid out of hydrogen and chlorine. Then combine this with some iron dust to make Iron(III) Chloride.\nYou can etch your board with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30683,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30693,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.integrated_circuit","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1021,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30718,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§r§6§k§r§6§lSodium Persulfate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium Persulfate can be made in the electrolyzer out of sodium bisulfate dust.\nSodium bisulfate is made out of sulfuric acid and salt in the chemical reactor.\nYou can etch your board with it.\nSave the hydrochloric acid for your future epoxid production."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2817,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2630,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30718,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemFluidCell","Count":8,"tag":{"Fluid":{"FluidName":"iron3chloride","Amount":1000}},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1022,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23355,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Magnetic Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic steel for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23355,"OreDict":""}]}]},{"questID":1023,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Alu Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some alu rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23019,"OreDict":""}]}]},{"questID":1024,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21300,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Bronze Rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bronze rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21300,"OreDict":""}]}]},{"questID":1025,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5132,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Steel Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5132,"OreDict":""}]}]},{"questID":1026,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":23303,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Electrum Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some electrum rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23303,"OreDict":""}]}]},{"questID":1027,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Flawless Emerald","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some flawless emeralds? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":29501,"OreDict":""}]}]},{"questID":1028,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ender Pearl","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ender pearls? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1029,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23356,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Magnetic Neodymium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some magnetic neodymium for motors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23356,"OreDict":""}]}]},{"questID":1030,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23306,"OreDict":""}]}]},{"questID":1031,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Steel rotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel rotors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21305,"OreDict":""}]}]},{"questID":1032,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5142,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Fluid Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel fluid pipes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5142,"OreDict":""}]}]},{"questID":1033,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23030,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Chrome Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some chrome rods? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":23030,"OreDict":""}]}]},{"questID":1034,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Ender Eyes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ender eyes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_eye","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1035,"preRequisites":[98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:xpshower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBe sure to get your armpits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to use all that delicious XP to raise your levels? Move the tank with XP above you and attach this convenient shower head to take the XP from the tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:xpshower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1036,"preRequisites":[1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Plastic Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some plastic circuit boards? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}]}]},{"questID":1037,"preRequisites":[1016],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Central Procesing Unit Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some central processing unit wafers? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32045,"OreDict":""}]}]},{"questID":1038,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32011,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Resistors SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD resistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32011,"OreDict":""}]}]},{"questID":1039,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32016,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Diodes SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD diodes? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32016,"OreDict":""}]}]},{"questID":1040,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32018,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Transistors SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD transistors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32018,"OreDict":""}]}]},{"questID":1041,"preRequisites":[1013],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32020,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Capacitor SMD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some SMD capacitors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32020,"OreDict":""}]}]},{"questID":1042,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Logic processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some logic processors? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":22,"OreDict":""}]}]},{"questID":1043,"preRequisites":[1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Chlorine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some chlorine? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30023,"OreDict":""}]}]},{"questID":1044,"preRequisites":[1020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30693,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Iron (III) Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some iron 3 chloride? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30693,"OreDict":""}]}]},{"questID":1045,"preRequisites":[1021],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30629,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Sodium Persulfate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some sodium persulfate? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30718,"OreDict":""}]}]},{"questID":1046,"preRequisites":[586],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":607,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Pyrochlore Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can't find Pyrochlore ore because of an old worldgen? Buy some Ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":607,"OreDict":""}]}]},{"questID":1047,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Forest Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Forest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1048,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Deep Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Attuned Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1049,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ender Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Ender Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1050,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Bees House","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some bee houses? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1051,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apiculture","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":96000,"globalShare":1,"questLogic":"AND","name":"Apiary","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Apiaries? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1052,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Impregnated Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some impregnated frames? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1053,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Infernal Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Infernal Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1054,"preRequisites":[986],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Oblivion Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Oblivion Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1055,"preRequisites":[260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.paper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Did you want to know your warp level?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a few forbidden researches your warp level has increased a bit. Do you want to know how much warp you have?\nCraft some litmus paper to print out the warp level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.paper","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":8,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1056,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Meadow Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Meadows Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1057,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Modest Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Modest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1058,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tropical Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Forest Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1059,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Wintry Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Wintry Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":6,"OreDict":""}]}]},{"questID":1060,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Marshy Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Marshy Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beehives","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1061,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Water Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Water Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1062,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rocky Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Rocky Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1063,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hive","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Nether Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Embittered Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hive","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1064,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Curious Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Mystical Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1065,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Unusual Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Unusual Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1066,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:hive","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Resonating Hive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Sorcerous Bees? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBees","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:hive","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1067,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Space Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Here's an idea for your space station.\nYou can add up to four spin thrusters to your station to rotate it.\n\nDays on space stations last longer than on the overworld, so you can generate more solar power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":24,"Damage":0,"OreDict":"ingotIron"},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11057,"OreDict":"ingotTin"},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":"ingotAluminium"},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.standardWrench","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.spinThruster","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1068,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":2,"id":212}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are you prepared?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you prepared for the Moon?\nA few things will help you to live longer and prevent you from dying on the Moon.\nIf you die on the moon you will be returned to earth without your stuff. A Soulbind enchantment will keep an item with you when you die.\nGraves are placed at the location where you died."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockEnchanter","Count":1,"Damage":0,"OreDict":""},{"id":"EnderIO:itemMaterial","Count":1,"Damage":8,"OreDict":""},{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":8}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:book","Count":1,"tag":{"ench":[{"lvl":2,"id":212}]},"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":16,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1069,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Oak, Spruce, Birch, Jungle Sapling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You spawned in a desert and need Oak or Birch saplings? No problem! For five Forestry Coins you can select which one you want to buy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:sapling","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":1,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":2,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":3,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":4,"OreDict":""},{"id":"minecraft:sapling","Count":5,"Damage":5,"OreDict":""}]}]},{"questID":1070,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Magic Feather","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's craft some magical Map focuses to create a magical map which will help you find Twilight Monster Bosses.\nGo find some Raven feathers. You can get them by killing Ravens sitting on Obsidian Blocks in Twilight. Then you need some Torchberries and some Glowstone dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.tfFeather","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.torchberries","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1071,"preRequisites":[1070],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.emptyMagicMap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Magic Map","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the Magic map you need the magic map focus and a stack of paper. Please only use the map in the Twilight Forest. You can only get one map every 24 hours so be careful with it. Using the map in the Overworld or another dimension will lag the server."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.magicMapFocus","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:materials","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.emptyMagicMap","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1072,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:mooncharm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon arrival","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have a small present for you: a Talisman of Remedium which is very useful to persevere during the dark nights with all these monsters.\nFirst you have to prove you can survive on the moon by yourself. After mining some moon turf, dirt, and rock, you can have it.\n\nMake sure you check back in the HV questline for necessary ores you should gather while here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:quartz","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"New Location","range":-1,"index":1,"dimension":28,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":3,"OreDict":""},{"id":"GalacticraftCore:tile.moonBlock","Count":512,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"ThaumicTinkerer:cleansingTalisman","Count":1,"tag":{"enabled":0},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1073,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":182,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Naga","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Naga in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFNagastone","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":182,"OreDict":""}]}]},{"questID":1074,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":190,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Lich","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Lich in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorI","Count":7,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":1,"OreDict":""},{"id":"dreamcraft:item.LichBone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":190,"OreDict":""}]}]},{"questID":1075,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":205,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":960000,"globalShare":1,"questLogic":"AND","name":"Minoshroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Minoshroom in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},{"id":"TwilightForest:tile.TFMazestone","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":205,"OreDict":""}]}]},{"questID":1076,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":189,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":960000,"globalShare":1,"questLogic":"AND","name":"Hydra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Hydra in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":7,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFFireJet","Count":1,"Damage":8,"OreDict":""},{"id":"TwilightForest:item.minotaurAxe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":189,"OreDict":""}]}]},{"questID":1077,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":224,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1200000,"globalShare":1,"questLogic":"AND","name":"Knight Phantom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Knight Phantom in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFUnderBrick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":224,"OreDict":""}]}]},{"questID":1078,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":217,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1200000,"globalShare":1,"questLogic":"AND","name":"Ur Ghast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon an Ur-Ghast in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFTowerStone","Count":1,"Damage":1,"OreDict":""},{"id":"TwilightForest:item.phantomHelm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":217,"OreDict":""}]}]},{"questID":1079,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":226,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1440000,"globalShare":1,"questLogic":"AND","name":"Yeti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Yeti in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.trophy","Count":1,"Damage":3,"OreDict":""},{"id":"TwilightForest:item.fieryTears","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":226,"OreDict":""}]}]},{"questID":1080,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":231,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1440000,"globalShare":1,"questLogic":"AND","name":"Snow Queen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Summon a Snow Queen in the Twilight Forest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivorIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.alphaFur","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.AuroraPillar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.tfspawnegg","Count":1,"Damage":231,"OreDict":""}]}]},{"questID":1081,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":222,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Bending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Plate Bending Machine allows you to directly make double, triple or more compressed plates, which might be useful for your first rocket in HV Tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":222,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemDensePlates","Count":8,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1082,"preRequisites":[1083],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":162,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Battery Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"MV machines can internally hold 1 battery. But sometimes you need to store more power than that, or you want a whole powerline to share batteries. You can use a battery buffer to store large amounts of batteries. They come in different sizes like 1x, 4x, 9x and 16x.\nBuild a 4x buffer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":172,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1083,"preRequisites":[758],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32528,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Lithium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Lithium is the best material to use when making batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32528,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17315,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1084,"preRequisites":[547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLubricant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using lubricant instead of water or distilled water in your cutting machines will increase the output or speed of the machines.\nYou can make lubricant out of oil, seed oil, fish oil or creosote in a distillery. If you are able to craft a brewery you can use talc and soapstone to get much more lubricant each cycle.\n\nLube cells are required to make low tier energy hatches, so stockpile a few cells and use the rest to make your cutting machine faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30724,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30713,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1085,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lMore Compact Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are starting to find more and more iron you feel your wood chests are too small to hold all the stuff you found and collected. Now it's time to upgrade your chests to iron chests. You can just build a new chest or upgrade the wood chest with a wood to iron chest upgrade item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27032,"OreDict":""},{"id":"minecraft:chest","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:woodIronUpgrade","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1086,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:strawberryjuiceItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Juice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most of your berries can be extracted to juice. This is a chance to get more food variants and the nutritional value is higher than eating the fruit directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:applejuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:carrotjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:melonjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberryjuiceItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:blackberryjuiceItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:strawberrymilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:chocolatemilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:bananamilkshakeItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1087,"preRequisites":[665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:potatocakesItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potato Cakes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potatoes, onions, butter and a skillet make very tasty potato cakes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:onionItem","Count":4,"Damage":0,"OreDict":"cropOnion"},{"id":"harvestcraft:butterItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:potatocakesItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32559,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1088,"preRequisites":[665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:friedeggItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fried Eggs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So easy, skillet and an egg.... fried egg."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:skilletItem","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:friedeggItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:butterItem","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:egg","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2817,"OreDict":""},{"id":"harvestcraft:flourItem","Count":8,"Damage":0,"OreDict":"foodFlour"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1089,"preRequisites":[1088,638,1087,1086],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hearty Breakfast","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's now combine all the things together and make a healthy and very good breakfast.\nSome cooked meat, potato cakes, toast, fried egg and a tasty juice provide you with a very nourishing meal.\nYou can use any cooked meat and any fruit juice here."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":"listAllmeatcooked"},{"id":"harvestcraft:potatocakesItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:friedeggItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:toastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:applejuiceItem","Count":1,"Damage":0,"OreDict":"listAlljuice"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:friedeggItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:potatocakesItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:toastItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":50,"Damage":0,"OreDict":""}]}]},{"questID":1090,"preRequisites":[546,625],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:flowing_lava","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lTry to dry out the Nether","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps can do more than pump oil and water. You can go to the nether and pump lava from the huge lava lakes too.\nDon't forget to bring some tanks or fluid cells with you. Once you reach HV lava can be centrifuged for gold, silver, tin, copper, and a little tungstate.\n\nThis is a good use for your LV pumps once you upgrade to MV pumps for oil."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1140,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""},{"id":"irontank:goldTank","Count":4,"Damage":0,"OreDict":""},{"id":"JABBA:mover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Go to the Nether","range":-1,"index":2,"dimension":-1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1091,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Tanks... Oh shiny","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you build a cutting machine you can make some diamond plates for your new 64 buckets single block tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"TConstruct:GlassPane","Count":2,"Damage":0,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"irontank:diamondTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1092,"preRequisites":[1090],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestthenether:glowFlower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNew source of Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Find some glowflowers in the Nether and plant them in the Overworld. You will never need to go to the Nether and harvest glowstone again."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"harvestthenether:glowFlower","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestthenether:glowflowerseedItem","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:dye","Count":32,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1093,"preRequisites":[1322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDid you run low on Gold or Redstone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you run low on redstone and gold? No problem with your glowstone flower farm. You can centrifuge glowstone dust to redstone and gold dust.\nRedstone is also a good source of aluminium and chrome."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:glowstone_dust","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":1810,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":1086,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"minecraft:diamond_hoe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1094,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Chests... Oh shiny","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you build a cutting machine you can make some diamond plates for your new big diamond chests."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IronChest:goldDiamondUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1095,"preRequisites":[1085],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lEven More Compact Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you found enough gold you can upgrade your chest to make it an even bigger inventory of 9x9. You can just build a new chest or upgrade the iron chest with a wood to gold chest upgrade item. You can use an assembler to make them a little easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":18086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27086,"OreDict":""},{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"IronChest:BlockIronChest","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:ironGoldUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1096,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemInkwell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Scribing Tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To unlock your researches you need a scribing tool and paper. Better make two of them. One for your research table and one for researches. You also need some paper and ink."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":25880,"OreDict":""},{"id":"minecraft:glass_bottle","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemEssence","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":2,"Damage":0,"OreDict":"dyeBlack"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Thaumcraft:ItemInkwell","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:paper","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1097,"preRequisites":[1055],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemBathSalts","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bathing the warp effects away.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Litmus paper tell you how high you warp level is, but how can you get rid of the nasty warp effects? Bath salt will help you by prohibiting warp effects for a short period. Just throw the salt into a 1x1 water hole and jump inside. You will feel relieved a bit after bathing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"auram"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"cognitio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"ordo"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":2,"tag":{"Aspects":[{"amount":8,"key":"sano"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1098,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bathing in a Spa. Automated Warp removing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bathing in a spa will automate the process of temporary removing warp effects. Take the bath salt with you into the spa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1099,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSanitySoap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Temp warp remover Soap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This soap is very special. It will remove temporary warp and has a small chance to also remove some normal warp, if you are lucky. Taking a bath first increases your chances.\n\nHint: You need to chisel your tallow block for the recipe to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":18,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1100,"preRequisites":[237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enchanting Table 1.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally with your new wand and 50 stored vis you are able to build your own enchantment table. The recipe can be found on the GTNH Thaumcraft Page"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:bookshelf","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1101,"preRequisites":[1100,117],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"damage":256},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Division Sigil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you found a division sigil in a chest already. You have heard about some ritual to activate it.\n\nYou need an enchantment table, 8 redstone dust, a good sword and an animal you want to sacrifice at night. Catching and holding it with a lasso would be the easiest way.\nPlace your enchantment table on a grass field and surround it with redstone dust.\nPrecisely at midnight place the animal on or near the table and kill it.\nOf course you also need to have your sigil on you.\nBe aware! Your actions will have consequences."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:enchanting_table","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":8,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:golden_lasso","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"damage":256},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:torch","Count":16,"Damage":0,"OreDict":""},{"id":"ExtraUtilities:unstableingot","Count":3,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1102,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Beacon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new wand you are able to create a beacon. The beacon recipe is found on the GTNH Thaumcraft Page. Activate it in your base to gain various positive effects."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_block","Count":164,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1103,"preRequisites":[1101,1104],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:cursedearthside","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cursed Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Kill the monsters that spawn on the cursed earth. Use a shovel with the silk touch enchantment to dig up the cursed earth blocks. You will need these blocks for your mob spawner later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:cursedearthside","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1104,"preRequisites":[1100],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Silky Jewel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to craft some silky jewels for your tinkers tools. Lots of blocks you can easily grab with this tool.\n\nThe recipe can be found on the GTNH page after researching the enchantment table."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":1,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1105,"preRequisites":[1102,986,1106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"stable":1},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Division Sigil Stable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second ritual will not be as easy as the first one. After this ritual your sigil will be stable enough to make stable unstable ingots which will not explode.\n\nThis ritual needs to be performed in The End dimension. \nThe ritual is performed by placing a Beacon in the centre of a flat area of at least 11x11, not necessarily End Stone. Then place a chest in each of the cardinal directions leaving 4 spaces empty between the chest and the Beacon. In each chest insert these specific contents:\n\nNorth: iron ingot, gold ingot and the other things listed in the task.\nSouth: The different Ore Blocks and the other things listed in the task.\nEast: The potions.\nWest: The Music disks.\n\nA spiral pattern of Redstone and String is then laid out around the beacon. At any time, Shift+Right-clicking the Beacon with an Activated Division Sigil in hand will show the building progress of the ritual.\n\nFinally, kill an Iron Golem while it stands within the ritual area to activate the process. If it works, there will be an explosion that destroys the beacon and chests, while every Enderman in the End vanishes. During the ritual, throngs of aggresive mobs imbued with Haste will begin spawning and attacking the Player who needs to kill 100 of them to complete the ritual. If the Player dies or leaves the dimension, the ritual will fail and will have to be started over. Once enough mobs have been killed, the first activated Sigil in the inventory will stabilize. The Pseudo-Inversion Sigil can be used an unlimited number of times, and dividing an Iron Ingot by Diamond will produce Mobius \"Unstable-Stable\" Ingot which does not explode, can be produced in any crafting interface and will stack up to 64."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":40,"Damage":0,"OreDict":""},{"id":"minecraft:string","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_fished","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_chicken","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:baked_potato","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:hardened_clay","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:sand","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:grass","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:clay","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:obsidian","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:coal_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lapis_ore","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:emerald_ore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"minecraft:record_cat","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_blocks","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_chirp","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_far","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_mall","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_mellohi","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_stal","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_strad","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_ward","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_11","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_wait","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:record_13","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":8199,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8200,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8201,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8202,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8203,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8193,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8194,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8195,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8196,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8197,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8205,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"The END","range":-1,"index":7,"dimension":1,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":8,"consume":0,"requiredItems":[{"id":"ExtraUtilities:divisionSigil","Count":1,"tag":{"stable":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beacon","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1106,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:brewing_stand","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blub blub blub.....","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The brewing stand is really important for brewing the various potions like night vision, healing, haste and jump. Toxic potions or splash potions can be created too. \nWith your basic wand you can create one.\n\nThe recipes can be found on the GTNH page in the Thaumonomicon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:brewing_stand","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1107,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGolemPlacer","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lThe Iron Guy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you feel lonely? Need some extra protection in your base? Want to keep the pigmen off your back in the Nether?\nThey can do good amounts of damage and aggro enemies like the pigmen away from you. They can even take care of that pesky Vampire Pigman.\nCraft some Iron Golems and the monster problem inside your base will be gone.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:iron_block","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:iron_ingot","Count":9,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1108,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:snowball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lThe Cool Guy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Feeling lonely? Located far away from a smow biome?\nCraft a Snow Golem, and perhaps challenge him to a snow ball fight."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:pumpkin","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:snow","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:snowball","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:snow","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1109,"preRequisites":[320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oh crunchy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of doing Thaumcraft research you found a way to craft pure tears. Ichorium purifies the nether star which sucks all the warp away. Be careful, as this may have a deadly end."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.cleanser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1110,"preRequisites":[1109],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WarpTheory:item.warptheory.amulet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purge all your warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you ever have a dream where you could purge all your warp with no bad side effects? This purification talisman will let your dreams come true.\nDo not forget to wear it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WarpTheory:item.warptheory.amulet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":12,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1111,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:apicultureChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A Chest for Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A chest for bees only. It can hold up to 125 different bees in one chest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":3,"Damage":0,"OreDict":"beeComb"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32403,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:apicultureChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1112,"preRequisites":[501],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameUntreated","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Untreated frames are the simplest frames. They do not work in bee houses, only in apiaries. You will need them to craft bee houses.\n\nThey increase the bee's performance. Each untreated frame will double a bee's productivity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":9,"Damage":0,"OreDict":"slabWood"},{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:frameUntreated","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:beeCombs","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1113,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameImpregnated","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Impregnated Frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impregnated Frames are even better than untreated Frames. \nEach frame doubles the bee's productivity. It has a longer durability than the untreated frame, but a shorter one compared to the proven frame."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:slab","Count":9,"Damage":38,"OreDict":""},{"id":"harvestcraft:wovencottonItem","Count":3,"Damage":0,"OreDict":""},{"id":"Forestry:oakStick","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:frameImpregnated","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:honeyDrop","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1114,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Proven Frame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Proven frames are much better than impregnated ones.\nEach frame doubles the bee's productivity. Out of the three Forestry frames (Untreated, Impregnated and Proven), the proven frame has the longest durability.\n\nYou can make them or purchase them from a villager. If you can't find a beekeeper, there are couple of different options to get one. Rescue a zombie villager, add doors to a village to get them to make kids, or perhaps use a cupid's bow and arrow..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:frameProven","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:propolis","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:propolis","Count":16,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1115,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Moron's Guide to Taller Trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forestry trees have a variety of attributes. Once you get a tree with a useful attribute, you can breed that attribute into other tree species. This way you can get an ultimate tree that combines all the attributes you want - including the type of fruit! These breeding lines do not cover every option or even the best, but are great starts to get you into Forestry.\n\nIT IS RECOMMENDED YOU DO YOUR FORESTRY TREE BREEDING IN AN ENCLOSED AREA, OR UNDERGROUND. BUTTERFLIES ARE A KNOWN LAG SOURCE.\n\nFor faster tree breeding, enclose your trees so that butterflies cannot escape, and breed bees with better traits for area and pollination.\n\nGirth - The width of your tree. Wider trees have more leaves, but will also need more saplings to begin growing. All saplings must be the same species and girth. The sapling in the NW corner determines the stats of the new tree, and is where bone meal must be applied to mature the tree. Butternut already provides 2x2 girth.\n\nHeight - Controls how high the tree grows. Jungle trees are already Larger, but if you want Largest there is a guide to getting Cocobolo trees. There are rumors of rare villagers with Giant Sequoia saplings capable of reaching into the clouds...\n\nMatures - The growth speed of a sapling into a tree. Important if you plan to cut it down right away for logs.\n\nSaplings - Chance of getting a sapling from a detroyed leaf. Balsa, a tree on the way to Cocobolo, has High number of saplings. Good for making into biomass or other uses.\n\nSappiness - The amount of biomass a sapling produces in the Fermenter. Boost Fermenter output more using honey or fruit juice. Blue Mahoe provides the highest sappiness, but Lemon and Plum are respectable.\n\nYield - Chances of getting a fruit from a destroyed leaf. Plum is the best here.\n\nFruit - Each fruit from various trees provides different advantages. Lemons are great sources of Fruit Juice but don't provide much Mulch for the fermenter. On the other hand, Plum is a mediocre source of Fruit Juice, but great for Mulch. The best seedoil nut is coconut, but butternut or hazelnut are good alternatives.\n\nWhen breeding these trees for quests, you will need to breed the species \"pure\", not a hybrid."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1116,"preRequisites":[1117],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":10,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some cultivated bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Common Princess and Foresty Drone can be bred to cultivated bees. \n\nCultivated bees have the shorest lifespan - this means they make great princesses to breed with your newly bred drones. The queen will die quickly, quickly giving genetic material to work with. Make sure the traits you want are kept!\n\nThey are also a Fast production bee, which means lots of honey combs for powering your Beealyzer or Treealyzer. \n\nCultivated Bees produce Honey Combs every 0.9 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time.\n\nMake sure your cultivated bees are pure with a Beealyzer or GT scanner.\n\nThe main bee breeding quests will require pure bees but you can use Ignoble or Pristine princesses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":32,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1117,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some common bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To cross breed bees you need two different species of bees. One drone and one princess from different hives (Meadows and Forestry as an example)\nBee Houses do not allow crossbreeding. In an Apiary you can cross breed them to a new species. Certain frames will help this process. Shortening their lifespan means faster crosses. Increasing Mutation rate means getting rare bees quicker.\n\nCommon Bees produce Honey Combs every 2.2 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nMake sure your bees are pure by checking their genetics with a Beealyzer or GT scanner."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMeadows","UID0":"forestry.speciesMeadows"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMeadows","UID0":"forestry.speciesMeadows"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesForest","UID0":"forestry.speciesForest"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1118,"preRequisites":[1116],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":30,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some noble bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding common and cultivated bees can result in noble bees. \n\nNoble bees produce dripping combs every 3.8 minutes and honeydew. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nYou've heard of a drunk beekeeper saying he has perfected a method of creating proven frames using Honeydew and a little magic. It might be worth your time to try experimenting yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCommon","UID0":"forestry.speciesCommon"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1119,"preRequisites":[1118],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeCombs","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dripping Combs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your noble bees produce some dripping combs.\nA good source for honey, and if have a magical mind, honeydew for proven frames."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeCombs","Count":16,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1120,"preRequisites":[1118],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":35,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some majestic bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding noble and cultivated bees can result in majestic bees.\n\nMajestic bees have a very important attribute - high fertility. They will leave 4 drones when they die. This means lots of genetic material for the next generation to work with.\n\nMajestic bees produce dripping combs every 1.5 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesCultivated","UID0":"forestry.speciesCultivated"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:honeydew","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1121,"preRequisites":[1120],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":40,"Mate":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectBeatific","UID0":"forestry.effectBeatific","Slot":13}]},"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectBeatific","UID0":"forestry.effectBeatific","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Breed some imperial bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cross breeding noble and majestic bees can result in imperial bees.\n\nThese bees produce a Regeneration buff in their active area. You can probably find a use for this in case of...accidents.\n\nImperial bees produce dripping combs every 3.8 minutes and royal jelly every 5.1 minutes. Note that production times are an approximation based on the bee's base production speed and the product's rarity. They do not reflect actual production time. \n\nRoyal jelly is needed in making scented paneling for an Alveary - the third tier bee housing.\n\nYou can now start working towards the Master Registry in the To Grind, or Not to Grind tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesNoble","UID0":"forestry.speciesNoble"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMajestic","UID0":"forestry.speciesMajestic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial"}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesImperial","UID0":"forestry.speciesImperial"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeCombs","Count":32,"Damage":5,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1122,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:royalJelly","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Royal Jelly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Royal jelly is a honey bee secretion that is used in the nutrition of larvae, as well as adult queens. It is only produced by the imperial bee. It's production can be increased with proven frames or any other kind of frames except for the soul frame. Royal jelly is also useful because it can craft ambrosia, which fills 8 hunger points (4 full food icons) and gives Regeneration I for 40 seconds. Royal jelly is used to craft scented paneling which are required in the creation of alveary blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:royalJelly","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1123,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:alveary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Alvearies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The alveary is an advanced variant of the apiary. The alveary allows for combs to be produced faster due to its natural speed increase to production (as well as the ability to add up to six frames via the Extra Bees frame housings) and due to its ability to be modified by other blocks. \nIt is possible to adjust the internal temperature of the alveary using the alveary heater or alveary fan in order to accommodate bees that require hotter or colder climates.\n It is also possible to use mutators to increase chances of mutation, alveary lighting and alveary rain shield to allow bees without the nocturnal and tolerant flyer traits to work during the night and rain, respectively, and the swarmer to use excess royal jelly to create princesses that last for a limited number of generations.\n\nA submission station is recommended for quests with large amounts of items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":432,"Damage":19086,"OreDict":""},{"id":"Forestry:royalJelly","Count":216,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":216,"Damage":0,"OreDict":"itemPollen"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:beeswax","Count":432,"Damage":0,"OreDict":""},{"id":"Forestry:oakStick","Count":648,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":216,"Damage":30725,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":216,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:log","Count":216,"Damage":0,"OreDict":"logWood"},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":30713,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"Forestry:impregnatedCasing","Count":27,"Damage":0,"OreDict":""},{"id":"Forestry:craftingMaterial","Count":216,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"Forestry:alveary","Count":27,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":6,"consume":0,"requiredItems":[{"id":"minecraft:wooden_slab","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:royalJelly","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:propolis","Count":32,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":1124,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeStructural","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Barrel Upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are your cobblestone or dirt barrels filled to the brim? \nNo problem, upgrade them!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17809,"OreDict":""},{"id":"minecraft:stick","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeStructural","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeCore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:barrel","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1125,"preRequisites":[1124],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Barrel Upgrades Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are your upgraded cobblestone or dirt barrels full again? \nNo problem, upgrade them some more!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":1,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeStructural","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"JABBA:barrel","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":3,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"JABBA:upgradeCore","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"JABBA:upgradeStructural","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1126,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lAlumite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's upgrade time again. You can make alumite like modpack Moron by mixing obsidian, steel and alumin(i)um in the smeltery, or you can be a GregTech hero and search NEI for an alternate recipe using dusts. Alumite pickaxes are able to mine ardite in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:materials","Count":16,"Damage":15,"OreDict":"ingotAlumite"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":31,"OreDict":""},{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1127,"preRequisites":[596],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:heavyPlate","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lReinforced X? Unbreakable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your steel tool you are able to mine obsidian. Large obsidian plates give a reinforced modifier which increases the durability of your tool. \nReinforced level X makes a tool unbreakable."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:heavyPlate","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:obsidian","Count":16,"Damage":0,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1128,"preRequisites":[867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lLapis? Lucky!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you were lucky and received the luck modifier on your pickaxe. If not, you may still have an unused modifier on your pick so you can add some lapis lazuli. Or you can perhaps add another modifier by adding a diamond and a gold block to your pick and then add some lapis. \n\nYou can put the lapis lazuli in more than one slot in the tool station, use blocks to raise the luck level faster, and even use lapis blocks in the crafting station with your tool for maximum luck gain."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":64,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:golden_carrot","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:gingerbreadItem","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1129,"preRequisites":[535],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRedstone? Haste!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mining and digging can be soooo slow. Get some redstone on your pick, shovel or axe to make it faster. You can use the Crafting Station to upgrade your tool 8 dust at a time. Later when you get a compressor you can use blocks to do 9 per block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:toolRod","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1130,"preRequisites":[54,495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:creativeModifier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§3§e§4§3§lExtra Modifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't have an extra modifier on your tool you can easily add one.\nA gold block and a diamond are all you need.\nYou can add two more modifiers, but you need to figure out how yourself."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:gold_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":16,"Damage":86,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"harvestcraft:leafyfishsandwichItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1131,"preRequisites":[479,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SearedBrick","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lArdite and Cobalt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are done with all quests you can look for cobalt and ardite in the Nether. Remember, you need an electric blast furnace to process these materials before you can make tools with them. But you have heard rumors of a special wood only found in another land, a forest of twilight, that can make tools strong enough to mine them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SearedBrick","Count":4,"Damage":2,"OreDict":"oreArdite"},{"id":"TConstruct:SearedBrick","Count":4,"Damage":1,"OreDict":"oreCobalt"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1132,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:quartz","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§f§3§lNetherquartz? Sharpness","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your sword is too dull? Get some nether quartz to sharpen it again.\n\nIf you have lots of Certus quartz, 1 piece of Certus is equal to 24 Nether quartz."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:quartz","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2022,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1133,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterquesting:submit_station","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSubmission Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Although many of the questing tasks can be submitted directly through your inventory (including liquids) sometimes you need a more automated solution. This is where the Object Submission Station (OSS) comes in handy. \nTasks supporting the OSS can be selected through the built in interface to enable its use. Once setup, liquids and items can be either piped in or dropped into the interface's input slot. It will not void items or liquids if no task is selected or if it has already been completed, however, making it relatively safe from accidental item/fluid deletion. Multiple OSS are also capable of taking on separate sub-tasks under the same quest simultaneously!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:chest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17809,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"betterquesting:submit_station","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1134,"preRequisites":[608],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":753,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLV Advanced Steam Boiler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LV Gt++ Steam Boiler is the next machine you can build to produce steam more efficiently than with the High Pressure Boiler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":753,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11089,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1135,"preRequisites":[890,898],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":20,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lULV Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your simple ore washer working you need a ULV Transformer. The Washer can only work with 8 EU. If you put more energy into it you get a big hole in your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2006,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1136,"preRequisites":[97,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30651,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLossless LV Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about losless 32 EU LV Cables ? Redstone alloy is a superconductor wire and will transfer your energy without any loss.\nRedalloy is a new alloy which requires an EBF. Mix redstone, silicon and coal by hand, or in the mixer for a better result."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2535,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2381,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11381,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30645,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30651,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1137,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockGenerator","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Generator will transform mechanical energy into electricity. The EU output depends on the KU input. It is most commonly used together with a Kinetic Wind Generator, Kinetic Water Generator or a Kinetic Steam Generator.\n\nWhen placing a kinetic generator, any time, the \"input\" side is the side facing you. So you will place the kinetic generator, then the wind/water/steam gen, and then place a rotor inside. Power can be drawn from any side of the kinetic generator, up to the rated amount per side. \n\nNOTE: It now requires an Avaritia Dire Crafting Table and Titanium. Follow the quests in Space Race and get to the moon. Use NEI to find the recipe since Better Questing cannot show it.\n\nWARNING: Breaking a kinetic generator improperly will not return the generator. Use a GT wrench, and right-CLICK it. It should drop immediately. Try again if it just changed directions. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":11,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":21306,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31028,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1138,"preRequisites":[1137],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockKineticGenerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Wind Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Wind Generator generates energy from wind power which varies randomly, although certain factors can change this. \nUnlike the Windmill, the Kinetic Wind Generator will require maintenance in the form of the Rotors. These are needed to run the Kinetic Wind Generator.\nOnce a Rotor is placed inside the GUI, the block is given sufficient space, and the current wind level is adequate for the current rotor, the Kinetic Wind Generator will begin to generate Kinetic Energy. \nThis can be converted into EU by using a Kinetic Generator attached to the correct face (the black circle).\nAbout Wind\nFirst off, the wind strength of a particular area is affected by 3 factors: Height, Weather, and Chance. The higher up in the world you are, the higher the wind level. Below y64, there is never enough wind to be used, and KWG's will not function at all. Weather will also give boosts; Rainy weather will give a 20% boost to normal wind levels, and stormy weather will give a 50% boost. The final factor of chance makes the wind strength vary randomly, however there is a limited range of variation.\nThe easiest way to check the current wind level in an area is by using a Windmeter.\nWind is strongest at around Y160, towards the build limit of Y255 there is very little wind, hence no point attempting to run Windmills that high.\nWhile inconvenient, the Wind Generator can run anywhere.\n\nYou will need to use NEI to see the recipe, since it use the Dire Crafting table. Make sure to put the items in the right place, or you will get a Water Generator instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20028,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockKineticGenerator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1139,"preRequisites":[1137],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockKineticGenerator","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lKinetic Water Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Water Generator allows Kinetic Units to be produced via the movement of water in river and ocean biomes. As with the Kinetic Wind Generator, it requires either Gearbox Rotor. Search NEI for appropriate options.\n\nIf the Kinetic Water Generator's Rotor isn't entirely submerged in water, it will alert you there is \"no room for the rotor\". If the Kinetic Water Generator isn't placed in a river, ocean or deep ocean biome, it will alert you it \"must be placed in a river or ocean biome\". Check the Game Mechanics spreadsheet on Discord for a list of biomes and their tags.\n\nWhile inconvenient, the Water Generator runs more consistently.\n\nYou will need to use NEI to see the recipe, since it use the Dire Crafting table. Make sure to put the items in the right place, or you will get a Wind Generator instead.\n\n§4You can use Witchery to convert biomes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32612,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockKineticGenerator","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":18306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32602,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1140,"preRequisites":[1138,1139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemironrotor","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§9§lRotor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Kinetic Wind and Water Generators need Gearbox Rotors to function. They can be added and removed with standard automation. Higher tier rotors will last longer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":28028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":4,"Damage":8,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemironrotor","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemwoodrotor","Count":1,"Damage":1,"OreDict":""},{"id":"IC2:itemRecipePart","Count":2,"Damage":8,"OreDict":""},{"id":"IC2:itemRecipePart","Count":4,"Damage":12,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1141,"preRequisites":[1138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:windmeter","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lWind Meter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Windmeter measures wind strength. It show's you on which height you can place your Wind Generator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemRecipePart","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":21019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27306,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":20306,"OreDict":""},{"id":"IC2:itemBatREDischarged","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"IC2:windmeter","Count":1,"tag":{"charge":10000},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockIronScaffold","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1142,"preRequisites":[1144],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Battery Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HV machines need battery buffers too. They come in different sizes like 1x, 4x, 9x and 16x.\nBuild a 1x and a 4x buffer for HV. \n\nYou can use the 1x with a transformer and run MV machines for a decent time. Or transform it twice to LV and run a bunch of LV machines for a long time. Useful when you want scanner near your bees or trees. Remember to cover them up or else rain will make you very unhappy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":173,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1143,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32502,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Let's make some HV battery hulls for new batteries. Now it's up to you to make lithium, cadmium, sodium or acid batteries with these hulls."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32502,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1144,"preRequisites":[1143],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32528,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Lithium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better machines need some better batteries. Lithium is the best material to use when making batteries. Make sure to use the Assembler recipe with Polyethylene to save on resources."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17315,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1145,"preRequisites":[1140],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV EV Tranformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gregtech cables will not connect to IC2 machines so you need transformers to convert the energy. The best way is building two transformers and a battery buffer to store the generated energy in batteries or energy cells. The longer the cable the more energy will be lost at low tiers. So use high tier voltages when transporting energy over long distances.\n\nBe careful; IC2 machines do not care about rain but your GT machines will explode violently if exposed to water.\n\nIt is also important to transfer the power up, not down, to avoid explosions if the rotor generates more than 120 EU/t. It is not recommenend to use better rotors than the iron ones on HV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":23,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":163,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"IC2:itemDust2","Count":9,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32502,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1146,"preRequisites":[35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lGT 6 styled Pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why the new pipes don't auto-connect anymore? This was changed to make the pipe smarter. You can now use a wrench to connect only the pipes you want. You don't need a plate or a foil to prevent pipes from connecting anymore.\n\nYou'll still want to cover hot pipes to prevent getting hurt!\n\nShift clicking on the end of a pipe will disable the fluid input on that side. This is super handy, for example, to prevent coal boilers from feeding back steam into water pipes. \n\nAlso, pipes now come with a shutter built in for free to reduce sloshing. Shift-rightclick with a wrench on the side you want prevent input.\n\nLarge or Huge fluid pipes can be a \"poor man's\" storage tank, holding large amounts on their own.\n\nFor machine outputs, including the boilers, and water siding tanks you will not need pumps. Other tanks will need pumps or Tinker's Construct faucets to move fluids.\n\n§4Hint: If you click one pipe onto the other they will auto-connect."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5123,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IronChest:woodIronUpgrade","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1147,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§2§4§3§lGT 6 styled Wires and Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Maybe you are wondering why the new wires and cables don't auto-connect anymore? This was changed to make the wires and cables smarter. You have to use a wirecutter or soldering iron to connect the wires and cables on the side you want. No more burnt cables or wrongly connected wires and cables from now on. You can shift-rightclick to attach a cable on the side of a machine you cannot see, like attaching a cable to the bottom while looking at the front.\n\nHint: If you click one wire or cable on the other it will auto-connect. Cables and pipes can be painted to make sure you do not cross your MV line with your EV line, or dump hot lava into your plastic water pipes. No boom today.\n\nHa ha just kidding there is always a boom today!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":4,"Damage":1246,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:splitpeasoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1148,"preRequisites":[103,77,543,97,717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Machine hull","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier of machine hull needs aluminium - a lot of aluminium. Keep your EBF running and make some aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1149,"preRequisites":[673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11313,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lA new alloy - Magnalium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You wonder why you need magnalium now? It's not for GT machines right now but for a material update for your crossbow.\nIt's a very good material in LV Tier. Go to the Twilight Forest and find an Olivine/Glauconite vein located at Y 10-40 or in the Overworld a Glauconite Soapstone mix located at Y 20-50 and a Granitic Mineral Vein in the Overworld Located at Y 50-60 (The Gypsum vein you will need for the Bricked Blast Furnace).\nWith your Ore Washer you can get Magnesium and Aluminium out of the Ores (Magnesite for Magnesium (marbel can be used too)and Fullers Earth for Aluminium) and mix it in the Alloy smelter to Magnalium.\nMagnesite gives 10 tiny piles of Magnesium each dust but fullers earth gives only a tiny pile of Aluminium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2018,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11313,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1150,"preRequisites":[741,1149,673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":288,"BaseAttack":2,"DrawSpeed":35,"ToolEXP":0,"HarvestLevel":3,"RenderHead":1602,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accessory":2,"MiningSpeed":600,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":288,"BaseDrawSpeed":35,"Head":1602,"Attack":2,"Handle":1602,"Broken":0,"Extra":6,"RenderAccessory":2,"ToolLevel":1,"FlightSpeed":5.99399995803833,"Modifiers":0},"display":{"Name":"Magnalium Crossbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Crossbow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now its time to craft your Crossbow Limb and the Crossbow Body to upgrade your old Wooden Crossbow."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":11313,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:Cast","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:Cast","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""},{"id":"TGregworks:tGregToolPartCrossbowBody","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:barleyFood","Count":2,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1151,"preRequisites":[741],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":38,"BaseAttack":1,"DrawSpeed":33,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":38,"BaseDrawSpeed":33,"Head":0,"Attack":1,"Handle":0,"Broken":0,"Extra":6,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":4.5,"Modifiers":0},"display":{"Name":"Wooden Crossbow"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWooden Crosbow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you are able to make a better long range weapon - a crossbow. Use wood for the the crossbow limb and the body and use obsidian (Reinforced III) for the tough binding. Normal strings for the bowstrings would be enough for now.\n\nAssemble the bow yourself on your tool forge.\n\n§4For upgrades:\n§5§4§3Redstone - Speed on the draw\nLapis - Fortune on kills\nMoss - Self-repair (this is not visible in NEI until you unlock it in the GTNH Thaumcraft tab)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:Pattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:Pattern","Count":1,"Damage":2,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":15,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:CrossbowLimbPart","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:toughBinding","Count":1,"Damage":6,"OreDict":""},{"id":"TConstruct:bowstring","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:Crossbow","Count":1,"tag":{"InfiTool":{"RenderExtra":6,"BaseDurability":38,"BaseAttack":1,"DrawSpeed":33,"ToolEXP":0,"HarvestLevel":0,"RenderHead":0,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accessory":0,"MiningSpeed":150,"Unbreaking":3,"Damage":0,"BonusDurability":0,"TotalDurability":38,"BaseDrawSpeed":33,"Head":0,"Attack":1,"Handle":0,"Broken":0,"Extra":6,"RenderAccessory":0,"ToolLevel":1,"FlightSpeed":4.5,"Modifiers":0},"display":{"Name":"Wooden Crossbow"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1152,"preRequisites":[1150],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:bowstring","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFiery Bowstring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why not upgrade your bowstring too? You got some from the last quest, but will need to find some more in the Nether by killing spiders. Craft some fiery bowstring with it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:barleyFood","Count":3,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:bowstring","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":11382,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1153,"preRequisites":[1152],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lArdite Crossbow Body","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make your crossbow even better craft an ardite crossbow body. You received a few ardite ingots as reward before but will need to find ore in the Nether and process it in an Electric Blast Furnace.\nWith redstone you can make your bow faster. This requires a free modifier slot on your crossbow.\nDon't bother putting Nether Quartz on the crossbow, it only improves damage from whacking mobs over the head with it. Put the Nether Quartz on your bolts instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":11382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:CrossbowBodyPart","Count":1,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1154,"preRequisites":[1150,1155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.05400000140070915,"BaseDurability":705,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accuracy":87.5,"Accessory":1,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":705,"Head":2,"Attack":3,"Handle":1602,"Broken":0,"Mass":3.4800000190734863,"Ammo":71,"RenderAccessory":1,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Crossbow Bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnalium bolts are much better than your old wooden bolts.\nYou can use nether quartz on the bolts to make them even better. \nThis requires a free modifier slot.\nExperiment with NEI to find other good bolt materials. \n\n§4To make it, you must use a Fluid Solidifer instead of the Tinker's casting table."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""},{"id":"TConstruct:metalPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:fletching","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":2}},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":4,"consume":0,"requiredItems":[{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.05400000140070915,"BaseDurability":705,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":1602,"Accuracy":87.5,"Accessory":1,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":705,"Head":2,"Attack":3,"Handle":1602,"Broken":0,"Mass":3.4800000190734863,"Ammo":71,"RenderAccessory":1,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":11382,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1155,"preRequisites":[579,543],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":521,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§lBasic Fluid Solidifier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your molten fluids back to a solid state you need a fluid solidifier. This is handy for processing molten rubber directly from the chemical reactor. It is used for crossbow bolts as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":521,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:energydrinkItem","Count":5,"Damage":0,"OreDict":""},{"id":"harvestcraft:beansontoastItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32716,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1156,"preRequisites":[1151],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000774860382,"BaseDurability":188,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accuracy":97.5,"Accessory":0,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":188,"Head":2,"Attack":3,"Handle":0,"Broken":0,"Mass":4.335000038146973,"Ammo":19,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lWooden Bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your crossbow need some ammo to shoot with. Let's craft some wooden bolts. For now, you can put either iron, alumite, or steel on the tip of your bolts using the Smeltery. For higher tier bolts and tips you will need to pump metals into a Fluid Solidifier with the correct tool rod inserted.\n\n§4For upgrades\n§3Nether or Certus Quartz - More damage\nMoss - Self-Repair (unlock in GTNH Thaumcraft tab)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:woodPattern","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:woodPattern","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:toolRod","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:fletching","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":2}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":3,"consume":0,"requiredItems":[{"id":"TConstruct:BoltAmmo","Count":1,"tag":{"InfiTool":{"BreakChance":0.07000000774860382,"BaseDurability":188,"BaseAttack":3,"ToolEXP":0,"HarvestLevel":3,"RenderHead":2,"ModDurability":0,"Shoddy":0,"RenderHandle":0,"Accuracy":97.5,"Accessory":0,"MiningSpeed":600,"Unbreaking":1,"Damage":0,"BonusDurability":0,"TotalDurability":188,"Head":2,"Attack":3,"Handle":0,"Broken":0,"Mass":4.335000038146973,"Ammo":19,"RenderAccessory":0,"ToolLevel":1,"Modifiers":0},"display":{"Name":"Iron Bolts"}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1157,"preRequisites":[536],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":19}],"GT.ToolStats":{"PrimaryMaterial":"Rubber","MaxDamage":25600,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lRubber Soft Mallet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wooden soft mallet breaks after a few uses. Now you can make a rubber mallet which is much more durable."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":"woodStick"},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":11880,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":2,"id":19}],"GT.ToolStats":{"PrimaryMaterial":"Rubber","MaxDamage":25600,"SecondaryMaterial":"Wood"}},"Damage":14,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chickenpotpieItem","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1158,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron Wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood is much harder and durable than rubber. Ideal for a soft mallet. Collect some liveroot, macerate it and mix the powder with iron and gold to create a new magical material.\n\nYou can make some unique armor with this material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.liveRoot","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2832,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":86,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":2338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodIngot","Count":18,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1159,"preRequisites":[1158],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Steeleaf","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you locate a labyrinth you may find steeleaf in chests inside if you are lucky.\nThis is the best material for a soft mallet, however a unique armor out of steeleaf would be an even better use for this material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.steeleafIngot","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1160,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellEmpty","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEmpty Cells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your plate bender you are able to make empty cells. The circuit needs to be configured to 12 otherwise you will make foil. Once you have an LV Extruder, you can make cells directly from ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11880,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1161,"preRequisites":[67],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2006,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Redalloy Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some redalloy cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2006,"OreDict":""}]}]},{"questID":1162,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1246,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Tin Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some tin cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1246,"OreDict":""}]}]},{"questID":1163,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Copper Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some copper wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1360,"OreDict":""}]}]},{"questID":1164,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUniversal Macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the important machines in HV is the Universal Macerator. It has an additional output slot to get more materials when macerating ores.\n\n§4This is a key source of extra Gallium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":303,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1165,"preRequisites":[69],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11880,"OreDict":""}]}]},{"questID":1166,"preRequisites":[716],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:quartz_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lQuartz and Quartzite Veins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nether is full of different kinds of quartz. Go and find a quartzite and certus quartz vein. They are located between Y levels 80-120."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1523,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":1904,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":1516,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:nether_wart","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_rod","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1167,"preRequisites":[622],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2006,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lLithium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lithium can be washed out of Lepidolite Ore or centrifuged out of Spodumene Ore. At MV you can electrolyze clay dust for it. Look for canyons to find hardened clay and macerate it for dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2006,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:coleslawburgerItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1168,"preRequisites":[621],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2017,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lSodium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sodium can be washed out of Glauconite Ore and Sand. It can also be electrolyzed out of salt."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":2017,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32224,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1169,"preRequisites":[1097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemBathSalts","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":360000,"globalShare":1,"questLogic":"AND","name":"Bath Salt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oh you feel so dirty. Go and take a bath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemBathSalts","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1170,"preRequisites":[1099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSanitySoap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":720000,"globalShare":1,"questLogic":"AND","name":"Bath Soap","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oh you feel so dirty. Get the soap and take a long hot bath to get rid of some of that nasty Warp."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1171,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11335,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Damascus Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Damascus Steel is very durable and useful for GT tools. Buy some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11335,"OreDict":""}]}]},{"questID":1172,"preRequisites":[662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11345,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCheaper Annealed Production","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It' s even faster and cheaper to make annealed copper in the arc furnace than in the electric blast furnace. Annealed copper is a very good material for cables in MV. It only loses 1 EU per block."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11345,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2880,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1173,"preRequisites":[948],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11304,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Wrought Iron Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Whant some wrought iron ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11304,"OreDict":""}]}]},{"questID":1174,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11305,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some steel ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11305,"OreDict":""}]}]},{"questID":1175,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Aluminium Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some aluminium ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""}]}]},{"questID":1176,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11306,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Stainless Steel Ingots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some stainless steel ingots? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""}]}]},{"questID":1177,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thaumium cooking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it is time to cook your first thaumium ingots. After researching it you need iron ingots and praecantatio aspect to make it. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:iron_ingot","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":4,"tag":{"Aspects":[{"amount":8,"key":"praecantatio"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1178,"preRequisites":[1289],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTinCanFilled","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Food 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forget everything you know about food and values. With your new canning machine you are able to fill tin cans with very nourishing food. This food can be consumed in milliseconds and makes you full and happy. And you can eat as much as you want without getting tired of the food.\nEating before you are starving restores saturation and conserves cans."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":18057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemTinCan","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemTinCanFilled","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:apple","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:golden_apple","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1179,"preRequisites":[77,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lEBF Infos","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can use a scanner to manually check how your EBF works, or you can make an information panel from nuclear control and always see the status. Make a GT sensor kit and use it on the EBF controller. Place the the sensor card in your info panel. Enable it with a redstone signal.\n\nThe GregTech sensor card can monitor Gregtech machines like the EBF, Turbines, and Pyrolyse ovens. This is handy for keeping an eye on maintenance issues for multiblocks.\n\nIf you want to put the panels far from the machines they are monitoring, you will need range upgrades."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":4,"OreDict":""},{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32763,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17880,"OreDict":""},{"id":"IC2:itemPartCarbonMesh","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30726,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1180,"preRequisites":[1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPassive Chunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using the MV bender you can finally press dense plates. Let's craft some passive chunkloaders.\n3x3 chunks are loaded. You need coins or ender pearls to power the chunkloader. \nEnder pearls power personal anchors for 4 hours per pearl, and 1 hour in passive anchors . Personal anchors can also be powered with ender fragments for 1h. \n\n§4Personal anchors are loaded once the owner visits, and stays loaded while the player is logged in. \nPassive anchors are loaded once the owner visits, and stays loaded until the server resets."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChunkloaderTierI","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1181,"preRequisites":[677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Minecart with Tank, Workbench or Furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want to transport oil or other fluids, have a portable crafting table or a portable chest? Then you need to craft some minecarts with tanks, chests or crafting tables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:cart.work","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:chest_minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:cart.cargo","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:minecart","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1182,"preRequisites":[866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.gamma","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluid loader and unloder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you plan to automate the oil transport from your oil field far away, you need a fluid loader and unloader. A locking track will stop the train as long as oil is loaded or unloaded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.gamma","Count":1,"Damage":4,"OreDict":""},{"id":"Railcraft:machine.gamma","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.locking"},"Damage":20176,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":128,"Damage":5103,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"minecraft:rail","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1183,"preRequisites":[1181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:furnace_minecart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Locomotive 0.1 Alpha","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The furnace cart is a cheaper locomotive. Click with coal or charcoal on the cart and and it will start moving. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:furnace_minecart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:coal","Count":32,"Damage":1,"OreDict":""},{"id":"minecraft:coal","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1184,"preRequisites":[1183,65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.loco.steam.solid","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Steam Locomotive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The steam locomotive is much better than the furnace cart. You can control the speed and the direction the locomotive will move. You need to put water and coal inside to make steam to power the locomotive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.loco.steam.solid","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:coal","Count":64,"Damage":1,"OreDict":""},{"id":"Railcraft:cart.tank","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1185,"preRequisites":[1184,89],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.loco.electric","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric Locomotive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electric Locomotives are much better than steam ones. You need electric rail for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.loco.electric","Count":1,"tag":{"model":"railcraft:default"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":32,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1186,"preRequisites":[866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boost your speed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to not use a locomotive and drive with one or two carts only, you can use some booster tracks. Activate them with a lever or a redstone torch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:golden_rail","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:rail","Count":64,"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1187,"preRequisites":[866,77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad - high speed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you ever dream of driving in a railcart at high speeds? Well your dreams can come true with the high speed tracks. Be careful though; you need to lower the speed when your rails change direction or when the track ends."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.transition"},"Damage":26865,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed"},"Damage":816,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":3,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1188,"preRequisites":[866,1176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad - blast proof","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Railroads in the nether are dangerous. The reinforced tracks are blast proof. Hope you are blast proof too. \nYou can move 25% faster than with normal tracks.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.reinforced.boost"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.reinforced"},"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":4,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1189,"preRequisites":[77,866],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:track","Count":1,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The transcontinental railroad electrical","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electrical tracks are used together with your electrical locomotive. You need to power the rails with energy.\n\nNei not shows the right recipe on the first page. Switch a bit through the recipes to find the right one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":64,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.electric"},"Damage":0,"OreDict":""},{"id":"Railcraft:part.rail","Count":32,"Damage":5,"OreDict":""},{"id":"Railcraft:part.railbed","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1190,"preRequisites":[1189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.epsilon","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric feeder Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get your tracks electrified you need an electric feeding unit, shunting wires and some support frames. You can use an MFE or a transformer to get GT energy into the feeder unit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.epsilon","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.delta","Count":8,"Damage":0,"OreDict":""},{"id":"Railcraft:frame","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.buffer.stop"},"Damage":32363,"OreDict":""},{"id":"Railcraft:track","Count":2,"tag":{"track":"railcraft:track.gated.oneway"},"Damage":0,"OreDict":""},{"id":"minecraft:detector_rail","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1191,"preRequisites":[878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic \"Staffter\"","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It is also possible to create a bizarre hybrid of staff and scepter (sometimes called a \"staffter\"), by using a staff core instead of a wand core in the scepter recipe. The resulting device can neither hold a focus nor be placed in a crafting table, but it can still be used to activate constructs, or as a \"vis battery\" for Repair-enchanted equipment or Runic shielding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandRod","Count":1,"Damage":50,"OreDict":""},{"id":"Thaumcraft:WandCap","Count":3,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.fieryBlood","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27028,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"iron","rod":"greatwood_staff","sceptre":1,"AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":2,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1192,"preRequisites":[74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Aluminum berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few aluminum berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":4,"OreDict":""}]}]},{"questID":1193,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Gold berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few gold berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":1,"OreDict":""}]}]},{"questID":1194,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Iron berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few iron berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1195,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Copper berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few copper berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":2,"OreDict":""}]}]},{"questID":1196,"preRequisites":[76],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Tin berries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And a few tin berries for cash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:oreBerries","Count":10,"Damage":3,"OreDict":""}]}]},{"questID":1197,"preRequisites":[1213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1194,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lFusion reactor MK2 - bigger, better, fusor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have some europium, put it to use by making an mk2 reactor. This one will require the same block placement, but replacing LuV casings with fusion machine casings, superconducting coil blocks with fusion coil blocks, and using ZPM tier hatches. This reactor can handle recipes up to 320M eu startup. In addition, if you perform an mk1 recipe on an mk2, you will overclock it. Fusion overclocking is different than normal gt. It will take 2x the power, but the recipe will go 2x faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":47,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":67,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":57,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1194,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32091,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32607,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32616,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32636,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32646,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2311,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1198,"preRequisites":[1199],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1195,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lUpgrading the reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A mark 2 is nice, but why not make a mark 3? It will double the power needed per recipe, while cutting the processing time in half. This time you will need UV or above hatches, as well as Fusion machine casings MK2. This reactor is capable of doing all fusion recipes. Each energy hatch is capable of providng up to 8192eu/t, per energy hatch, for the recipe. The reactor can take as little as 8192eu/t to run. The UV hatch can accept up to 2 amps of 524288eu/t before it explodes, as usual."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":58,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":68,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":48,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":7,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":32,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1195,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32094,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32608,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32617,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32637,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32647,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2023,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1199,"preRequisites":[1197],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmetal1","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lMaking americium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Before you can upgrade your reactor, you will need to get some americium. The recipe will look pretty expensive, but once you made the next tier of reactor, you will unlock a simplier and cheaper one. You will need at least 128 plates for the reactor casings, 9 to scan for the recipe, and 4 to build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":141,"Damage":11078,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":141,"Damage":11030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal1","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":17103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32599,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1200,"preRequisites":[1212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1153,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lMaking power with your plasma","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a reactor, it's time to utilize it. The simplest plasma you can make for power is Helium plasma. It's renewable from water, but also provides a lot of power. However, you will need a way to convert the plasma into EU. To do this you will need a large plasma turbine. This will also need a dynamo hatch that can handle the power you're outputting. For Helium plasma, you will want a UV or above hatch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":18,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31325,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5204,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32090,"OreDict":"circuitUltimate"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":51,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":61,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":29,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1153,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32096,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32606,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2405,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1201,"preRequisites":[1200],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DraconiumAwakened","MaxDamage":19660800,"SecondaryMaterial":"DraconiumAwakened"}},"Damage":174,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lTurbine Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your fancy new Large Plasma Turbine will need a rotor to go inside of it. You can make it out of any gt material, but the best are trinium, awakened draconium and neutronium. Trinium will give you the most eu/t out of a single multiblock, with the best efficiency. Neutronium will give you the longest lasting turbine rotors with a lower efficiency, and less power per reactor. Awakened draconium will give you a balance between the two. You can make turbines in 4 different sizes. The larger the turbine the more eu/t it will produce. However, the largest turbine isn't also the most efficient. When using turbines be careful of flow rates. To find the optimal flow rate, you divide the optimal energy flow rate listen on the turbine, by the energy value for the plasma. Make sure to use a fluid regulator set to this flow rate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":196608000,"SecondaryMaterial":"Neutronium"}},"Damage":174,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11975,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1202,"preRequisites":[1198],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings4","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§e§d§n§o§r§l§d§lTime for another reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While one reactor is nice and all, why not make another? This time you can use the MK3 americium recipe to make it easier. "}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1203,"preRequisites":[1202],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§m§l§r§d§lMaking more americium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Costing just 1 ingot of Plutonium, and 2 buckets of hydrogen, this recipe is much easier and faster than the MK2 version. By making americium plasma, then putting it through a turbine, you will get americium in the liquid state. Again you will need at least 132 plates for the controller, and the fusion machine casings. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":11101,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":264,"Damage":30001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":132,"Damage":17103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":43,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32560,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32737,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1204,"preRequisites":[1],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCrafting time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's time to get yourself a 3x3 crafting area. Grab some flint and some wood, and build one!"}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:crafting_table","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:apple","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1205,"preRequisites":[44],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lHoppers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hoppers come in handy when you want to automate your machines. \nYou can input items via hoppers directly into GT pipes and you don't have to use a conveyor belt. \nHowever, the input rate is much slower, and the hopper must be beneath its source inventory."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:chocolatesprinklecakeItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1206,"preRequisites":[549,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Light Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some light fuel? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30740,"OreDict":""}]}]},{"questID":1207,"preRequisites":[552,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30741,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Heavy Fuel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some heavy fuel? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""}]}]},{"questID":1208,"preRequisites":[107,933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":45,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Power Solar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar or lava. If you are able to make solar panels you can power your cart with the sun."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":45,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":1,"Damage":44,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1209,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Digging","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to automate digging for ores ? A drill head made out of iron is the cheapest alternative."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"tag":{"Data":100},"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesCarts:ModuleComponents","Count":2,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1210,"preRequisites":[111],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":69,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: Thermal Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your cart needs power, obviously. A cart can be powered via coal, solar or lava. Why not power your cart with lava?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":69,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1211,"preRequisites":[110],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart modules: More Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you craft side chests you can add more different chests to the cart. Some sides are reserved for tools so no chest can be placed there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":3,"OreDict":""},{"id":"StevesCarts:CartModule","Count":1,"Damage":4,"OreDict":""},{"id":"StevesCarts:CartModule","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1212,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lStarting Fusion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that your power needs are increasing, you need a way to keep up with demand. To generate over 1A ZPM with a single machine you have two options: solars, and fusion. While solars are simpler to set up, solars cap out at 524288eu/t. Fusion can reach levels close to eight times that with the right setup. For your first reactor, you will need a controller, 2-16 fluid input hatches, 1-16 fluid output hatches, and 16 energy hatches. All hatches have to be LuV tier or better. Each hatch provides 2048eu/t for the recipe, and has a storage capacity of 160M eu. This means you can do any fusion recipe that takes less than 32768eu/t or less, and has a startup of 160M eu or less. Using more fluid hatches means you need less fusion casings. While this doesn't matter as much for the mk1 reactor, this principle helps tremendously with the high reactor tiers. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":56,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":66,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":46,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":32,"Damage":15,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":32,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32092,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32606,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":2403,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1213,"preRequisites":[1212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmetal3","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§d§lGetting europium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make an mk2 reactor, you will need europium. Once you make a t6 rocket you will be able to find this as an ore. Until then you need to produce it in the reactor. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":13,"Damage":11067,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmetal3","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17070,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32599,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1214,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Clockwork Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Producing RF Power by hand is a good idea for making one or two recipes in the Forestry machines. The turrets can be charged with it too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24304,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31304,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11310,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_torch","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1215,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bio Gas Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Producing RF Power with Lava is possible with the Biogas engine. You need Water, Seedoil, Milk, Sap Cresote or FR Biomass in the other slot. The engine outputs 50RF/t depends on the fluid you put in.\n\nFuel /Lava / Usage Energy Ticks\nWater Constant 10 RF/t 1000\nFruit Juice Startup/Restart Only 10 RF/t 2500\nLiquid Honey Startup/Restart Only 20 RF/t 2500\nMilk Constant 10 RF/t 10000\nSeed Oil Startup/Restart Only 30 RF/t 2500\nBiomass Startup/Restart Only 50 RF/t 2500"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24300,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31300,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:canSeedOil","Count":16,"Damage":0,"OreDict":""},{"id":"Railcraft:fluid.creosote.can","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:canLava","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:canBiomass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1216,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:engine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Peat fired Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Peat fired engines use Peat or Bituminous Peat to run. Peat burns for 5000 ticks and produces 10 RF every tick, 1 peat makes 0.66 Ash, so you get 2 Ash for burning 3 peat.\nBituminous Peat burns for 6000 ticks and produces 20 RF/tick.\n\nPeat Farms can be setup by using a managed farm with tin electron tubes. It is possible with a manual farm too."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":24032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31032,"OreDict":""},{"id":"Forestry:sturdyMachine","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":1,"Damage":0,"OreDict":"craftingPiston"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"Forestry:engine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:peat","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:bituminousPeat","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1217,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Copper, Tin, Bronze Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22035,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22057,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":22300,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":18,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":6,"Damage":0,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":6,"Damage":1,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":6,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:canBiomass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1218,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iron, Gold, Diamantine Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22032,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22086,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":3,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":4,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"Forestry:canSeedOil","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1219,"preRequisites":[581],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rubberised, Obsidian, Lapis Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22880,"OreDict":""},{"id":"dreamcraft:item.LongObsidianRod","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22526,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":8,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":6,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":11,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":4,"Damage":10,"OreDict":""},{"id":"minecraft:redstone_block","Count":7,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1220,"preRequisites":[1219,1218,1217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:thermionicTubes","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blaze, Endereyes, Emerald Tubes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Electron tubes are used to set farms to a special kind of crop and can be used in engines, alvearies and some crafting recipes.\n\nUse a soldering iron to attach an electron tube to a circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22801,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22533,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":22501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":26086,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":6,"Damage":19035,"OreDict":""},{"id":"minecraft:glass","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:thermionicTubes","Count":2,"Damage":7,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":12,"OreDict":""},{"id":"Forestry:thermionicTubes","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:thermionicTubes","Count":16,"Damage":10,"OreDict":""},{"id":"Forestry:canHoney","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":20,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestryI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1221,"preRequisites":[1018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1181,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAdvanced Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More advanced circuits require an MV circuit assembling machine. Let's make one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1181,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30718,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1222,"preRequisites":[1014],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1182,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lAdvanced Circuit Assembler II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your workstation circuits you can craft an HV circuit assembler. This is need for higher tier circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1182,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1223,"preRequisites":[1246],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lEV Circuits Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV circuit assembler requires IV Circuits to craft. With this assembler you can make a lot more high tier circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1224,"preRequisites":[1230,1228],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17470,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Epoxid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epoxid is needed for your advanced Circuits boards. You need Sodium Hydroxide, Epichlorohydrin and Bispenol A to make it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30648,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30669,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":4,"Damage":470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17470,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1225,"preRequisites":[1222],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lIV Circuit Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mainframes are the first IV Circuits you can make in HV. Used for EV and IV machines and components.\n\nIn addition, you will need 16 Capacitors, SMD or non-SMD.\n\nOnce you get a reliable polyethylene setup, it will save a lot of resources to use SMD components."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32704,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":12,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32033,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1226,"preRequisites":[845],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30629,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGlycerol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Glycerol becomes important in creating epoxid in the next tiers. It is important for TNT production too. It is left over when producing bio diesel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":30629,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1227,"preRequisites":[1021],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30683,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHCL","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"HCl becomes important for your epoxid production in HV/EV tier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30683,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1228,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30648,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEpichlorohydrin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epichlorohydrin is another product needed in your epoxid production. By now you should be experienced enough to figure out which path is best for your setup using NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30648,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1229,"preRequisites":[176,552],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30687,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPhenol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The easiest way is to get phenol out of heavy fuel. There are other ways, like getting it out of wood tar from a pyrolyse oven, isopropylbenzene and oxygen, or chlorobenzene and water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30741,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1230,"preRequisites":[552,1229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30669,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBisphenol A","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Bisphenol A you need to combine Phenol, Acetone and HCl in a chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30672,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30669,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32106,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1231,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lYou gonna hate this 1-4 in HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor Belts and robot arms are the most needed machine parts in HV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32642,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32632,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32652,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1232,"preRequisites":[1231,1233],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32692,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lYou gonna hate this 5 and 6 in HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32682,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32692,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11054,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1233,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEnder Eyes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ender eyes are available at HV in the chemical reactor. Combine some ender pearls with blaze powder."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:blaze_powder","Count":1,"Damage":0,"OreDict":"itemBlazePowder"},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1234,"preRequisites":[1020,1224,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEmpty Expoxid Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Epoxid circuit boards require epoxid plate, gold foil and sulfuric acid to make an empty board. By adding electrum foil and Iron(III) Chloride or Sodium Persulfate you can craft an epoxid or advanced circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17470,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32711,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17470,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1235,"preRequisites":[1013,1221,1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMicroprocessor LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Microprocessor is the most highest tier way to craft an LV circuit, but you get 2 per recipe. It requires plastic board, a cleanroom, a cpu and a few smd components."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":19035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1236,"preRequisites":[1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":253,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lCutting Machine HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nor, nand and other high tier chips require an HV cutting machine. This machine is also needed for cutting glowstone doped wafers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":253,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1237,"preRequisites":[746,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32031,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lGlowstone Doped Monocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make more advanced wafers, you need to make glowstone dopped monocrystalline silicon first. The process takes 600 seconds and requires silicon dust and glowstone dust in the electric blast furnace. You can make 32 wafers out of every boule.\n\nUnfortunately, these boules seem to require higher heat than cupronickel coils can produce. You'll need to go to Multiblock Goals and get a cleanroom, vacuum freezer, and kanthal coils in order to make them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2020,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32031,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1238,"preRequisites":[1237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32034,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lGlowstone Doped Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some glowstone doped silicon wafers, place the monocrystalline glowstone doped silicon boule in a cutting machine. An HV version of the cutting machine is needed for future wafers and chips.\n\nYou will need to cut these wafers in a cleanroom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32034,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1239,"preRequisites":[1238,1236,772],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNor and Nand chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The data stick requires nand chips. Nor chips are needed for more advanced circuits. You can get these by cutting nand and nor wafers.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32042,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32040,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32041,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24533,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1240,"preRequisites":[1239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Data Sticks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Data sticks are very important for seismic prospecting and for the assembly line in the LuV age. Go and craft a few data sticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32045,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1241,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRadon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Radon is used for quantum eyes, quantum stars and emitters and sensors in the EV machines. Try to find a Pitchblende vein first and/or recycle your plutonium and uranium from your reactor.\n\n§4This Vein can be found on Mars and Phobos."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11100,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1242,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1183,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lEV Chemical reactor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV chemical reactor is required to get some indium or make your radon production much faster. If you already made a large chemical reactor use that instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":424,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"minecraft:ender_eye","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1243,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4873,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPitchblende","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In order to try running your nuclear reactor you need some uranium or plutonium fuel. Go and find a pitchblende vein on Mars at Y 30-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4873,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4922,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1244,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lScheelite, Tungstate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is the material you need but first go find some scheelite and tungstate mix on Mars. Look at Y 20-60."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4006,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1245,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§f§a§lYou gonna hate this 1-4 in EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in EV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32613,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32643,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32633,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1246,"preRequisites":[1245,1247],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32693,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lYou gonna hate this 5 and 6 in EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32683,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32693,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1247,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32724,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lQuantum Eye","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantum eyes are required in EV emitters and sensors. Just infuse your ender eye with radon to get one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:ender_eye","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32724,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1248,"preRequisites":[1223,1249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are three variants of advanced circuits. The advanced electronic circuit, the processor assembly and the nanoprocessor. The Nanoprocessor needs an EV circuit assembling machine to be made. Use your epoxid boards for it.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32011,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32016,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1249,"preRequisites":[1234,1018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32045,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano CPU Wafer and Chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Nano CPU Wafer is made out of a CPU Wafer with carbon fiber and molten glowstone in an EV chemical reactor. Cut it for nano CPU chips.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32055,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glowstone_dust","Count":32,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonFibre","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1250,"preRequisites":[1248],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32083,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor Array","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano processor array is an EV circuit. \nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32082,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32083,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32018,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1251,"preRequisites":[1250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32084,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lElite Nano Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The elite nano computer is an IV circuit.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32083,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32084,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1252,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":543,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lHV Chemical Bath","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV chemical bath or better is needed for the quantum eye."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":543,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1253,"preRequisites":[1319],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":37,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second largest storage component, used to make 16k ME storage cell, or can be upgraded to make 64k ME storage component. Can be recovered from a crafted 16k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":37,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1254,"preRequisites":[1318,1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"16k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 16,384 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1255,"preRequisites":[180,1256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Highest tier storage cell, which can contain 65,536 bytes of storage. 65,536 bytes of storage can hold 8,128 stacks of a single item, or 4,160 stacks, while holding 63 different items. The 64k storage cell uses 512 bytes of data to store a single type. When placed inside a drive or chest will consume 2.0 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 64k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1256,"preRequisites":[1253],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":38,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Largest storage component, used to make 64k ME storage cell. Can be recovered from a crafted 64k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":38,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1257,"preRequisites":[1254,1256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"64k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 65,536 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":4,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1258,"preRequisites":[1298],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":42,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wireless Booster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The wireless booster is used to increase the range of the ME wireless access point."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:ender_eye","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1259,"preRequisites":[1306],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Filling Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Export bus for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1260,"preRequisites":[1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingMonitor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crafting Monitor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which displays the top level job and its current progress so you can monitor at a glance how your crafting jobs are progressing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingMonitor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1261,"preRequisites":[1251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32706,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNano Processor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The nano processor mainframe is the cheapest LuV Circuit.\nA cleanroom is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32084,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32706,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32011,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1262,"preRequisites":[206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":184,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBattery Buffer x9","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"EV battery buffer for up to nine batteries."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":184,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1263,"preRequisites":[1262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11349,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBlue Steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your sunnarium batteries are made out of blue steel: a mixture of steel, black steel, brass and rose gold."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2334,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2351,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11349,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17874,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1264,"preRequisites":[1263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32540,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV Sunnarium Battery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your first EV sunnarium battery used in EV tier. You make it with the sunnarium you generated before."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32503,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2318,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32540,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32540,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1586,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1265,"preRequisites":[1262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:MU-metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32054,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV GT++ Batteries","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A cheaper variant is the GT++ EV battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32538,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1428,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:MU-metaitem.01","Count":1,"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"miscutils:MU-metaitem.01","Count":1,"tag":{"GT.ItemCharge":6400000},"Damage":32054,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2006,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1426,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1266,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":21,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lLow Voltage Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's possible to run MV machines while still in LV age. Build a transformer and use 4 power sources 32 eu/t to power one 128 eu/t machine. You can change the mode of a transformer with a soft mallet. If the transformer is wired and loaded then DO NOT change the mode otherwise there probably will be a big explosion. Be careful when switching directions - better to break and replace than rotate with the wrench and blow up a line of machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":21,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1267,"preRequisites":[1266,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMedium Voltage Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's possible to run HV machines while still in MV age. Build a transformer and use 4 power sources 128 eu/t to power one 512 eu/t machine. You can change the mode of a transformer with a soft mallet. If the transformer is wired and loaded then DO NOT change the mode otherwise there probably will be a big explosion."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1268,"preRequisites":[1267],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":878,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLV High-Amp Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need a transformer with more than 4 amperes you need a high amp transformer. You can input four 128 eu/t power sources and output 16 ampere at 32 eu/t.\nModes can be changed with a soft mallet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":878,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1269,"preRequisites":[1268],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12001,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLow Voltage Power Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need even more amps then craft a power tranformer with a max LV output of 64 amps. You can input sixteen 128 eu/t power sources and output 64 amps at 32 eu/t. Modes can be changed with a soft mallet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12001,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1270,"preRequisites":[724,1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:itemSpade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Time for a Spade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having a Weeding Trowel, Hoe and Shovel in your Inventory is painful when dealing with crops. Get the Spade - it combines these items, is unbreakable, and increases the chance of getting seeds from plants.\n\nBe careful! Right-clicking on a plant pulls it for seeds. Make sure to switch to Sense or your open hand to harvest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:itemSpade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"White Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Nether Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Black Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Red Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Gray Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Yellow Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Goldfish Plant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}]}]},{"questID":1271,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":283,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lExtruder HV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV Extruder is needed to extrude tough metals like Tungstensteel and HSS."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":283,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":"circuitAdvanced"}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1272,"preRequisites":[634,1273],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32115,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wheaty juice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The first step to brew beer or other alcoholic fluids is wheaty juice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32115,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1273,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":491,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBrewing, the Industrial Way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want brews or alcohol, I recommend you to build one of these. You might have noticed that you cannot build a brewing stand without Thaumcraft. But fear not, you can still find them in chests. Better get searching..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":491,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1274,"preRequisites":[1273,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":501,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFerment your brew!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What's better than lame brews? Alcoholic brews! Get one of these to make beer, rum or even vodka."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":501,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"berriespp:BppPotions","Count":4,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1275,"preRequisites":[1278],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fake Jagermeister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jagermeister is a common drink in Germany, why don't you grab a bottle? This one seems to be a cheap fake tho..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:BppPotions","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":30,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1276,"preRequisites":[1272,547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Korn and Doppelkorn","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Korn is german for wheat. That's why this special alcoholic brew is named like this. Doppelkorn means double-wheat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:BppPotions","Count":1,"Damage":1,"OreDict":""},{"id":"berriespp:BppPotions","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1277,"preRequisites":[19],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:reeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sugarcanes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcanes are a source of sugar, and therefore alcohol. If you want some rum or sugar, you'll need these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:reeds","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1278,"preRequisites":[1272,893],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vodka","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vodka is Russian for \"small Water\". It is a rather high proof alcoholic fluid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":1279,"preRequisites":[1090,931],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2347,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFirestone Ore/Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Firestone ore is handy for some base building machines. Unforunately, it's in the nether...at the bottom of the lava ocean! Here are some tips for finding it\n\nFirestone can be mined with the GT miners, if you place it within range.\nFirestone only spawns in deep lava, at least 6 deep. It will only replace netherrack, so a fjord filled with soulsand won't have any. Can you think of ways to check the lava depth, and what's down there?\nNormally you can't see through lava, but if you enable nightvision on the nanosuit, you can see a short distance at the bottom. But how to prevent getting burned?\nAlternatively, if you keep your head at just the correct height above the lava and at the correct angle, you'll be able to see underneath it - surely there must be a hovering jetpack?\nFirestone ore and products will cause random fires to start nearby, so get it into a backpack quickly!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2347,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2347,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1280,"preRequisites":[1277,1274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:BppPotions","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The industrial way","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Making rum can be automated, but you need to follow this industrial way for it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32109,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"potion.freed","Amount":1000}],"ignoreNBT":0,"index":1,"consume":0,"taskID":"bq_standard:fluid"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"potion.swhine","Amount":1000}],"ignoreNBT":0,"index":2,"consume":0,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1281,"preRequisites":[1280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rum. Yummy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""},{"id":"dreamcraft:item.CoinCookI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1282,"preRequisites":[1277,1283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sugar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"The gathering: Sugar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stockpiling sugar might be a good idea if you have a sweet tooth. Or not?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sugar","Count":256,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:caramelappleItem","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCook","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1283,"preRequisites":[502,994,1284],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:jarFilled","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Honey for sugar.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since honey contains a lot of sugar, it might be a good idea to get some honey."}},"tasks":[{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"for.honey","Amount":1000}],"ignoreNBT":0,"index":0,"consume":0,"taskID":"bq_standard:fluid"},{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"honey","Amount":1000}],"ignoreNBT":0,"index":1,"consume":1,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:honeyedSlice","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1284,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:hive","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wasps honey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Giant wasps can be found in the Nether. Quick! Sneak into their hive and steal some honey!"}},"tasks":[{"autoConsume":0,"groupDetect":0,"requiredFluids":[{"FluidName":"honey","Amount":5000}],"ignoreNBT":0,"index":0,"consume":0,"taskID":"bq_standard:fluid"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":1,"OreDict":""}]}]},{"questID":1285,"preRequisites":[495,98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:spike_base_diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lDiamond Spikes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond Spike damages mobs that touch any side of it other than the bottom. With +7 attack damage, the Spike does as much damage as a Diamond Sword. Mobs will not walk around the block, but will try to walk over it as if it were a regular solid block. Most explosions won't destroy the Spike because it has a very high blast resistance.\n\nThese can also be enchanted with all the enchantments a regular diamond sword would receive. This includes Looting and Sharpness, which function exactly as it does on a sword. Interestingly, mobs killed by the Diamond Spike will return experience as if killed by the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17500,"OreDict":""},{"id":"minecraft:diamond_block","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:diamond_sword","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:spike_base_diamond","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:epicbaconItem","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:diamond","Count":9,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1286,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Primal Shrooms","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Primal shrooms allow you to refill wands easier before you can move nodes to your base.\nGo and find some in a magical forest biome. Try using a Nature's Compass. Or buy some if no biome is close to your location.\n2 pumpkins and 4 entropy slivers are the perfect combo to make these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"thaumicbases:ashroom","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""},{"id":"minecraft:nether_wart","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1287,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Vish Shroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magic mushrooms whoooo!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinDarkWizard","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":5,"Damage":5,"OreDict":""}]}]},{"questID":1288,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemHops","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hops, the source of beer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you don't want pure alcohol, but beer, get some hops by crossbreeding IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemHops","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinFarmerI","Count":6,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1289,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":223,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lHV Bender","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV Bender is going to be 4x faster than your LV Bender, but it also opens up an important recipe - Tin cans! \n\nWith this bender you can turn Tin Casings into Tin Cans. Using the Tin Cans with food in a Canner (LV is fine) will make Canned Food. This can stack up to 64, and will fully restore your shanks - no need to rotate food types any more! You will eat as much as you need with one click. One drawback is you will no longer get the Well Fed buff with its slight health regen bonus. Also, these cans don't fit in the lunch bag or lunch box so you don't need those any more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":223,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemTinCanFilled","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1290,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Imma chargin' my...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Charged certus quartz is one of the basic components for a lot of AE recipes. Just mix some certus quartz and redstone dust to get charged certus quartz dust.\nUse the autoclave to make crystals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:redstone","Count":32,"Damage":0,"OreDict":"dustRedstone"},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2516,"OreDict":"dustCertusQuartz"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":32,"Damage":1516,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":810,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1291,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockEnergyCell","Count":1,"tag":{"internalMaxPower":200000,"internalCurrentPower":200000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping your Network Happy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Helps with fluctuating power. Energy cells store up to 200,000 AE. They do not accept power directly but are used to buffer some power in an already existing ME network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockEnergyCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":9,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1292,"preRequisites":[184,183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockDrive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Storing your ME data","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A block designed to do one thing, store storage cells. This block holds 10 storage cells so you can tightly pack your storage into a very small space. ME drives show their contents and the storage cell status on the front of the drive face. Red - Indicates the storage cell is full. Orange - Indicates the storage cell cannot hold any more types, but it can store more items. Green - Indicates the cell can hold more types, or more items. Black - Indicates there is no channel, or power is offline. It's important to note, that without an ME Network this block does nothing. It's only useful when combined with a way to input, and output items, and requires 2 AE/t power to function, and additional power for each storage cell stored inside it. The ME drive requires a channel to function."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockDrive","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1293,"preRequisites":[1292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:hardmedrive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Safety first!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This storage cell housing is blast proof and stores only 3 cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:hardmedrive","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1294,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockQuartzGrowthAccelerator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speeding up growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Used to accelerate the process of purifying crystals, which allows you to create pure certus quartz crystal, pure nether quartz crystal and pure fluix crystal. Must be powered by an ME Network via the top or bottom, and consumes a steady 8 ae/t while plugged in. Crystal Seeds must be in an adjacent water block to be affected - the seeds will shimmer more rapidly when in the presence of a powered crystal growth accelerator. Can only connect to cables, or other networked machines on the top and bottom of the machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockQuartzGrowthAccelerator","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":1200},"Damage":1200,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1295,"preRequisites":[1294],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ae2stuff:Grower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Perfecting Crystal Growth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The crystal growth chamber is used for fast crystal growth, and it is possible to increase its speed by installing an acceleration card in an upgrade slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ae2stuff:Grower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":64,"tag":{"progress":1200},"Damage":1200,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1296,"preRequisites":[181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purifying the impure","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Purified versions of nether, certus and fluix crystals"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sand","Count":48,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2522,"OreDict":"dustNetherQuartz"},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2516,"OreDict":"dustCertusQuartz"},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":8,"OreDict":"dustFluix"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":600},"Damage":600,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":0},"Damage":0,"OreDict":""},{"id":"appliedenergistics2:item.ItemCrystalSeed","Count":32,"tag":{"progress":1200},"Damage":1200,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":10,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":8523,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1297,"preRequisites":[400],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"HardcoreEnderExpansion:essence","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Dragon essense","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need some Dragon essense? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1298,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockSecurity","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wireless Setup","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Allows you to configure which users, and what permissions the users have with the ME System. By existing it enforces permissions on the usage of the system.\n\nThe security system does not prevent destructive tampering, removing cables / machines or breaking of drives. If you need to protect your system from physical vandalism you will need another form of physical security. This block provides network level security.\n\nThe player who places the ME security terminal has full control over the network and cannot exclude himself any rights. By adding a blank biometric card you define a default behavior for every player who has no biometric card registered.\n\nIn addition to security on the software layer, you can link up your wireless terminal with the network and access it wirelessly.\n\n\nAllows wireless access via a wireless terminal. Range and power usage is determined based on the number of wireless boosters installed into the ME wireless access point. A network can have any number of ME wireless access point with any number of wireless boosters in each one, allowing you to optimize power usage and range by altering your setup. Requires a channel to be operational."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockSecurity","Count":1,"Damage":0,"OreDict":""},{"id":"appliedenergistics2:tile.BlockWireless","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":32,"Damage":140,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":{}}]},{"questID":1299,"preRequisites":[1291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockDenseEnergyCell","Count":1,"tag":{"internalMaxPower":1600000,"internalCurrentPower":1600000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense boys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Giving your network even more stability. Dense energy cells store AE energy up to 1.6 million units. They do not accept power directly but are used to buffer power in an already existing ME Network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockDenseEnergyCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1300,"preRequisites":[1298,1299],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ToolWirelessTerminal","Count":1,"tag":{"internalMaxPower":1600000,"internalCurrentPower":1600000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME in the Ether","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you linked up the wireless terminal in the ME security terminal, it grants a portable access to the ME network. Put it into a charger to recharge it.\n\nHolds 1.6m AE in its battery and drains 1 AE/t for each block you are away from the nearest ME wireless access point."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ToolWirelessTerminal","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1301,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Annihilation and Formation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Formation Core - a component which can convert energy back into matter.\nAnnihilation Core - a component which can convert matter into energy.\nGates all network I/O."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":44,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":1,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1302,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":440,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Machines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME Interface is the only component which can be used as a part, or as a Block. Crafting an ME interface in either form by itself produces the other form. The thin form is useful if you want to provide several different interfaces in a single block of physical space, but each will need its own channel. The block form lets multiple other blocks connect to a single ME interface, using only one channel for the interface. The ME Interface acts as an in between when working with pipes, tubes, networks, or machines from other mods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":440,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1303,"preRequisites":[1302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":220,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Inventories","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME storage bus, when attached to another inventory block in the world lets you access that inventory via networked functions. This allows you to use chests, barrels, or other types of item storage in your networks.\n\nThe storage via the ME storage bus is bi-directional, it can both insert, or extract items from the inventory block it is attached to as long as the ME storage bus has its required channel.\n\nThe UI allows you to control which items are selected as storable items, this selection has no effect on what items can be extracted once they are in the storage.\n\nThe storage bus will function with nearly any inventory block, including ME Interface, Minefactory Reloaded DSUs, Factorization barrels, JABBA Barrels, and Better Storage crates. They can also be used to route items passively into Buildcraft pipes.\n\nIf you place a storage bus on an ME Interface the storage bus will be able to interact with the full conents of the target network, unless that interface is configured to store items inside itself, in which case it will see those stored items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":220,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11085,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1304,"preRequisites":[1303],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interfacing with Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Storage bus for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1305,"preRequisites":[1302],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"For Fluid Recipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ME interface for fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1306,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":260,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Extracting Items From the Network","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME export bus extracts items from the ME network's networked storage and places them into the inventory it faces. You must configure which items it will insert, leaving the configuration blank will result in nothing. The ME export bus will try to export any of the items on its list skipping over those it cannot fit into the destination. The ME export bus requires a channel to function. This is the functional opposite of the ME import bus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":260,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":36,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiPart","Count":16,"Damage":16,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1307,"preRequisites":[1297],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Dragon essense II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need some Dragon essense? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":320,"Damage":0,"OreDict":""}]}]},{"questID":1308,"preRequisites":[1301],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":240,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inserting Items Into the Network","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pulls items from the inventory it is pointed at and places them into the ME network's networked storage. You can specify which items it will pull out via the UI, else it tries to pull out any item in the adjacent inventory. The ME import bus will attempt to import any possible options, even if 1 or more of the configured items cannot be stored. The ME import bus requires a channel to function. This is the functional opposite of the ME export bus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":240,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1309,"preRequisites":[1308],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Emptying Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Import Bus for Fluids only."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17526,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1310,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":39,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Something to put your Components in","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An empty storage container, you can insert any of the various storage cell parts into it to create a usable storage cell."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":39,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1311,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1 Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main processor for 1K and 4K cells.\n\nAs alternatives to storing items in ME, you can use a storage bus connected to other blocks. A common tactic is to connect to a bank of Compressed Chests or even a Drawer Controller in this way. This can help reduce the power requirements in your AE system."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":22,"OreDict":""},{"id":"dreamcraft:item.GoldCoreChip","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1312,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Automating Crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Is a component of the crafting CPU. This particular block provides the CPU with no additional features, but can be used as a \"filler\" block and as a crafting ingredient for the crafting storage, monitor and co-processing units."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":32,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1313,"preRequisites":[1314,1310],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.1k","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lowest tier storage cell, which can contain 1,024 bytes of storage. 1,024 bytes of storage can hold 127 stacks of a single item, or 65 stacks, while holding 63 different items. The 1k storage cell uses 8 bytes of data to store a single type. When placed inside a drive or chest will consume 0.5 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 1k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand. The settings can be changed in the cell workbench."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.1k","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1314,"preRequisites":[1311],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":35,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smallest storage component, used to make 1k ME storage cell, or can be upgraded to make 4k ME storage component. Can be recovered from a crafted 1k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1315,"preRequisites":[1314,1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"1k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 1024 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1316,"preRequisites":[1317,1313],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.4k","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Item Storage Cell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second tier storage cell, which can contain 4,096 bytes of storage. 4,096 bytes of storage can hold 508 stacks of a single item, or 260 stacks, while holding 63 different items. The 4k storage cell uses 32 bytes of data to store a single type. When placed inside a drive or chest will consume 1.0 ae/t. Must be in an ME drive or ME chest to be usable. You can remove the 4k ME storage component by fully emptying the storage cell, and sneak clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemBasicStorageCell.4k","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1317,"preRequisites":[1314],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Component","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Second smallest storage component, used to make 4k ME storage cell, or can be upgraded to make 16k ME storage component. Can be recovered from a crafted 4k ME storage cell by fully emptying the storage cell, and shift clicking it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.ChargedCertusQuartzDust","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1318,"preRequisites":[1317,1315],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4k Crafting Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides 4,096 bytes of storage for crafting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingStorage","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":4,"Damage":39,"OreDict":""},{"id":"dreamcraft:item.LogicProcessorItemGoldCore","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1319,"preRequisites":[1317],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Storage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The main processor for 16k and 64k cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EngineeringProcessorItemDiamondCore","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":24,"OreDict":""},{"id":"dreamcraft:item.DiamondCoreChip","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1320,"preRequisites":[731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":242,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Compressor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV compressor is twice as fast as the LV one but uses 4x the power. I suggest crafting 4 MV compressors for the new biomass processing line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":242,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1321,"preRequisites":[732],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":302,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Macerator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV macerator is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":302,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1322,"preRequisites":[732],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":362,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAdvanced Centrifuge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV centrifuge is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":362,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1323,"preRequisites":[733,734,735],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellEmpty","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§5§6§lBiomass","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chose the IC2 or the gregtech way to make biomass. Water and BioChaff is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1324,"preRequisites":[848,717,1544],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":512,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAdvanced Fluid Extractor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The MV fluid extractor is twice as fast as the LV one but uses 4x the power."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":512,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1325,"preRequisites":[409],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"AWWayofTime:daggerOfSacrifice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dagger of Sacrifice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to get more blood. Mobs are a good source for more blood. Transform your knife of sacrifice in your tier 2 altar into a dagger of sacrifice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AWWayofTime:daggerOfSacrifice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":16,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinBloodII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1326,"preRequisites":[1312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Co-Processing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Component of the crafting CPU which provides additional item delivery from the CPU to the ME Interface for crafting.\n\nThis can be used to make more assemblers active in parallel for the job, and thus increase overall crafting speed. These only help if your setup has steps properly separated so the system can run multiple tasks in parallel, or even split the same pattern across multiple interfaces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockCraftingUnit","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1327,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":52,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Recipe Patterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A blank pattern, once encoded as an encoded pattern, is used to control crafting by inserting them into molecular assemblers and ME interfaces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":16,"Damage":52,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17811,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11019,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1328,"preRequisites":[1327],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pattern Terminal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A specialized version of the ME crafting terminal designed to encode blank patterns into encoded patterns.\n\nLets you browse the contents of your network like other terminals, but also contains an area for designing patterns. There are two modes for pattern encoding. Crafting patterns, and processing patterns. Processing patterns are designed for use with machines that do not use standard crafting recipes - such as furnaces, or other machines. To select between modes, click the button to the right of the interface: when it shows a standard crafting table, it will create crafting patterns, and when it shows a furnace, it will create processing patterns.\n\nFor crafting patterns (\"Crafts...\"), you specify the input crafting materials on a standard 3x3 crafting grid, and the output materials are determined automatically.\n\nFor processing patterns (\"Creates...\"), you specify the input materials and output materials, including quantity, by placing stacks of items in the interface. If a processing operation is not guaranteed to succeed (such as secondary products from some machines), it will not work correctly as a processing pattern.\n\nWhen designing crafting patterns you can click the output to extract a crafted item as long as you have the materials required to craft the item.\nDon't forget to enable oredict substitution where needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":340,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17522,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17516,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1329,"preRequisites":[1300],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ae2stuff:Wireless","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME in your Cleanroom","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wireless connector is a close range quantum bridge alternative.\nConnections are point-to-point - you can't connect more than 2 blocks together. Each block will use 10 + distance^2 AE/t. Does not work across dimensions. Power needs to be provided on only one side. Up to 32 channels can be transferred through the connection. Can connect directly to dense cables. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ae2stuff:WirelessKit","Count":1,"Damage":0,"OreDict":""},{"id":"ae2stuff:Wireless","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":10,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":11,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":64,"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1330,"preRequisites":[1306],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"extracells:part.base","Count":1,"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ore Dictionary Output","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ME ore dictionary export bus will attempt to push the configured item/fluid [From the same ore dictionary] from the ME network into a machine or other input inventory. To configure an item/liquid, type in the item's name [e.g. if you want to export all ores put \"ore*\"]. The rate of export is very fast."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"extracells:part.base","Count":2,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":22,"OreDict":""},{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1331,"preRequisites":[203],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ToolMemoryCard","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"To Link P2P Busses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A small item, that can be used to store, copy, and paste settings. Shift + right click on a configurable object to save the settings onto the memory card, then right click on any other block of the same type to paste the settings. They are also used to link the input P2P tunnel to the corresponding output P2P tunnels."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ToolMemoryCard","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":38,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1332,"preRequisites":[237,935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Solar LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The power of the sun x10. This solar panel works like 10 regular ones, but costs only 9. How is this possible? Magic! NOTE: They give out GT EU. NO TRANSFORMER NEEDED!"}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockGenerator","Count":8,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.ReinforcedAluminiumIronPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1333,"preRequisites":[240,238,88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Potentia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aren't you tired of voiding all that useless potentia essentia? Well here's the solution:\nA generator that consumes potentia and outputs GT EU NO TRANSFORMER NEEDED!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"potentia"}]},"Damage":1,"OreDict":""},{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemAdvBat","Count":3,"Damage":26,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32681,"OreDict":""}]}]},{"questID":1334,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Auram","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Generator is quite tricky. It requires Auram Essentia, that isn't that common, but its output is nice."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"auram"}]},"Damage":1,"OreDict":""}]}]},{"questID":1335,"preRequisites":[241,1332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"OR","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infused Solars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Compressed Solar Panels can be infused with Aspects for certain additional features. Check them out and choose one of them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Thaumcraft:ItemEssence","Count":64,"Damage":0,"OreDict":""},{"id":"Thaumcraft:BlockJarFilledItem","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1336,"preRequisites":[1332,261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double Compressed Solar","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"100EU/t for 72x1EU/t Solars? Sounds like a good deal. Get one of these. They can be Infused as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockGenerator","Count":5,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""}]}]},{"questID":1337,"preRequisites":[1335,1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Even more Infused","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can infuse double or triple compressed solars as well."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1338,"preRequisites":[1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTSolars","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Full power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Triple Compressed Solars. Yes, that's right. They are a bit more expensive than their lower counterparts, 576 Solars in total. But they give out 1,000 GT EU per tick and have no need to be cleaned. How so? Magic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTSolars","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"EMT:EMTSolars","Count":1,"Damage":4,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":10,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":13,"OreDict":""},{"id":"EMT:EMTSolars","Count":1,"Damage":7,"OreDict":""},{"id":"EMT:EMTSolars2","Count":1,"Damage":0,"OreDict":""},{"id":"EMT:EMTSolars2","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1339,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So, you got rid of the Potentia, maybe you don't want Ignis, but Potentia? Get this one to be able to burn Ignis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"ignis"}]},"Damage":1,"OreDict":""}]}]},{"questID":1340,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Arbor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When using magical plants to get Praecantatio Essentia, you'll end up with a couple dozen of Arbor Essentia jars. But no worries! This generator runs on Arbor! Awesome!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"arbor"}]},"Damage":1,"OreDict":""}]}]},{"questID":1341,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcanes to power...? This generator runs on Aer Essentia, it might not be as powerful as it's counterparts, but it's fuel is cheap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"aer"}]},"Damage":1,"OreDict":""}]}]},{"questID":1342,"preRequisites":[1333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EssentiaGenerators","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Essentia Generator: Lucrum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This highly-warped, high-power Essentia generator is a lifesaver, when you run out of energy. Just toss some gold into your Arcane Furnace and burn the Lucrum you get."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EssentiaGenerators","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":4,"OreDict":""},{"id":"Thaumcraft:ItemEssence","Count":8,"tag":{"Aspects":[{"amount":8,"key":"lucrum"}]},"Damage":1,"OreDict":""}]}]},{"questID":1343,"preRequisites":[645,230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:FeatherWing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Works like in anime!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You want to fly. Badly. So go and ductape wings!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:FeatherWing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1344,"preRequisites":[1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ThaumiumWing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since you have access to better materials than cardboard now, you wanted to make wings. Angel wings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ThaumiumWing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1345,"preRequisites":[1344,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanosuitWing","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Secret-Angel-Assasin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Infusing your Wings with Nano-Technologies seems to be the next step, to further improve them and combine magic and technology."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanosuitWing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCarbonPlate","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1346,"preRequisites":[1364],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dropped in Asgard, fallen to earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You've heared rumors of a mighty weapon, dropped in Asgard and fallen to earth. Could this be the mystical Item?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1347,"preRequisites":[1346,1361,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:Mjolnir","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Repaired it!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sadly enough, the hammer was broken. But you have the skills and the knowledge to repair it, don't you?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":2,"Damage":6,"OreDict":""},{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemSwordElemental","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemBatCrystal","Count":2,"Damage":26,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17880,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EMT:Mjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1348,"preRequisites":[1347],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:SuperchargedMjolnir","Count":1,"tag":{"charge":2000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Super-Mjollnir","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Addidional tweaks to your Mjollnir have changed it. Now you can summon Guardian Snowman to help you out!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:SuperchargedMjolnir","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":12,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1349,"preRequisites":[226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricGogglesRevealing","Count":1,"tag":{"charge":100000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electrogoggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you wander with your Goggles of Revealing you noticed that they tend to break easy. So craft yourself some electric ones that just need to be charged again!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricGogglesRevealing","Count":1,"Damage":165,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1350,"preRequisites":[1349,779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanosuitGogglesRevealing","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nano Goggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The #1 product for spies and wanna-be-spies. Nano-Goggles. Don't you want one of these too? But they are sold out? Craft some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanosuitGogglesRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1351,"preRequisites":[1350,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumGogglesRevealing","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Goggles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As you continue to progress, you notice that your black goggles don't match your nice white and shiny armor. You decide to get a pair of white ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumGogglesRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":5,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1352,"preRequisites":[1351,1336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:SolarHelmetRevealing","Count":1,"tag":{"charge":20000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Goggles > 9000","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This special pair of goggles recharges itself while you wander in sunlight. How convinient."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:SolarHelmetRevealing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":1353,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:electricCloud","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sparking Nitor...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"YELLOW! What an ugly color! I want PURPLE Nitor! Get me some and you'll receive something nice in exchange."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"EMT:electricCloud","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCandle","Count":16,"Damage":10,"OreDict":""},{"id":"Thaumcraft:blockWoodenDevice","Count":4,"tag":{"color":10},"Damage":8,"OreDict":""},{"id":"TConstruct:slime.gel","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1354,"preRequisites":[1096,789],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricScribingTools","Count":1,"tag":{"charge":400},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rechargeable Scribing Tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Are you tired of getting all the Ink for your scribing and you don't want to use your blood either? Get this Hi-Tech Scribing Device which will make your life much easier! Treat it like an LV machine - charge in any LV machine's battery slot, or in an LV battery buffer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricScribingTools","Count":1,"Damage":400,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemBatCrystal","Count":1,"Damage":26,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemInkwell","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1355,"preRequisites":[1345,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumWing","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings - Ultra Force!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"From ore to ingot, from nano to quantum, as you progress, your technology level increases, so should your wings as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumWing","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"IC2:itemOreIridium","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1356,"preRequisites":[1355,803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:itemArmorQuantumChestplate","Count":1,"tag":{"charge":20000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Angel Wings - Combine!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last step is to combine the quantum armor with your quantum wings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:itemArmorQuantumChestplate","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":12,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1357,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricHoeGrowth","Count":1,"tag":{"charge":200000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electric Hoe-ing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the Hoe of Growth breaks easily, we have a fix for you! Get this one and simply recharge it, when it's empty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricHoeGrowth","Count":1,"Damage":1561,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1358,"preRequisites":[1333,215,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTMachines","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"EU->VIS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This device allows you to charge your wands using EU, but it costs 10kEU per Vis restored."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTMachines","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:WandRod","Count":1,"Damage":52,"OreDict":""}]}]},{"questID":1359,"preRequisites":[238,79],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ShieldFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Press and hold the B button to block!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This Focus allows you to block any incoming damage. Sneak away if you're fighting an enemy too strong for you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ShieldFocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1360,"preRequisites":[1359],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ShieldBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reactor Shielding 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Shield Blocks - explosion proof - single use. Get a couple of these to shield your reactor!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ShieldBlock","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemOreIridium","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1361,"preRequisites":[1365],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What the Heck...?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You found a yellow-ish glowing ball. It might be useful later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1362,"preRequisites":[1363],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"UNLOCKED","isMain":0,"simultaneous":0,"icon":{"id":"EMT:BaseBaubles","Count":1,"tag":{"warp":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The One Ring.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So you found it. The One Ring, forged by a mighty Dark Wizard. A strange feeling tells you to put it on. The Ring seems to whisper to you as well..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:BaseBaubles","Count":1,"tag":{"warp":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1363,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Ring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:BaseBaubles","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1364,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Mjolnir","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:TaintedMjolnir","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1365,"preRequisites":[],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lever","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Trigger:Ballthingy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":1,"desc":"No Description"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EMT:EMTItems","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1366,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]},"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Ocean Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some Ocean Bees? Since some servers don't provide ocean biomes, buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beePrincessGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"Forestry:beeDroneGE","Count":4,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""}]}]},{"questID":1367,"preRequisites":[486,995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:diggerBag","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgrade your Forestry Backpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your woven silk you can upgrade your Forestry backpacks. Each Pack has 45 slots.\nYou need a carpenter, your old backpack and a bit of seed oil.\n\nIf the recipe is not working, put the bag in a crafting grid to reset additional nbt data."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:craftingMaterial","Count":18,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:diggerBagT2","Count":1,"Damage":0,"OreDict":""},{"id":"Forestry:minerBagT2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Forestry:craftingMaterial","Count":9,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"DamascusSteel","MaxDamage":128000,"SecondaryMaterial":"DamascusSteel"}},"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1368,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":1728000,"globalShare":1,"questLogic":"AND","name":"Lost in the Twilight Forest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stay in the Twilight Forest and your portal gets broken, you are stuck. Every 24h you are able to exchange some materials to get a new portal crystal to escape."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"TwilightForest:item.tfFeather","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFFirefly","Count":4,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.torchberries","Count":16,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFLog","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.TwilightCrystal","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1369,"preRequisites":[255],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Time to find some Amber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every Thaumcraft Infused Stone vein has a bit of amber ore in it. Go and find some amber ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":514,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1370,"preRequisites":[1369],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Light it up!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The arcane lamp creates additional light sources which acts like a Torch in a sphere with a radius of 16 blocks centered on it. This will include caves or other areas behind walls. That might be useful... One downside, it might put a light where one isn't wanted, like inside an EBF. \n\nWhen attached to the base of an arcane bore, the arcane lamp gains an additional ability: It will light up the tunnel that the bore digs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockMetalDevice","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCosmeticOpaque","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1371,"preRequisites":[827],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.canisterPartialLOX","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"LOX and Bagels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LOX canister is an alternate solution to refilling your oxygen tanks.\nTo make liquid oxygen you need 1 oxygen cells.\nPut this in the HV powered vacuum freeezer to get 1 cell of liquid oxygen.\nTransfer this liquid oxygen into a tank, and then into a LOX canister.\nTo refill your oxygen tanks just put the tank and the LOX canister in the crafting grid to transfer oxygen.\nEach LOX canister can fill 4 Heavy Oxygen Tanks, 6 Medium Oxygen Tanks, or 12 Light Oxygen Tanks. With a full stack you won't need to bring oxygen equipment with you.\n\nSo much Greggy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":1,"Damage":1001,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.canisterPartialLOX","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.oilCanisterPartial","Count":2,"Damage":1001,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":900,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1372,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Fire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Fire is a basic wand focus. When equipped to a wand, it will be able to spew a short-range cone of fire by holding down the right mouse button. Its base vis cost is 0.1 ignis per second.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusFire","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1373,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusExcavation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Excavation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Excavation when equipped to a wand, will emit a green beam of light that will mine blocks of any hardness (except for blocks like Bedrock) from a distance.\nIts base vis cost is 0.15 terra per tick that it mines a block. It is also used in operating the Arcane Bore.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusExcavation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1374,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Shock","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Shock when equipped to a wand will shoot a bolt of lightning when the right mouse button is pressed. It homes in slightly to the nearest mob/player from where it is aimed. Its base vis cost is 0.25 air per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusShock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1375,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Equal Trade","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Equal Trade is a wand focus added by Thaumcraft 4. It is used to switch out blocks in the world with blocks in the player's inventory. Shift right-clicking on a block with it equipped will attune the focus to the block, making it the substitute block. Left-clicking on another block will replace it with the substitute block. Right-clicking will transform a 3x3 area of blocks that the player can see (the focus will not affect blocks behind those). This range can be extended by using a Focal Manipulator. Each use costs 0.05 ordo 0.05 perditio and 0.05 terra.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusTrade","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1376,"preRequisites":[1372,234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusFrost","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Frost","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Frost when equipped to a wand will launch a ball of ice that can bounce off of blocks and mobs if their hardness is high enough. It will inflict Slowness on mobs, freeze water and solidify lava. Its base vis cost is 0.05 aqua 0.02 ignis and 0.02 perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusFrost","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1377,"preRequisites":[1373,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusWarding","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Warding","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Warding can be used to make blocks invincible. To ward a block, right click on it with a wand or staff with this focus on it. This will make the block invincible until it is unwarded by right clicking it again with the wand. Take note that only the player who warded the block can unward it. \n\nWarded Blocks are completely indestructible and will produce particle effects similiar to runic shielding when the owner or another player tries to break it. Also, blocks that are affected by gravity(such as sand and gravel) will not fall when warded. Warded blocks cannot be affected by any outside influence such as redstone and pistons. If you attempt to ward glass, it will break the glass instead. There is a block known as warded glass available within the warded arcana research. The only way to break the warded block is via the owner right clicking with a wand in hand. Warding a block costs 0.1 aqua, 0.25 ordo and 0.25 terra.\n\nSpecial Note: Warded blocks emit light.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusWarding","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1378,"preRequisites":[1375,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPortableHole","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Portable Hole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Portable Hole when equipped to a wand will create a temporary 3x3 hole centered on the targeted block that will go 32 blocks. Some blocks cannot be passed through, such as Bedrock. Its base vis cost is air 0.1 and perditio 0.1 per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPortableHole","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1379,"preRequisites":[1182,1180],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cart with Chunkloader","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When transporting oil from long distances, a train is going to need a chunk loader. Craft one, and I'll give you a second one for free."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:cart.anchor","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChunkloaderTierI","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1380,"preRequisites":[234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPech","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Pech's Curse","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Pech's Curse is a rare wand focus which cannot be crafted by the player. It can only be obtained from a Pech Thaumaturge -- either by trading, or by killing it for the drop. (If attacked, the Pech will use it against you!) Its vis cost per shot is 0.1 Perditio, 0.1 Terra and 0.1 Aqua.\n\nThe focus fires a small ball of energy with a bright bluish-green trail. This missile is affected by gravity, so the shots need to be \"arced\" to hit distant targets. When the shot hits a mob, it does one heart of damage and randomly inflicts one of several effects on the target: Poison, Weakness, or Slowness. A 5th-level upgrade to the focus can make it give all the effects at once.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPech","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1381,"preRequisites":[285],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Primal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Primal will hurl an orb of primal energy while holding right-click with it equipped. The orb explodes on impact, and has a small chance to cause other effects, such as creating taint, or a node at the impact site. Its base vis cost changes every tick.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1382,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Pimp your Wand Focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Manipulator requires both XP levels and centi-vis in order to upgrade foci. Each Focus can be upgraded a total of five times, with the level and vis cost increasing by 8 for each upgrade. Some upgrades can be applied only at certain levels (often only at level 3), and others have prerequisite upgrades. Some upgrades like Frugal and Potency can be applied multiple times. All upgrades are permanent, and there is currently no way to remove them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1383,"preRequisites":[276],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Node Stabilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The advanced node stabilizer acts like a normal node stabilizer but with key differences. It will still stop the node it affects from being drained but the node can now drain from other lesser nodes. It also has a higher chance to improve fading and unstable nodes. The downside is that any nodes it affects will have their recharge rates effectively reduced to nothing. They will recharge at an extremely reduced rate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:blockStoneDevice","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":4,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1384,"preRequisites":[234,1373],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusSmelt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Efreet's Flame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Efreet's Flame is a Wand Focus that smelts blocks like a Furnace would when pointed and fired at them. It shoots a beam similar to the Wand Focus: Excavation. Each usage consumes 0.45 Ignis and 0.12 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusSmelt","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1385,"preRequisites":[1375,238,1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusDislocation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Dislocation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Dislocation allows the user to take and place any blocks, even Tile Entities and things usually unobtainable, like Aura Nodes and their energized counterparts.\nIt uses:\n5 Ordo + 5 Perditio + 1 Terra to take any solid block. \n25 Ordo + 25 Perditio + 5 Terra to take any block with tile entities (such as Chest). \n100 Ordo + 100 Perditio + 20 Terra to take Mob Spawner.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusDislocation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1386,"preRequisites":[1380,238,1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusHeal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Mending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Mending is a wand focus that will slowly mend the Caster's wounds by expending Vis. The Focus consumes 0.45 Aqua and 0.45 Terra per cast, healing half a heart (1 health).\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusHeal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1387,"preRequisites":[1384,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Uprising","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Uprising is a wand focus that propels the player in the direction they're facing. When used, the focus consumes 0.15 Aer per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1388,"preRequisites":[1387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusDeflect","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Disorientation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Distortion can be equipped on any wand. It protects the caster from \"ordinary\" projectiles such as arrows, snowballs, and potions. The focus can be enabled by cycling through the foci currently in the player's inventory, which is done with the F-key. The focus consumes 0.04 Aer and 0.08 Ordo per tick from the Vis stored in the wand while in use.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusDeflect","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1389,"preRequisites":[1388],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusEnderChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Ender Rift","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wand Focus: Ender Rift is a Wand Focus that opens the vanilla Ender Chest remotely when the player right-clicks with it. When used, the focus consumes 0.9 Ordo + 0.9 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusEnderChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1390,"preRequisites":[238,1387],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:xpTalisman","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Telekinesis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Telekinesis is a wand focus that can move nearby objects such as dropped items, arrows etc. where you are pointing with the wand or towards you, if you hold Shift key while using it. Consumes 0.05 Aer + 0.05 Perditio per tick used.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusTelekinesis","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1391,"preRequisites":[238,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusFlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Experience Drain","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Experience Drain will drain the player's experience at a rate of 15 xp per tick, restoring vis at a rather fast rate.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusXPDrain","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1392,"preRequisites":[238,320],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:focusShadowbeam","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Shadow Beam","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Shadowbeam shoots a beam of energy that is reflected by any block and damages everything it passes through. The beam travels a rather short distance though. Consumes 0.15 Aer + 0.25 Ordo + 0.25 Perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:focusShadowbeam","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1393,"preRequisites":[1380,238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTaint","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Tainted Storm","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Tainted Storm can be equipped on any wand and will emit a stream of tainted particles which will damage anything in a short distance and inflict Taint Poison for 5 seconds. The focus will also debuff the caster with Flux Flu III for 10 seconds unless enchanted with Antibody. The foci can be enchanted with Frugal, Potency, Enlarge, Antibody and Corrosive. Each cast costs 0.1 Aqua + 0.1 Perditio\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTaint","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1394,"preRequisites":[1393],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTaintedBlast","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Tainted Shockwave","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Tainted Shockwave will release a powerful shockwave around the caster which travels 15-20 blocks and will damage all mobs in the radius and push them back the same as a Knockback II enchantment. After using this foci the caster will be unable to use any other magic for 15 seconds. The foci can be enchanted with Frugal and Enlarge, each level of Enlarge will add 1 block to the shockwave radius. Each cast costs 10 Aqua + 5 Ordo + 10 Terra + 10 Perditio.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTaintedBlast","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1395,"preRequisites":[243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusVisShard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Vis Shard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Vis Shard can be equipped on any wand. While equipped, it can be right-clicked to cast a homing projectile which deals 2-5 damage points. This projectile can bounce off of solid blocks. If the target is not hit in 10 seconds, the projectile disappears. This focus can be enchanted with Frugal, Potency and Persistent.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusVisShard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1396,"preRequisites":[320,284,1378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusEldritch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Dark Matter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Dark Matter allows the player to cast the projectiles Eldritch Guardians cast. Can be upgraded with Potency, Frugal, Sanity, Diffusion and Corrosive. For each projectile cast the player will get Temporary Warp. This will not happen if the focus is enchanted with Sanity. Enchanting the focus with Diffusion will change its firing mode from single projectiles to short-range black gas which acts as a flamethrower.\n\nEach cast costs 0.2 Ignis + 0.2 Perditio. With Corrosive each cast will cost additionally 0.2 Aqua + 0.3 Ignis\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusEldritch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1397,"preRequisites":[320,284,1396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusTime","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Time can be equipped by any wand. When used during day, will set the time to dusk. When used during night, will set the time to sunrise. Each cast costs 10 of all primal aspects and will make the player unable to use any other foci for 30 seconds.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusTime","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1398,"preRequisites":[320,284,1396],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusMeteorology","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Meteorology","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Meteorology can be equipped by any wand. When used during rain will stop rain, when used during sunny weather, will start rain. Each cast costs 10 of each primal aspect and will make the caster unable to use any other foci for 30 seconds.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusMeteorology","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1399,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TaintedMagic:ItemFocusMageMace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Mage's Mace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Mage's Mace can be equipped by any wand and will boost attack damage up to 15 hearts. It can be enchanted with Frugal, Potency and Bloodlust. Each attack with this focus costs 0.5 Perditio.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TaintedMagic:ItemFocusMageMace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1400,"preRequisites":[1378],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForbiddenMagic:BlinkFocus","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Focus Blink","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wand Focus: Blink is a very powerful focus allowing to teleport whenever you click, as long as the destination is less then 50 blocks away from you. But, as there is no teleport cooldown, you can travel extremely fast with it. Consumes 3 Perditio per cast.\n\nThis focus can be upgraded at the Focal Manipulator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForbiddenMagic:BlinkFocus","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1401,"preRequisites":[1382],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:FocusShock","Count":1,"tag":{"upgrade":[{"id":0},{"id":-1},{"id":-1},{"id":-1},{"id":-1}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infuse your Focus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Try to add Potency to your Shock Focus. At Level 3 you can add Chain Lightning or Shock Wave."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:FocusShock","Count":1,"tag":{"upgrade":[{"id":0},{"id":-1},{"id":-1},{"id":-1},{"id":-1}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1402,"preRequisites":[274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27084,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Iridium screws","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chrome screws are nice, but they seem to break if too much vis channels through them. Get some Iridium screws."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":27084,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1403,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1122,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHV Steam Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you decide to use steam in HV tier then it's time to build a steam turbine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1122,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1404,"preRequisites":[81,78,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2320,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSuperconductors 128 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 128 EU MV Wires ? Pentacadmiummagnesiumhexaoxide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix cadmium, magnesium and oxygen in a mv mixer. Next te base dust needs an EBF with Kanthal Coils. A vacuum freezer is also required to cool it down. Make some MV Superconductor base Wires and use an assembler to combine these wires with Helium, Stainless Steel pipes and HV pumps to get your 128 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":2055,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2018,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2987,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11987,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2200,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2200,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5140,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32611,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2320,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1405,"preRequisites":[79,860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSuperconductors 512 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 512 EU HV Wires ? Titaniumonabariumdecacoppereikosaoxide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix titanium, barium, copper and oxygen in an HV mixer. Next the base needs an EBF with Nichrome Coils. A vacuum freezer is also required to cool it down. Make some HV Superconductor base Wires and use an assembler to combine these wires with Helium, Titanium pipes and EV pumps to get your 512 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":1028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":27,"Damage":1063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":1035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":2988,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11988,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2220,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2220,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":5150,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32612,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":48,"Damage":2340,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1406,"preRequisites":[1245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":214,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV asembler is required to make some lapotron crystals. Other recipes are twice faster than with an HV assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":214,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1407,"preRequisites":[806,1246],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":594,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§k§r§a§lEV Laser Engraver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An EV precision laser is required to make quantum crystals. Other recipes are twice as fast than with an HV precision laser."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":594,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11085,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1408,"preRequisites":[861,1243,86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lSuperconductors 2048 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 2048 EU EV Wires ? Uraniumtriplatinide is a superconductor wire and will transfer your energy without any loss. Every Voltage now has a superconductor wire and a base wire with only a very small loss.\nMix uranium 238 and platinum in an HV mixer. Next the base needs an EBF with Tungstensteel Coils. A vacuum freezer is also required to cool it down. Make some EV Superconductor base Wires and use an assembler to combine these wires with Nitrogen, Helium, Tungstensteel pipes and IV pumps to get your 2048 eu/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2098,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2989,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11989,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2240,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2240,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5160,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32613,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":18,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1409,"preRequisites":[475,1522,1005],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2380,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSuperconductors 8192 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 8192 EU IV wires? Vanadiumtriindinide is a superconductor wire and will transfer your energy without any loss. Every voltage now has superconductor wires and a base wire with only a very small EU/t loss.\n\nMix vanadium and indium in a HV mixer. Now you have the base dust, which needs an EBF with HSS-G coils, and a vacuum freezer to cool it down.\n\nMake some IV superconductor base wires and use an assembler to combine these wires with nitrogen, helium and niobiumtitanium pipes and an IV pump to get your 8192 EU/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2029,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":9,"Damage":2056,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":2990,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11990,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2260,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2260,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":5180,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32614,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":24,"Damage":2380,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1410,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":585,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Mixer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An IV mixer is required to mixe niobiumtitanium and vanadiumgallium dust. Other recipes are twice faster than with an EV mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":585,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11047,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11037,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1411,"preRequisites":[854,851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2241,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSome rare high tier metals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Small piles of Platinum, Palladium, Iridium and Osmium can be extracted with a chemical reaction with using nitric acid. You don't have the technology to process it right now but later on you need large amounts of them. You can start now to collect some dust and process it later.\n\n§4A chemical bath also extracts Platinum from Nickel ore. Time to head back to the Twilight Forest!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30653,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6855,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6909,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2241,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":85,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":84,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":83,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30659,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6855,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1412,"preRequisites":[1890,1707],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAssembling Line","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The assembling line (short form 'Ass Line') is a multiblock and important for high tier Components in LuV tier and above for Motors, Pistons, Robot Arms, Pumps and many more.\n\nThe machine can be 5-16 blocks long. The minimum length required depends on the number of components and fluids required by the recipe it's crafting. A length of 11 blocks will fit 80 percent of all recipes in GTNH.\nThe bottom layer must have on one outer side all the Input Hatches for fluids (4), in the bottom middle layer Input Busses for items(10), and on the end 1 Output Bus. Also on the bottom outer layer must be one Maintainance Hatch. The rest is Solid Steel Machine Casings.\n\nThe second layer on the outer sides left and right are Reinforced Glass and in the middle center Assembling Line Casing.\n\nThe third layer has on the left and right Grate Machine Casings and in the middle Assembler Machine Casings (Note the name change!). The Assembling Line control block and Data Access Hatch are on the opposite edge from the Input Hatches - not at the end with the Output Bus.\n\nThe fourth layer is a single line of Solid Steel Machine Casings in the middle(11), with two Energy Hatches for power. Once you have it built, you can replace the two IV energy hatches with 1 LuV energy hatch.\n\nAutomating the assline is God tier GTNH endgame. While it can be done with Enderio, it's easier to use SFM or OpenComputers.\n\nFor more details on using the Assembly Line, check out the wiki page https://tinyurl.com/GTNH-Assline"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings2","Count":39,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":55,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":10,"Damage":75,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":85,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockAlloyGlass","Count":22,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":11,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":45,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":145,"OreDict":""},{"id":"gregtech:gt.blockcasings3","Count":20,"Damage":10,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":15,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:paper","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"squidink","Amount":1000}},"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1413,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYou gonna hate this 1-4 in IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in IV. Go and craft one of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32614,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32644,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32634,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1414,"preRequisites":[1539,1538],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYou gonna hate this 5 and 6 in IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32684,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32694,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1415,"preRequisites":[188,187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§a§lPure Uranium Ores","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want pure uranium ores, you'll need to visit Deimos or Phobos to fetch it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":922,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":98,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1416,"preRequisites":[1243],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lMallard Rust Smelly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or is it Alloy Blast Smelter? Well, that makes more sense. This multiblock creates the higher tier alloys needed for the more advanced GT++ multiblocks. It directly smelts into liquids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":16,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":13,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"miscutils:itemDustIncoloy020","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:itemDustIncoloyMA956","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:itemDustInconel625","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1417,"preRequisites":[1494],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":758,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCough cough - Something needs to be done about the smell","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Birds falling out of the sky, fish dead and floating belly up in the rivers, acid rain melting the ground...Time to start picking up the trash and cleaning up the air. Small steel turbines should be fine for now. You'll need two amps of steady power to keep the scrubber working."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":756,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:itemAirFilter","Count":11,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":170,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":759,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"miscutils:itemAirFilter","Count":2,"tag":{"AirFilter":{"Damage":0}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1418,"preRequisites":[1416,861],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":812,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§9§a§lEU packets flowing everywhere...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...in my dreams. What if instead of having battery packs on every generator, we could centralize all the generation in one location? Put it away from the well travelled parts of the the base? Out in the country somewhere? Let the animals deal with the pollution. Anyways, let's start working on a Power Sub-Station to store EU and deliver it to our base. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":19,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":80,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":812,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1419,"preRequisites":[779],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":892,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who cares about a little cancer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...when it means you don't have to strip naked to recharge your nanosuit? \nThe Wireless Charger will keep your armor and tools charged up without having to put them into a battery buffer. \n\nIt will charge armor and tools at the tier and below.\n\nYou didn't want kids anyways..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":892,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":1600000},"Damage":32538,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1420,"preRequisites":[1164,1521],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":840,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§9§lShake that booty...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...out of the purified ores. Anyways, a Large Sifter will increase your sifting rate significantly. What will you do with all these gems??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":18,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":47,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":840,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:diamond_ore","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":502,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":501,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":503,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":514,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":542,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":543,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":541,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":540,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":545,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":544,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1421,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":797,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hulk Smash!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mass destruction! Or at least, lots and lots of crushed ores. Build a maceration statck to keep up with all the ores you are getting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:miscutils.blockcasings","Count":26,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":797,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4873,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1422,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":850,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The rocks in the washer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...go round and round, all the live long day. A large orewashing plant gets your rocks nice and clean."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":70,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":850,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":944,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":526,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1423,"preRequisites":[213,1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":849,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dancing in circles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spinning around, getting hot - sounds like a dance. Or a thermal centrifuge. Build a large thermal refinery to get the most out of your ores.\n\nYou can use Noise Hazard Signs instead of Thermal Processing Casings, as long as you have at least 8 Thermal Processing Casings."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings3","Count":4,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:gtplusplus.blockcasings.2","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":849,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1424,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Ilmenite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ilmenite will give a better amount of Titanium per Ore than Bauxite.\nThis Vein can be found on moon at Y Level 10-70."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":918,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":825,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":842,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":925,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1425,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Calculation processor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some printed calculation circuits? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":23,"OreDict":""}]}]},{"questID":1426,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":340,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Find some Meteoric Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach tier two planets like Mars or its moons Phobos and Deimos you need a better rocket. Your next goal is Tier two rocket plates which need meteoric Iron. \n\nYou will find small meteoric iron ore under the surface. Use a high tier miner or multiblock miner to get extra fortune on small ores. Small meteoric iron is only from Y=50-70, so try to find tall hills.\n\nMine the fallen meteors on the surface. Use your ears to listen to their impacts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":3340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":5340,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronRaw","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1427,"preRequisites":[80,1430],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 10 tier 2 heavy duty plates out of tier 1 plates and meteoric iron plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":10,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":17340,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":32463,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":10,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17340,"OreDict":""},{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1428,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 2 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The tier 2 rocket uses an elite circuit, a heavy duty plate tier 2, and the data stick in a ev circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":2},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1429,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours of hard work and tons of stacks of iTNT your second rocket is finally ready. But before you can go to Mars you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier2","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":10,"Damage":3,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.rocketFins","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.spaceshipTier2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":23,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1430,"preRequisites":[80,1428],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Recycle your rocket and save the Environment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Why not recycle your old Tier 1 rocket to get componets for your new tier 2 rocket? Put your old rocket in an arc furnace or plasma arc furnace to get back lots of materials."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":32462,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"IC2:blockITNT","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1431,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.engine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Booster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The distance between Mars and Earth is much larger than to the Moon and so the rocket needsboosters to reach it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.meteoricIronIngot","Count":6,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.fuelCanisterPartial","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1432,"preRequisites":[1427,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mars Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Mars lander is required for a soft landing.\nPut the Moon lander on a Parachute and surround it with airbags - that will do the trick. You hope.\n\nHint: Some times you can't loot or break the lander. Try to retrieve the contents with a hopper underneath."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.parachute","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.canvas","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":8,"Damage":11,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1433,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.moonBlock","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While looking for the meteoric iron you will find a moon dungeon. Look for a deep hole that is not a crater with a bottom that is not moon rock - it will show you the way to the dungeon. Go and fight a few mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 2 rockets.\n\nKill the Boss Monster again in a different dungeon if you want an extra tier 2 schematic to exchange for a moon buggy schematic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.moonBlock","Count":16,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1434,"preRequisites":[1435],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.buggy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Patrol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Moving faster on the Moon or other planets surface will be fun. I'm sure it will be totally safe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.buggymat","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":11,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":5,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23306,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27306,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.buggy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11340,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1435,"preRequisites":[1433],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Buggy Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The moon buggy needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The moon buggy circuit uses a EV-tiercircuit, a heavy duty plate tier 1, and the data stick in a ev circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.schematic","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":100},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsMoonBuggy","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1436,"preRequisites":[1434],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.landingPad","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fueling your Buggy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The moon buggy needs gasoline to work. Build a 3x3 fueling pad, connect it with a fuel loader, and place the buggy on top."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":9,"Damage":9,"OreDict":""},{"id":"IC2:itemPartAlloy","Count":9,"Damage":0,"OreDict":""},{"id":"Railcraft:cube","Count":9,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.landingPad","Count":9,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemPartAlloy","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11306,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1437,"preRequisites":[1426],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankMedFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bigger Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Medium oxygen tank is an oxygen storage tank that can hold up to 1800 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank. I recommend making the medium tanks and using the light tanks as spares to return to base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":14,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankMedFull","Count":2,"Damage":1800,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1438,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Me glass cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some ME glass cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":24,"Damage":16,"OreDict":""}]}]},{"questID":1439,"preRequisites":[1371,1440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumcraftneiplugin:Aspect","Count":1,"tag":{"Aspects":[{"amount":2,"key":"aer"}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Permanent Oxygen Systems","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You decided to have a longer stay on the moon and look for a permanent oxygen setup to refill your outdoor gear and building a small Base.\n\nDon't forget to bring repair stuff for your tools and armor! Dream 2018!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:cobblestone","Count":128,"Damage":0,"OreDict":""},{"id":"minecraft:glass","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenCollector","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenCompressor","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:tile.oxygenPipe","Count":10,"Damage":0,"OreDict":""},{"id":"minecraft:leaves","Count":64,"Damage":0,"OreDict":"treeLeaves"},{"id":"minecraft:log","Count":16,"Damage":0,"OreDict":"logWood"},{"id":"gregtech:gt.metaitem.01","Count":2,"tag":{"GT.ItemCharge":1600000},"Damage":32538,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.oxygenTankLightFull","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1440,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Bubble Distributer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Oxygen Bubble Distributor takes oxygen from the Oxygen Collector, and makes an oxygen bubble providing an area to safely breathe in without needing Oxygen Gear. The bubble is a sphere surrounding the distributor and will go through walls (or any block). Alternatively, you can use an Oxygen Sealer (need compressed Desh Plates) to contain oxygen inside a room."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":9,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32602,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.airFan","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.distributor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:leaves","Count":512,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1441,"preRequisites":[1445],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.glowstoneTorch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Space torches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Normal torches won't work in space, only in the area within the oxygen bubble.\nOne solution is glowstone torches. You can also use other mods' lights and lamps. You'll probably want 3-5 stacks for mining veins.\nAnother is to use nightvision and a magnum torch or GregTech monster repellator to keep mobs away. These do not work on the official servers, instead claim and unclaim chunks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.glowstoneTorch","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"FloodLights:electricIncandescentLightBulb","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":23010,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1442,"preRequisites":[692,80],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:armor.steel.plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Steel Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed steel armor has more durability than the steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":24,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftCore:item.steel_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.steel_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:tnt","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1443,"preRequisites":[1442,186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.deshChestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Desh Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed desh armor has more durability than the compressed steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":24,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftMars:item.deshHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.deshBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1444,"preRequisites":[1442,162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.titanium_chestplate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Compressed Titan Armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The compressed titan armor has more durability than the compressed steel armor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"GalacticraftMars:item.titanium_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.titanium_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1445,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:clock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moon Day and Night time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon's day-night cycle is 2h 40min long, equaling 8 Overworld days and it is linked to the Moon phases seen on the Overworld. The daytime on the moon lasts from a full moon to the next new moon (4 Overworld days, equaling 1h 20min) and, logically, the nighttime lasts from the new moon to the next full moon.\n\nSince the 1st Overworld night is full moon, you can safely land within the 1st 4 Overworld days, and then the next 4 Overworld days are more dangerous since hostile mobs will be able to spawn in the dark, and so on. If you miscount, the moon phases can tell you when it is daytime or nighttime on the moon. Full moon is the start of the moon day, new (or dark) moon is the start of the moon night.\n\nDuring the nighttime, the environment light levels go very low, allowing hostile mobs to spawn on the surface."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1446,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.mars","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mars Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours you will find a Mars dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 3 rockets.\nIf you need the schematics for the astro miner or the cargo rocket, kill another Boss Monster and exchange the schematics.\nBefore you journey home make sure you fulfill the quest requirements in the EV tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.mars","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":16,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1447,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The astro miner needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The astro miner circuit uses a EV-tier circuit and a heavy duty plate tier 3 and the data stick."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":102},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1448,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The third tier schematic circuit uses an elite circuit and a heavy duty plate tier 3 and the data stick in a iv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":3},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1449,"preRequisites":[1446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cargo Rocket Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cargo Rocket has the capability to transport solid items between dimensions, and is a perfect way to transport items between dimensions without relying on Enderchests.\n\nThis rocket can be loaded with 2000 fuel points or 2 buckets of Rocket Fuel. The safe fuel level is 80 percent. \n\nYou can fill up the right slots with chests to increase the storage space to 36 and 54 slots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.schematic","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32704,"OreDict":"circuitData"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":101},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsCargoRocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1450,"preRequisites":[1447],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemAstroMiner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Astro Miner is an automatic mining vehicle which moves around, making tunnels and mining up everything it finds, and brings it all back to a base station where it docks. It is not player-rideable* so do not try and climb inside it!\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsAstroMiner","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.heavyPlating","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":1,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":3,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.orionDrive","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32603,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.beamReceiver","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":8,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemAstroMiner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11884,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1451,"preRequisites":[1450],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.minerBase","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Astro Miner Base","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To construct the dock, place 8 Astro Miner Base blocks in a cube, 2 blocks high, 2 blocks wide and 2 blocks deep. When the last of the base blocks is placed, it should automatically convert into an Astro Miner Base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":4177,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":8,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":2,"Damage":4,"OreDict":""},{"id":"GalacticraftCore:tile.machineTiered","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.minerBase","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11081,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1452,"preRequisites":[205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Launch Controler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To use the Cargo Rocket at full capacity it is necessary to equip a Rocket Launch Pad, to send items, with:\n\nFuel Loader\nLaunch Controller\nCargo Loader\nAnd the receiving side with:\n\nFuel Loader\nLaunch Controller\nCargo Unloader\n\nIt is also possible to use Buildcraft pipes to transfer items into the Cargo loaders. Next step is to set up the Frequencies in both Launch Controllers (i.e. Set: A to target B, B to target A). Have a look at Launch Controller to setup the automated launch. The first time you have to right-click the Cargo rocket and press launch at the top right corner."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.fuelLoader","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:tile.marsMachine","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1453,"preRequisites":[80,1446],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 42 tier 3 heavy duty plates out of tier 2 plates and desh plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":42,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":168,"Damage":17884,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":32464,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":42,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":17884,"OreDict":""},{"id":"IC2:blockITNT","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1454,"preRequisites":[1453,1457,1448,1456,1458,1459,1460,1473],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After days of hard work and a hundred tons of stacks of iTNT your third rocket is finally ready. But before you can go to the Asteroids, Ceres or Jupiter Moons you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier3","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":3,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":12,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleSmallFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":2,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":96,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1455,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Fluix crystals","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some fluix crystals? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":24,"Damage":7,"OreDict":""}]}]},{"questID":1456,"preRequisites":[176,1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 3 Lander","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Tier 3 or Deep Space lander is required for a soft landing.\nPut the Mars lander in a desh cage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander2","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":6,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.steelPole","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":4,"Damage":9,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1457,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Nose Cone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone. Tier 3 rocket needs a heavy nose cone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.noseCone","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":8,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1458,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Engine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. A heavy one is needed in the tier 3 rocket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":5,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1459,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Rocket Fins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins. Tier 3 rockets need heavy ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.heavyPlating","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1460,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.MediumFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Medium Fuel Canister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 3 rocket you need to craft two small and two medium canisters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DeshDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.TitaniumDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.meteoricIronIngot","Count":4,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1461,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4884,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDesh","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Desh is a very important material for high tier rockets and used by many recipes in Galacticraft and Galaxy space. Go and find a desh vein on Mars at Y 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":4841,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1462,"preRequisites":[1427],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Thermal Cloth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thermal Padding is a suite of garments made out of an advanced insulating material. The garments are able to keep a player from freezing to death in the cold environments of Outer Space. They are also able to keep the player from suffering heat exhaustion in an overly hot environment.\n\nThe temperature indicator on the Life Support HUD will show if the player is becoming too hot or too cold - as the temperature approaches dangerous levels, an \"Invalid Thermal Protection\" warning will be shown. On Mars and the Asteroids, simply wearing a full set of Thermal Padding should be enough to fix this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":24,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":96,"Damage":29019,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":96,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":2,"OreDict":""},{"id":"GalacticraftMars:item.thermalPadding","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11019,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11340,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1463,"preRequisites":[1454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sleeping in Space","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cryogenic Chamber is used to sleep on other planets and skip long nighttimes. It can be used at any time, even during the daytime, and in any dimension, including the Overworld.\n\nUsing the chamber during the daytime will skip the time to the next sunrise, except on the Asteroids dimension where the Sun is always locked on West.\n\nOnce the player has used the Cryogenic Chamber, there is a 300 seconds cool-down time before he can use the chamber again. Breaking and placing back the chamber or trying to use different chamber will not reset the cool-down time, unless by dying.\n\nThe chamber does not require energy to work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GraviSuite:itemSimpleItem","Count":1,"Damage":2,"OreDict":""},{"id":"CarpentersBlocks:itemCarpentersBed","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":3,"OreDict":""},{"id":"minecraft:clock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.marsMachine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1464,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.arclamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arc Lamp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Arc Lamp is a very bright lamp. It is directional - meaning the light it casts is brighter in the direction it is facing. Its facing can be rotated using a Standard Wrench.\n\nIncluding the Arc Lamp the brightness of blocks which are close to light sources is:\n\nRedstone Torch: 3-6\nTorch: 9-12\nBlock of Glowstone: 10-13\nArc Lamp: 13-14\n\nThe Arc Lamp can light up a fairly large area - for example a whole room - at light level 14: it is almost as bright as full sunlight.\n\nThe Arc Lamp also has the interesting property of actively repelling mobs. Not only does its light prevent mobs from spawning nearby, but it is so bright that if a mob comes close to the Arc Lamp the mob will turn around and walk away again. This mob repellant effect is confirmed to work on : Zombies, Skeletons, Creepers, Evolved Zombies, Evolved Skeletons, Evolved Creepers. It may also work on other types of mobs (confirmation required). But it has no effect on Spiders (they are not afraid of sunlight either) or boss mobs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.null","Count":112,"Damage":5,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":16,"Damage":16,"OreDict":""},{"id":"GalacticraftCore:item.battery","Count":16,"tag":{"electricity":0},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.arclamp","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":3,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1465,"preRequisites":[1467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.airLockFrame","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Air Lock","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Air Lock is an airtight door used to provide a passage between enclosed rooms and between an enclosed room and outer space. It is made from Air Lock Frames and one Air Lock Controller.\n\nThe air lock will keep air inside the room while it is closed. But when the air lock is open, the room is no longer sealed and oxygen gear must be worn until the air lock is closed. In environments with extreme temperatures, Thermal Padding must also be worn."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.airLockFrame","Count":2,"Damage":1,"OreDict":""},{"id":"GalacticraftCore:tile.airLockFrame","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":32,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":8,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1466,"preRequisites":[1467],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":20,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Temperature Control","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ambient Thermal Controller is an item for use in the Oxygen Sealer to provide thermal protection in sealed spaces.\n\nAmbient Thermal Controller is useful in the dimensions too cold or too hot for players to survive without Thermal Padding.\n\nIt can be placed in the 3rd slot next to the energy and oxygen slots in a working Oxygen Sealer. Once the Ambient Thermal Controller is in the sealer, it will heat or cool the output oxygen according to the local environment, and then the player can safely take the thermal padding off in the sealed room."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":20,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":10,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":2,"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1467,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:tile.sealer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oxygen Sealer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Oxygen Sealer is a machine that fills a room with oxygen (although the oxygen is generally not visible) up to around 800-1000 blocks (amount stacks with multiple sealers within close proximity) allowing the user to breathe without Oxygen Gear. Unlike the Oxygen Bubble Distributor, the Oxygen Sealer confines the oxygen to the room it is in. The sealer must be supplied with power and sufficient oxygen. See Oxygen Collector for supplying oxygen.\n\nThe sealer will only work in a room that is completely sealed off from outer space. This can be achieved with either a completely closed off room, or with an Air Lock. The sealer must have nothing above it to block its vents. It is designed to check for a proper seal about every 5 seconds, so be sure to give it time to seal.\n\nEach sealer requires at least 320 air points per second to work continuously or it will fail."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.sealer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":{},"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":6,"Damage":5,"OreDict":""},{"id":"GalacticraftCore:item.airVent","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1468,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftCore:item.oxygenTankHeavyFull","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Oxygen Tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Large oxygen tank is an oxygen storage tank that can hold up to 2700 units of air. It is used to provide a portable source of oxygen while in areas that do not have an oxygen source of their own.\n\nUsage:\nUp to two oxygen tanks can be worn at a time. To wear any type of oxygen tank, open your inventory and click on the Galacticraft tab at the top of the menu. Here you will see the available spots for your various types of equipment. Simply place your tank(s) in one of the slots with a grey picture of an oxygen tank. Other types of oxygen tanks are the medium oxygen tank, which holds twice the amount of oxygen as a light tank, and the heavy oxygen tank, which holds three times the amount of a light tank."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":2,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":14,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32406,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftCore:item.oxygenTankHeavyFull","Count":2,"Damage":2700,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":6,"OreDict":""},{"id":"GalacticraftCore:item.basicItem","Count":1,"Damage":14,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1469,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.sludge","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bacterial Sludge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bacterial Sludge is a fluid block that generates naturally on Mars.\n\nIt generates in the giant underground caves in Mars and floods over almost the whole cavern floor.\n\nCollect it to produce mutagen for bees mutation in gendustry."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":256,"tag":{"Fluid":{"FluidName":"bacterialsludge","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraUtilities:shears","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":64,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":4,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1470,"preRequisites":[1469],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.cavernVines","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cavernous Vine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cavernous Vine is a poisonous plant that grows naturally in the Mars underground. It grows from the ceiling down to the floor in the huge caves flooded with Bacterial Sludge, emits light and can trap mobs in it.\n\nAny mob that touches this plant will be poisoned, dragged up and lose health down to 1 health point (half a heart) while trapped in this plant. Mobs that are immune to poison, like Zombies and Skeletons, will not lose health.\n\nThey grow from the bottom face of a solid block down to 1 block away from the floor.\n\nCavernous vines can be broken by hand without taking damage or being poisoned but they will drop nothing. They can be obtained as an item using shears. Even picks with Silk Touch enchant will not obtain anything.\n\nOnce obtained, they can be replanted elsewhere and regrow, like cactus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.cavernVines","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:tile.oxygenPipe","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":6,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":2,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1471,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Slimeling","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slimeling is a utility mob that spawns from Slimeling Eggs found on Mars surface. It shares some features from vanilla wolves and mules: it can be tamable and attacks mobs that threaten its owners, and can be equipped with a special chest to transport items.\n\nAs an allied mob, Slimelings will actively help and follow the player-owner and will attempt to protect them. They can also have a neutral behavior, that is, they can attack if provoked or hurt by non-owners.\n\nItems that you can feed Slimelings with:\n\nBoat\nCooked fish\nGunpowder\nGold ingot\nRedstone repeater\nWooden door\n\nSlimelings can be equipped by their owners with a Slimeling Inventory Bag to transport items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:tile.slimelingEgg","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:boat","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_fished","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:repeater","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1472,"preRequisites":[1462],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalacticraftMars:item.grapple","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Grapple","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Grapple is a grappling hook and rope which can be thrown by a player, and then used to swing the player in the direction it was thrown. Useful for reaching places that are otherwise too high to jump to, or traveling around the Asteroids.\n\nRight-click to aim the Grapple at a block you want to reach, similar to aiming a Bow. Release the right-click - similar to firing an arrow from a bow - to grapple yourself in that direction.\n\nFor best results, aim the Grapple at a point 1 or 2 blocks higher than the point you want to reach.\nIf there is no safe platform to land at that point, you can fall back down and you will take fall damage, so it takes some skill to use the Grapple safely.\nTake care using the Grapple near a Nether Portal, End Portal or at a low height (less than y = 30) on a Space Station. There can be strange consequences if it crosses into another dimension."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":14341,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":3,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.grapple","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftCore:item.battery","Count":16,"tag":{"electricity":0},"Damage":100,"OreDict":""},{"id":"dreamcraft:item.MeteoricIronString","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11341,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1473,"preRequisites":[1453],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nice and comfortable - in space!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These thermal clothes will keep you nice and warm even in the coldest depths of outer space."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":24,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.TungstenString","Count":96,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":96,"Damage":29028,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ThermalClothT2","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":1,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":2,"OreDict":""},{"id":"GalaxySpace:item.ThermalPaddingT2","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":16,"Damage":5,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1474,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:drum","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWant to join a band?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or at least play with drums? If you have extra Meteoric Iron after building your rocket and thermal padding, turn it into Meteoric Steel and use it to make some drums. These drums can hold 256 buckets even after breaking."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17305,"OreDict":"plateSteel"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28341,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":5134,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ExtraUtilities:drum","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:drum","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1475,"preRequisites":[10],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":34,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCows are supposed to Moo!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What the? You noticed sometimes when you kill something, even a cow or chicken, that it explodes! What madness! To stop it, use a proper GregTech Knife or Butchery Knife. Craft a flint GregTech knife with a stick and a piece of flint (last NEI page) and I will give you an old iron one to use once it wears out."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":20}],"GT.ToolStats":{"PrimaryMaterial":"Flint","MaxDamage":12800,"SecondaryMaterial":"Wood"}},"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":16}],"GT.ToolStats":{"PrimaryMaterial":"Iron","MaxDamage":25600,"SecondaryMaterial":"Iron","Damage":2800}},"Damage":34,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:porkchop","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1476,"preRequisites":[492],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":16},{"lvl":2,"id":21}],"GT.ToolStats":{"PrimaryMaterial":"Iron","MaxDamage":25600,"SecondaryMaterial":"Iron"}},"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAll the finest cuts of meat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This knife is not going to work for slaughtering the hundreds of animals you will need for food and materials. Make yourself a GregTech Butchery Knife. It stops the explosions, and kills the cows much faster. Later when you get Stainless Steel, you can make a new one that will kill cows in one hit.\n\nNote: GT Tool damage is based on mining level."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"ench":[{"lvl":1,"id":21}]},"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"minecraft:leather","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:beef","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1477,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #6 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sixth item you'll need a lot of. For the scanner and the seismic prospector."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":29501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1478,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lYou're gonna hate this #5 in MV too","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fifth item you'll need a lot of. For the microwave, the scanner, the precision laser engraver, etc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1479,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Ring","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber rings? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":28880,"OreDict":""}]}]},{"questID":1480,"preRequisites":[1925],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:dustRadium226","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRadon Decay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Radon is used for quantum eyes, quantum stars and emitters and sensors in the EV machines. Try to find a Uranite vein first. \n\nYour washed Uranium 238 ore goes to the sifter and you get a small chance of Radon 226. It needs up to 4500 ticks or 75 mins to decay. So get used to your hazamit suit around base or sit and enjoy a few sunsets. Make sure to send it out for cleaning after you are done. After decaying you can electrolyze radon gas out of it.\n\n§4This Vein can be found on Phobos, Deimos or Ceres."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6098,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:itemDustDecayedRadium226","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11028,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1481,"preRequisites":[198],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorMOXQuad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§l4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1482,"preRequisites":[1477],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.detrav.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Steel","MaxDamage":1000,"SecondaryMaterial":"Steel"}},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lPortable prospecting tool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have some tech, you've discovered a way to prospect for ores. This tool only has a chance at finding the ores in a chunk. If you are clever, you can use it to locate ores.\n\nUnfortunately, the tech to make it repairable or rechargeable doesn't work yet, so you'll have to make a new one each time it breaks. It does work better at higher tiers and lasts longer with better materials.\n\nAnd since it doesn't make a convenient book like the seismic prospector, you'll have to keep track on your own where the ores are found.\n\nIt can be hard to choose a good material for the Basic Prospector. Here are some good choices for you, the size searched, and their durability:\n\nArdite 5x5 - 4500\nDamascus 3x3 - 5600\nVanadiumsteel 3x3 - 8400\nVibrant Alloy 5x5 - 17700\nShadow 5x5 - 36000\n\nEach chunk successfully scanned costs 100 durability. Each failed chunk costs 25. The average for MV is ~55 per chunk when scanning a large area.\n\nGood luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32691,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1483,"preRequisites":[1410,1584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MalformedSlush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Really op food","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You hear about Dezil's Marshmallow a really OP food which can be found from time to time in chests. What about I show you a way to cook this stuff yourself?\n\nAfter you mastered the flowing spirit in the dream dimension put a bit of flour, sugar, salis mundus and draconium dust in your IV Mixer. \nThe recipe starts when you give flowing spirit to it and gives you malformed slush, a very stinky and disgusting piece of...something. \n\nBe careful you'll get blindness II when holding it in your hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2881,"OreDict":"foodFlour"},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":14,"OreDict":""},{"id":"minecraft:sugar","Count":2,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":2,"Damage":0,"OreDict":"dustDraconium"},{"id":"witchery:bucketspirit","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MalformedSlush","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:bucketspirit","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1484,"preRequisites":[1483],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Uncooked Slush","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to form this slush a bit. Use a Mashmallows form and press it with your iv forming press. Remember to sterilize it after using.\n\nBe careful you'll get bindness and hunger II."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MalformedSlush","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:blankPattern","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MarshmallowFormMold","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MarshmallowForm","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1485,"preRequisites":[1150,539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Carbon"},"Damage":1503,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBrittle but hits like a sledgehammer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Carbon crossbow limb is 1/3 the durability of the magnalium limb, but hits a lot harder and shoots a little faster. But you'll want to carry around a tinker table and extra ingots to repair it constantly, and watch that you don't break it in the middle of combat!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"Carbon"},"Damage":1503,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1486,"preRequisites":[1484],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowing Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is heating up your Marshmallow in a Electrc Blast Furnace at 4500k whit some radon gas and make it glow.\n\nNow you get a Paralysis II effect in addition to the others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30093,"OreDict":""},{"id":"dreamcraft:item.UncookedSlush","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":6098,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1487,"preRequisites":[1486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cooling your Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In the next step you cool your glowing Mashmallows in an HV Vacuum Freezer to make it more stable.\n\nYou still get Weakness II and Nausea II."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.GlowingMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:epicbaconItem","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1488,"preRequisites":[1487],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dezil's Marshmallow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"In the last step you need to infuse your Marshmallow with some epic food in the thaumcraft infusion altar. Before you can do it you need to unlock the research.\nWarp will be added."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Marshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:epicbaconItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:deluxechickencurryItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"DraconicEvolution:dezilsMarshmallow","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1489,"preRequisites":[1493,1665,2330],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32655,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lNow you realy gonna hate this 1-4 in LuV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pumps, pistons, conveyor belts and robot arms are the most needed machine parts in LuV. Go and craft one of each with your new Assembly Line."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32645,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32635,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32655,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1490,"preRequisites":[1489],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32695,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lNow you realy gonna hate this 5 and 6 in LuV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some machines need emitters and sensors, like the analyzer or the circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32685,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32695,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1491,"preRequisites":[86,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lHSS-G","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make Tungsten Steel upgrade your Electric Blast Furnace with new Coils you are able to make HSS-G Ingots. This ingot becomes very important in LuV tier.\n\n§4HSS-G is made out of tungstensteel, chrome, molydenum and vanadium dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1492,"preRequisites":[942,97,1549],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:MU-metatool.01","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plunger 2.0 The Hand Pump Replacement","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What? Lost your hand pump already? Well here is a replacement. Well sure it costs a few coins too, don't be such a fumble fingers next time! What do you think I am, a hardware store?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1493,"preRequisites":[213,1412,215,1491,1413,1414,2329],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lTier 7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"LuV-Level. You will need chrome for machines. Suggested planets and moons to visit: Jupiter's Moon Io, Venus and Mercury. Machine parts will now require an Assembling Line - Check Multiblock Goals for details."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:venusblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1494,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§f§6§lStainless taking too long?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time for a second blast furnace! \n\nYou can make ingots faster 3 ways - better coils, higher tier energy hatches, or adding more furnaces. It's probably time to add a second EBF to your base. EBFs can share walls and input/output hatches, but not mufflers or energy hatches.\n\nRemember pollution will be very high with two EBFs active at once!\nWatch out for high pollution effects. Use the best mufflers available and don't place the EBFs in the same chunk as farmland or other high pollution machines like pyrolyze ovens and large boilers.\n\nYou can use whatever coils you have lying around, but you might want to start searching for Mica if you haven't found any yet."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":92,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":2,"Damage":42,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32529,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":172,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1495,"preRequisites":[1204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:command_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lAll alone in the night","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are playing single player survival, updates mean having to reload default quests. Use this block to do it for you without having to enter creative mode - you don't lose progress, but you'll have new quests to complete!\n\nSorry, no rewards, other than the satisfaction of knowing it's you versus the world. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dirt","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:gravel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:stick","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1496,"preRequisites":[28],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:iron_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lHow the heck do I find ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GregTech ore generation is based on veins. Veins are centered on orecenters, based on the chunk number. To find the chunk number, hit F3. In the X and Z lines you will see numbers like\nc: 3 (14)\nc: -2 (1)\n\nThe 3,-2 is the chunk's address. Ignore the negative sign. Now, the orecenters are located at 3N+1 chunks. So, 4,7 is an orecenter. 10,16. -22,19. Etc. \n\nProtip: to find out if a number is divisible by 3, add the digits and see if the sum is divisible by 3. So 86 = 8+6 = 14. So you need to go down 1 chunk or up 2 chunks so that you are on a 3N+1 chunk.\n\nFor reading all the way, I'll give you an ingot of iron."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:iron_ingot","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1497,"preRequisites":[1496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:gold_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lDigging deeper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you know where to dig, dig all the way down to bedrock to find if there is a vein located there.\n\nNow, what if you know what you want but not where to find it? Our fancy bartimausnek developer has added a nifty feature to NEI that shows you where to find ores! Simply look for the oreblock in NEI, and click on it for info on where to find that ore.\n\nMake sure you look for the Gregtech variety of the ore."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"amount":1,"rewardID":"bq_standard:xp","isLevels":1,"index":0}]},{"questID":1498,"preRequisites":[1497],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:coal_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA dimension by any other name...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Use this table to decode dimension names\n\nOW - Overworld\nNe - Nether\nTF - Twilight Forest\nEN - End\nVA - Vanilla End Asteroids\nEA - End Asteroids\nMo - Moon\nMa - Mars\nAs - Mars Asteroids\nBC - Barnard C\nBE - Barnard E\nBF - Barnard F\nCa - Callisto\nCA - Centauri A\nCe - Ceres\nDe - Deimos\nEn - Enceladus\nEu - Europa\nGa - Ganymeade\nHa - Haumea\nIo - Io\nKB - Kuiper Belt\nMM - Makemake\nMe - Mercury\nMi - Miranda\nOb - Oberon\nPh - Phobos\nPl - Pluto\nPr - Proteus\nTE - Tau Ceti E\nTi - Titan\nTr - Triton\nVB - Vega B\nVe - Venus\nDD - Deep Dark/Underdark\n"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSurvivor","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1499,"preRequisites":[91,93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":541,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChemical bath","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Wait, what? You want more byproducts from your ores? A cheaper way to make paper? Well, the chemical bath is perfect for you! \n\nYou'll have to provide liquids like mercury to extract different products like nickel, silver, copper, and platinum from ores. \n\nFor paper you'll only need some water and wood pulp. Maybe you'll find more uses for it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":541,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1500,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"questbook:ItemQuestBook","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBetter Questing?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For quests to save properly, you must be online and logged into your Mojang account. Sorry, it's a limitation of Better Questing."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1501,"preRequisites":[1500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:blockCampFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lBackup your stuff...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Single player? Please install your preferred backup mod, or use the command line to backup your game. Not sure which to use? §6AromaBackup for 1.7.10 §rworks pretty well.\n\nRemember though Journeymap and Thaumcraft Node Tracker information isn't included with AromaBackup, so you should backup your journeymap and tcnodetracker directories after exploration."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1502,"preRequisites":[166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockWirelessCharger","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTesla would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of sticking your EnderIO items in the capacitor bank to charge it? Time to make a wireless charger."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockWirelessCharger","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1503,"preRequisites":[13],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lNobody wants an explosion...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...right? So when building multiblocks, make sure you\n\n1. Don't cross chunk boundaries with the multiblock.\n\n2. Don't rely on resources coming from outside the chunk to prevent explosions. In other words, make sure you source your water locally.\n\nGood luck."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:fireworks","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1504,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ifu:ifu_buildingKit","Count":1,"tag":{},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§e§k§l§r§3§2§lDivine rod of the gods?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The ore finder rod takes some of the tedium out of finding an ore. You'll need to find some first to make it, but once you have it you can use ore blocks to find more ore. It only tells you if that specific ore is nearby. Later you will want to return with better digging tools and check every spot.\n\n§4Be sure to use your NEI skills to figure out which ore block is the best choice for your needs.\n\n§4Other basic ore blocks can be purchased from the Coins tab.\n\nTo use, shift click when looking at the ground to open inventory and put the ore block into the slot.\n\n§rAs you get close, you will see and hear a response from the ore finder tool. You will see the durability bar change when it discovers a match. Watch out - it will respond to small ores as well as normal ores so Lapis and Redstone you will want to wait for large signal before digging. If it detects a large quantity of the ore you're looking for the wand will flip upside down completely and fill the durability bar. If you play with your sound on you will hear an obvious sound to notify you as well. The wand works in both your inventory and hotbar and you don't need to be actively holding it, though you get style points if you are holding it.\n\n§4Also, because of the magical nature of the wand, the ore is stored with the player, not the wand. If you want to give the wand to someone else, please remove the ore first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":"woodStick"},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},{"id":"minecraft:redstone","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"ifu:ifu_buildingKit","Count":1,"tag":{},"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":1,"Damage":35,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":937,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":870,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":834,"OreDict":""},{"id":"minecraft:clay","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1505,"preRequisites":[15],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNot enough items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More like too many items!\n\nHere are some tips for using NEI.\n\nWhen you have your inventory open, you can type the search terms in the text bar. Make sure your GUI size is set correctly, or you won't be able to see it. Double-click the bar to highlight any matching items in your inventory. Handy for searching that obsidian chest!\n\nEven better, you can use T to search nearby inventories, which will emit some particles. We have also provided the special Y command to look for a machine in the world, in case you've forgotten where you placed that Advanced Circuit Assembler.\n\nO will make the NEI information hide."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1506,"preRequisites":[1505],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:bookshelf","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNEI is more powerful than you imagine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"NEI has some really nice advanced features too.\n\nClick on an item to see the recipe to create it, and press Backspace to go back to the previous recipe. \n\nHold Shift to stop the oredict toggling items, and to show the oredict entries for the current item under your cursor.\n\nSearch using #oredict to find items that match that oredict; for example, #dyewhite will list all white dyes.\n\nSearch using @mod. to find all items from that mod; for example, @mod.gt++ will list all GT++ blocks.\n\nUse * (asterisk) as a wild card. For example large * fluid pipe will show you all the large fluid pipes.\n\nIt has more advanced features, you should check the web for details."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1507,"preRequisites":[36,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:item.BiblioClipboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lMaking a list, checking it twice","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As your base grows, you're going to have a dozen different long term goals each with many steps. Build a clipboard to keep track of what you need to do."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.BiblioClipboard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1508,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:CraftingStation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA better crafting table","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of your stuff falling out of your crafting table every time you walk away? This fancy table from Tinker's Construct has slots to hold the items in your recipe. \n\nYou can use it to upgrade tools with 8 modifiers at a time. Very handy for additional speed or looting!\n\nWhen it is placed next to a vanilla chest, it will even show the chest's inventory in the crafting window. Single or double vanilla chests only please.\n\nCut it again for a sleek, low profile version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:CraftingStation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"harvestcraft:plumjellysandwichItem","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1509,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemTravelStaff","Count":1,"tag":{"Energy":250000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTravelocity!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A staff of traveling can get you really moving around your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemTravelStaff","Count":1,"tag":{"Energy":0},"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockTravelAnchor","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1510,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"naturescompass:NaturesCompass","Count":1,"tag":{},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBiomes everywhere, but not the one you want?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of searching all over the map for that Bamboo Forest or Tropical rainforest? Desperate for clay dust and need to find a Canyon biome?\n\n§4Nature's compass will lead you to the biome you are looking for, if it is within range."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"naturescompass:NaturesCompass","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1511,"preRequisites":[502],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:habitatLocator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Humid and warm?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stop guessing what the humidity and temperature are for your biome. Use the habitat locator to get a reading on your current climate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:habitatLocator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1512,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Put the drones in a jar and shake it up","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you get good effects from your bees, instead of just trashing the excessive drones, you can put them in collector's jars to get the effects anywhere in your base.\n\nHealing? XP? Poison?\n\nThe collector's jars can even be piped or connected to a conveyor so that drones last a long time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:effectJar","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1513,"preRequisites":[1114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameMagic","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magic frames","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alternatively, you can try going through the Apimancy tree of your Thauminomicon to make Magic Frames. They're the core of magically endowed frames. They also have a special ability - no maximum production chance. Normal frames are ineffective once you reach 10x production but with magic frames you can keep going - just watch out, above 16x you'll be working your bees so hard they have a chance to degenerate into ignoble, or die outright. Frames to lower genetic decay will lower chances of this happening."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameMagic","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:frameMagic","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":1514,"preRequisites":[1114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.cocoa","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chocolate frame","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The chocolate frame can be used to increase production, but reduces lifetime. A shrewd beekeeper can use this to speed up mutation by using 3 in an apiary to kill off queens quickly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:hiveFrame.cocoa","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.cocoa","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":26,"OreDict":""}]}]},{"questID":1515,"preRequisites":[1514],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.soul","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Are the bees buzzing, or screaming?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Soul frames don't shorten the life of the bee as much as chocolate frames, but they greatly increase the chances of a mutation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:hiveFrame.soul","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.soul","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":1516,"preRequisites":[1513],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameOblivion","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bees buzzing beyond the dark","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If even the soul frame takes too long for your taste, the oblivion frame will destroy a bee in a single bee tick (27s). Be careful using more than one, there are rumors it might harm your princesses..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameOblivion","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":1517,"preRequisites":[932],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"avaritiaddons:CompressedChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNeed a place for all those ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about a compressed chest from Avaritia? This 243 slot chest will hold contents when broken, so no need for slow-inducing dolly!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"avaritiaddons:CompressedChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1518,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:sprinkler","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll the crops you could want","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of applying bonemeal or fertilizer by hand? A sprinkler can take water and boost your crop growth rate. Bonemeal or fertilizer will make it work even faster.\n\n§4Note that this sprinkler does not work with IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Forestry:fertilizerCompound","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"OpenBlocks:sprinkler","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11364,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1519,"preRequisites":[105],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32405,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§5§lPortable tanks too small?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about large steel fluid cells instead? Each holds 8, and they can stack to 64. Unfortunately, you have to load and unload them using GT machines, but hey, 512 buckets in a single slot is pretty good!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32405,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32405,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1520,"preRequisites":[1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLarge Aluminium Fluid Cells","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"512 buckets in a stack not cutting it? Aluminium cells can hold 32 buckets per cell, and stack to 64. 2,048 buckets in a single stack? That's half a supertank!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32407,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1521,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":643,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSeparating gems from the dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sifter runs so slow, you should make an HV sifter to get gems faster. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":643,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1522,"preRequisites":[86,1410],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11360,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNiobium-Titanium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Niobium-Titanium becomes more important in LuV Tier. It needs a EV Mixer to mix and an Electric Blast Furnace with Tungsten Steel heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2047,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11360,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1523,"preRequisites":[1504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ifu:ifu_buildingKit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Can't find those ores?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having trouble locating some of the basic ores? Trade in some coins for oreblocks to use in the Ore Finder Wand.\n\nIf you are clever, you can use one oreblock to find a vein containing another oreblock to use to find another vein. For example, if you choose Redstone, you can use that to find Cinnabar, which can be used to find Thaumcraft Aspect Shard ores in the Twilight Forest. Experiment and find some combos!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":60,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockores","Count":1,"Damage":937,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":35,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":870,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":834,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":500,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":810,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":526,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":530,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":523,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":535,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":57,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":936,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":935,"OreDict":""},{"id":"gregtech:gt.blockores","Count":1,"Damage":838,"OreDict":""}]}]},{"questID":1524,"preRequisites":[951],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1650}},"Damage":1602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter bolts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are in MV and have an EBF, you can make new bolts with vanadiumsteel-tipped magnalium. Your enemies will tremble at your might.\n\nCheck \"fletching\" under NEI for fletching options.\n\nGood hunting!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11371,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"Magnalium"},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1650}},"Damage":1602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1525,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1573}},"Damage":1635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lBest bolts?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That meteoric iron you found on the moon, when sent through the EBF, turns into this amazing meteoric steel, able to keep a fine edge. Put some on an Energetic Alloy tool rod to make an awesome bolt. Your next bolt you'll have to figure out yourself.\n\nFletching left as an exercise for the reader."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartToolRod","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11341,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"TConstruct:BoltPart","Count":1,"tag":{"DualMat":{"Material2":1573}},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1526,"preRequisites":[990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§k§r§9§m§l§r§m§n§o§r§9§lBest crossbow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic alloy has proven to be an amazing material. It's light weight and high stiffness makes it perfect for a crossbow limb. It is slightly slower to draw but still has amazing stopping power with its very high bolt speed. Durability is much improved over a carbon limb. \n\nThe material would also make an excellent bolt body. Perhaps you will find a suitable tip to match?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartCrossbowLimb","Count":1,"tag":{"material":"EnergeticAlloy"},"Damage":1635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":54,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":52,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1527,"preRequisites":[138],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockReinforcedObsidian","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCaging a demon - Wither killing chamber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever wanted to trap a wither but the only option was non moveable bedrock? Now that you made dark steel you can get reinforced obsidian which is wither-proof. Useful for hand killing and even automation once you get a powered spawner supplying you with wither skeleton skulls.\n\n§4Hint: Unlike vanilla obsidian reinforced obsidian CAN be moved by pistons which might come in handy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockReinforcedObsidian","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1528,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPersonal Chunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Let's craft some personal chunkloaders. 3x3 chunks are loaded. You need coins or ender pearls to power the chunkloader. \nEnder pearls power personal anchors for 4 hours per pearl, and 1 hour in passive anchors . Personal anchors can also be powered with ender fragments for 1h. \n\nPersonal anchors are loaded once the owner visits, and stays loaded while the player is logged in. \nPassive anchors are loaded once the owner visits, and stays loaded until the server resets.\n\nIf you are playing single player or on a private server, you can cheat in admin anchors or use FTB Utilities to control chunkloading."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ender_pearl","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1529,"preRequisites":[770],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.alpha","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChunkloading","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your hv assembler you can craft a world anchor.\n3x3 chunks are loaded. You need coins to power the chunkloader. \nPersonal anchors can be powered with ender pearls for 4 hours per pearl, passive anchors 1 hour per pearl. \n\n§4World anchors are always loaded, even after a server reset."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChunkloaderTierII","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1530,"preRequisites":[1454],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:ceresblocks","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ceres Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours and hours you will find a Ceres dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 4 rockets.\n\nThis will open the Planets Venus and Mercury and the Jupiter Moon Io."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ceresblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier4Key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1531,"preRequisites":[1532],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in a hv scanner and put the construction data on a data stick. The fourth tier schematic circuit uses an elite circuit and a heavy duty plate tier 4 and the data stick in a iv circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier4","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":4},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1532,"preRequisites":[80,1530,1533,1534],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 4 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 12 tier 4 heavy duty plates out of tier 3 plates and compressed ice plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":12,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceCompressedPlate","Count":66,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyAlloyIngotT4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceCompressedPlate","Count":12,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":128,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1533,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":389,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCallisto Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Callisto Ice is the material you need for Tier 4 Rockets. Look at Y 40-60."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Callisto","range":-1,"index":0,"dimension":45,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":389,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1534,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":390,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§b§lEuropa Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ledox is the material you need for Tier 4 Rockets which can be find on Europa. Look at Y 55-65."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Europa","range":-1,"index":0,"dimension":35,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":390,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1535,"preRequisites":[1532,1531,1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 4","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After weeks of hard work and a thousand stacks of iTNT your fourth rocket is finally ready. But before you can go to Io, Venus or Mercury you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier4","Count":1,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":4,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":6,"Damage":2,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":128,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1536,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:ingredient","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lI ain't afraid of no ghost!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've found a use for the Ectoplasm you can collect from spirits of the dead.\nIt makes a very useful glass that you can walk on, but mobs cannot. However, they think they can! So you can use this to create a moat around your base that drops mobs to the death in various ways, or just to shuttle them off somewhere else. Separate babies from mothers? Use it in a mob farm? Capture pigmen walking into the Overworld from you Nether portal? So many possibilities!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:ingredient","Count":1,"Damage":3,"OreDict":""},{"id":"minecraft:glass","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"RandomThings:spectreGlass","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"harvestcraft:stuffedeggplantItem","Count":3,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1537,"preRequisites":[753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Neutronium","MaxDamage":65536000,"SecondaryMaterial":"Neutronium"}},"Damage":120,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBlack and Decker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of having to replace tools all the time? Now that stainless steel is available, it's time to make some electric versions of the screwdriver and wrench! Charge them up like a battery, and they will last much longer than normal versions of the tools.\n\n§4You can use lithium batteries, or if you are on a budget cadmium batteries instead. \n\nLater Vibrant Alloy will make excellent tools with great durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":120,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":150,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32518,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1538,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":828,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCeres Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sheldonite, Platinum and Palladium you can found on Ceres. Look at Y 5-30.\nYou can get also Iridium out of a high tier material you need later."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Ceres","range":-1,"index":0,"dimension":42,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":828,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":85,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":52,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1539,"preRequisites":[1413],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32725,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Star","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The emitter and the sensor in iv need a quantum star to craft. Put your netherstar in a hv chemical bath and infuse it with radon gas."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:nether_star","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30093,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32725,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":9,"Damage":1,"OreDict":""},{"id":"miscutils:dustRadium226","Count":8,"tag":{"TickableItem":{"maxTick":90000,"CreationDate":422439,"Tick":0,"isActive":1}},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1540,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":908,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lMagnalium Source","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magnesite the source of Magnesium can be found in Twilight Forest at Y 10-40. Fullers Earth can be found on the Overworld at Y 50-70. Marble dust can be used for magnesium dust also."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":16,"Damage":908,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":928,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:heartybreakfastItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1541,"preRequisites":[721,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCropnalyzer","Count":1,"tag":{"uid":-73442049,"charge":100000,"Items":{}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyze your crops","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The cropnalyzer is a powered tool used to analyze IC2 crop seedbags. Charge it by placing it in an MV machine; recommended to put an MV battery in it as well to keep it full. To fully analyze a seed bag, you will need to put it through the cropnalyzer four times. If the crop is already planted, it is better to analyze it with the portable scanner instead of breaking it just to scan it - you have a chance of losing the seed every time you break it.\n\nThe cropnalyzer also has a feature called the IC2 Crop Calculator, where you can find the mix of outputs of breeding together any crops. To access the calculator, hit the IC2 side inventory key while holding the cropnalyzer. You can select any crop available and discover which crossbreeds have high chances.\n\nYou can choose up to four crops to breed together. Then click \"process\" and the bottom row will show the possible crossbreeding outputs, and their weights. You can use the + and - gui buttons to scroll through the row(s) of crops. You can also use a button in the GUI to sort the rows by tier or weight. You can invert the sorting by hitting the sorting button while holding shift.\n\nWhen trying to get a specific crop, you generally want to maximize its weight. But more specifically, you want to maximize the proportion of its weight out of all the weights. To determine the best crops to breed, look at their attributes. Parent crops that share more attributes with a crossbreed increase its chances. This means there are no benefits to breeding 3 or 4 identical crops together instead of 2, since all weights are increased evenly. \n\nUse the crops guide at https://tinyurl.com/GTNH-Crops for more details.\n\nTry a variety of combinations to get the crops you want. Often, breeding together two of the same crop is a surprisingly good option or even the best one. A large field of stickreeds has a good chance at making lots of valuable crosses."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropnalyzer","Count":1,"tag":{},"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":4,"tag":{"owner":"berriespp","name":"Glowflower","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:blockCrop","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":200000},"Damage":32529,"OreDict":""}]}]},{"questID":1542,"preRequisites":[721,103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine2","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crop automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crop-Matron is a LV machine that will monitor crops in a 9x9x3 area and automatically apply fertilizer, Weed-EX, and Water as needed. Water can be pumped in directly or use IC2 Universal water cells, normal cells aren't returned when they are used.\n\nThe Crop-Matron is rainproof, but make sure you cover up your power supply (you might find a fancy way to do this), or use an LV battery. A Lithium Ion will last about 2 hours.\n\nUse Weed-EX sparingly, since overuse will affect crops negatively. \n\nTilled dirt still requires a nearby water block to be hydrated as the Matron will only water the crop, not the soil. Try putting a lily pad on top so it isn't annoying to walk on, or using Garden Soil instead.\n\nYou'll need Stainless Steel to make the Crop Harvester.\n\nAs an alternative to the Crop Matron and Crop Harvester, you can make the Forestry Multifarm. It can also pick crops from cropsticks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"BuildCraft|Factory:tankBlock","Count":2,"Damage":0,"OreDict":""},{"id":"IronChest:BlockIronChest","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:blockMachine2","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemWeedEx","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:itemFertilizer","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1543,"preRequisites":[1273,1542],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemWeedEx","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Weed Ex","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Weed-EX is used to prevent the growth of Weeds on empty Crop blocks at the cost of crop quality. Damage to the crop's quality is permanent and cannot be reversed, aside from complete removal.\n\nUsage:\nWhile holding Weed-Ex, right-click on a Crop to apply it. It can also be placed in a Crop-Matron to automatically apply it to your crops. Overuse will reduce crop quality, capping their stats at 10."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemWeedEx","Count":32,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:spider_eye","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32402,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":29,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":30,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1544,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:fish","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFish Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make some bio diesel you need seed oil or fish oil and mix that with ethanol or methanol. Seeds give seed oil and fish produce fish oil when placed in a fluid extractor. \n\n§4There are rumors of a weird crop in the shape of a fish...\n\nOtherwise look under Fishing Farming Cooking tab for fish catching options. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30711,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30713,"OreDict":""},{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":32,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1545,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1158,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTime to ore drill!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Auto Miners are nice but you're going to reach a point where you will want MOOOOOOOOOOOOORE ores. This multiblock will help with that. It will also pre-macerate your ores and give you a little bonus crushed ores as well.\n\nHigher tiers of power will drill faster. You need to upgrade the energy hatch corresponding to the power tier. \n\nLater you can upgrade the ore drilling plant so it extracts from more than a 48 block radius. Each tier of the controller also gives 5 bonus fortune for small ores. At tier 3 you'll want to spread the wealth to multiple compressed chests!\n\nYou need mining pipes in the machine block and drilling fluid in the fluid hatch.\n\nThese are GT machines, so remember to protect them (and their power sources!) from rain on any side. And set a waypoint with Journeymaps so you don't forget where you placed it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1158,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":15,"Damage":4401,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":72,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":82,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":42,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:blockMiningPipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"liquid_drillingfluid","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17019,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1546,"preRequisites":[1504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond_ore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lRare ores","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Did you look for days to find Diamonds, Redstone, Tantalite, Certus Quartz or Mica?\n \nWell for a few mixes you can use different ores like Coal for Diamond Vein or Quarzite Ore for Certus Quartz Vein. Mica ore mix can be found if you have Cassiterite Ore (not the sand).\n\n§4Tetrahedrite in the nether can be found with copper ore."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1547,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPress all the things in MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the mv forming press you can make aluminiun iron plates for solar panels and a few rotors blades for turbines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":602,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1548,"preRequisites":[739],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IronChest:BlockIronChest","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Input chest for Ghetto ME System","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To be able to put items into the Ghetto ME system you need just a few additional pipes.\nThe Extraction pipe should be connected to the chest you want to take items from.\nInside the Extraction pipe you need to put the Item Extraction chip, and configure it to blacklist if you want it to take all items from the chest.\n\nThe Routed Junction pipe is needed so the items inside the pipes know which direction to take, without this they will just fly around inside the pipes without knowing where to go.\nYou might also need some additional item transport pipes depending on your setup."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":10,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1549,"preRequisites":[942,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"miscutils:MU-metatool.01","Count":1,"Damage":1000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lPlunger 2.0 The Hand Pump","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The new hand pump can remove fluids out of your machine input slots. The old plunger removes the fluid - only the hand pump can store it and drain it to a tank.\n\nUse your items in an LV assembler to craft your pump token, and then again to make the hand pump.\n\nWhen you tier up your assembler, you can make better hand pumps, up to EV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32600,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":2,"Damage":0,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28301,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17305,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32716,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32700,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1550,"preRequisites":[109],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More seed types","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This fancy addon allows your cart to plant/harvest more seed types. If you got an MV+ centrifuge you might want to look at glow flowers for some free redstone and gold."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1551,"preRequisites":[112,1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockRubSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More tree types","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The standard wood cutter can only chop down (and replant) vanilla trees. If you want to use saplings from other mods however this addon will come in handy. Who knows - maybe you are tired of clicking rubber trees with a treetap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:CartModule","Count":1,"Damage":88,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1552,"preRequisites":[108],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockDistributor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Further automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to load and unload a lot of different items from your cargo manager the pipes can get quite messy. The external distributor is a block you can place next to your cargo manager and it will help you to access different slots which you can specify in its GUI. Quite handy for pumping items in and out!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockDistributor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1553,"preRequisites":[108],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesCarts:BlockAdvDetector","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced detector rail","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a cargo manager you need a specific rail so that your cart can interact with it. Just place it next to the cargo manager, depending on the color of the side it is on you will have to adjust settings in the cargo manager GUI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesCarts:BlockAdvDetector","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:rail","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1554,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Exhale of the horned one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Exhale of the Horned One is an ingredient used in many recipes. It is acquired with a random chance when burning Oak saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1555,"preRequisites":[334],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutate your saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mutandis is a mutagen that is used by witches and warlocks to mutate plants into other species. Simply use Mutandis on small plants, grass, flowers, saplings, etc. and it will be randomly converted to another plant. Mutandis cannot mutate multi-stage plants like wheat and cactus.\n\nMutating plants is the only way to acquire Rowan, Hawthorn and Alder saplings.\n\nMutandis has another interesting property when crafted with raw meat. It seems to mutate it into another type of raw meat. It even seems to have an effect on Rotten Flesh.\n\nSome recipes require Mutandis as an ingredient.\n\nMutandis can be upgraded to Mutandis Extremis to have an effect on a wider variety of plants.\n\nMutandis is made in a Witches' Cauldron using Mandrake Root, Exhale of the Horned One and an Egg."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:egg","Count":8,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":22,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":48,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1556,"preRequisites":[1554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":32,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Use some Mouthwash of Olympus!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Breath of the Goddess is an ingredient used in many recipes. It is acquired with a random chance when burning Birch saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":32,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1557,"preRequisites":[1555],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchsapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mutated saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rowan saplings grow into Rowan trees when planted. Rowan trees can be harvested for Rowan logs and Rowan leaves (which yield more Rowan saplings). Rowan saplings cooked in an oven yield Wood Ash, and have a chance of producing a Whiff of Magic.\n\nRowan saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random it may take a few goes before Rowan saplings appear.\n\nHawthorn saplings grow into Hawthorn trees when planted. Hawthorn trees can be harvested for Hawthorn logs and Hawthorn leaves (which yield more Hawthorn saplings). Hawthorn saplings cooked in an oven yield Wood Ash, and have a chance of producing Odour of Purity.\n\nHawthorn saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random it may take a few goes before Hawthorn saplings appear.\n\nAlder saplings grow into Alder trees when planted. Alder trees can be harvested for Alder logs and Alder leaves (which yield more Alder saplings). Alder saplings cooked in an oven yield Wood Ash, and have a chance of producing Reek of Misfortune.\n\nAlder saplings can initially be acquired only by using Mutandis on another planted sapling (does not matter which type). Given the mutation of the sapling is random, it may take a few goes before Alder saplings appear."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:witchsapling","Count":1,"Damage":2,"OreDict":""},{"id":"witchery:witchsapling","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":16,"Damage":14,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1558,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Whiff of Magic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Whiff of Magic is an ingredient used in many recipes. It is acquired with a random chance when burning Rowan saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1559,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Odour of Purity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Odour of Purity is an ingredient used in many recipes. It is acquired with a random chance when burning Hawthorn saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1560,"preRequisites":[483],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:seedsbelladonna","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Witchery Seeds","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Witchery seeds, use a hoe on grass blocks away from water. To open the rest of the questline, you will need to do Thaumcraft quests and research the Witchery tab in the Thaumonomicon.\n\nAccording to the legend, when the root of the Mandrake plant is dug up it screams and kills all who hear it. This is only partially true. A fully grown Mandrake may scream causing immense discomfort to those around. This is why it is best to harvest the Mandrake root at night when the plant is more likely to be dormant. Mandrake is grown from Mandrake Seeds which may be obtained by breaking tall grass, or by breaking a partially (or fully) grown Mandrake plant.\n\nBreaking a fully grown Mandrake plant will either yield Mandrake Root or the Mandrake may awaken and cause all sorts of mischief (and pain to the ears!).\n\nBelladonna seeds can be planted and eventually grow into the multistage belladonna plant. The fully grown belladonna plant can be harvested to obtain more Belladonna seeds and a Belladonna flower.\n\nSnowbell seeds can be planted and eventually grow into the multistage snowbell plant. The fully grown snowbell plant can be harvested to obtain more Snowbell seeds, snowballs and occasionally a Icy Needle.\n\nWater Artichoke seeds can be planted and eventually grow into the multistage Water Artichoke plant. The fully grown Water Artichoke plant can be harvested to obtain more Water Artichoke seeds and a Water Artichoke Globe.\n\nWater Artichoke seeds can only be planted on still water blocks.\n\nGarlic is a plantable crop that can be used to make tasty food, and to deal with vampires. Garlic can be obtained by breaking tall grass, although it has a very low drop chance. It may be planted on tilled farm land, and will grow in five stages. When full grown the plant may be harvested for up to three dropped garlic bulbs. Which may either be replanted, or used in a crafting recipe.\n\nGarlic bulbs can be used to make meaty stew, a particularly nourishing meal. It is also the main ingredient in making a Garlic Garland, a useful tool in warding off vampires. Finally, garlic can be used by witches in a Witches' Cauldron to make a vampire Weakening brew, and by Witch Hunters, to make vampire resistant armor.\n\nWolfsbane seeds can be planted and eventually grow into the multistage Wolfsbane plant. The fully grown Wolfsbane plant can be harvested to obtain more Wolfsbane seeds and the Wolfsbane flower.\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:seedsmandrake","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedsbelladonna","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedssnowbell","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedsartichoke","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:garlic","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:seedswolfsbane","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:wheat_seeds","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinFarmer","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1561,"preRequisites":[1559],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":105,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Purified Milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Purified Milk is an antidote in a similar way to normal milk, although it only has a chance of working and will only remove a single status effect. It is advantageous because it can stack to 64 items.\n\nPurified Milk is an ingredient in the Brew of Sleeping."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},{"id":"witchery:ingredient","Count":3,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":105,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":31,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":34,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":36,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1562,"preRequisites":[336],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":3,"Damage":75,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Brew of love","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Love is a throwable potion that causes farm animals and villagers to get their luvin' on. When used on animals the effect is the same as if all hit animals were fed and their breeding cooldown is reset.\n\nIn the case of villagers, two (or more) must be hit by the same brew.\n\nThe Brew of Love may be thrown at a group of two or more enthralled zombies (created with a Brew of Raising or enthralled with the Infernal Infusion power), which will cause pairs of them to produce a baby zombie. It will also cause them to become a zombie villagers. Zombie villagers can be turned back to villagers either using the normal method, or by casting a Rite of Fertility.\n\nThe Brew of Love is created in a kettle using the recipe found in the book Witchcraft: Brews & Infusions. Into the pot, throw a Rose, a Golden Carrot, Whiff of Magic, a Lily Pad, a Water Artichoke Globe and Cocoa Beans.\n\nWear a Witches Hat (and/or robes) while brewing to get more brews than just three."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":3,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":75,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1563,"preRequisites":[1562],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sleep well!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Sleeping is the normal way for a Witch to enter the Spirit World. \n\nNeedless to say an unprepared witch will almost always experience a nightmare when they head to the spirit world this way. \nThe witch must drink the brew and then will fall into a deep sleep, leaving their body and items behind and entering the world of spirits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":75,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":105,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""},{"id":"minecraft:cookie","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":14,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1564,"preRequisites":[1563],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Spirit world nightmare","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The spirit world is an alternate reality that mirrors the Overworld in topography. When people dream they often end up in the spirit world without realizing it (often appearing as one of its many denizens). Powerful witches can create Brews of Sleeping that allow them to pass their awake consciousness into the Spirit World, leaving their bodies and gear behind.\n\nThe Spirit World is the only source of Wispy Cotton, Disturbed Cotton, and Mellifluous Hunger - the materials needed to make Dream Weavers. Also Brews of Flowing Spirit can only be made in the Spirit World.\n\nVery few things can pass into, or return from the Spirit World - keep this in mind when heading there (Icy Needle always stay in the inventory). Wispy Cotton, Disturbed Cotton, Mellifluous Hunger and Brews of Flowing Spirit can pass from the Spirit World to the Real World but not the other way.\n\nTwo important things to note: Circle magic does not function in the Spirit World; and Endermen cannot enter the Spirit World."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""}]}]},{"questID":1565,"preRequisites":[1106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nights not dark anymore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hardcore darkness is a pain but now the night will be bright. Be careful the mobs are the same."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:nether_wart","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":16,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"minecraft:nether_wart","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1566,"preRequisites":[1564],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:grave","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Early bird gets the...nightmare?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You wake up very early because of the nightmares following you in this dimension.\n\nYou weren't prepared for it. Let get some stuff first and enter a second time to get some wispy/disturbed cotton.\n\nIf you haven't unlocked your Brewing stand yet, you have to do it first. Look in the Novice Thaumaturge tab for the quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":78,"OreDict":""},{"id":"minecraft:potion","Count":4,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"AWWayofTime:alchemyFlask","Count":1,"tag":{"CustomFlaskEffects":[{"durationFactor":2,"concentration":0,"potionID":104,"tickDuration":1200}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1567,"preRequisites":[1566],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":99,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wake up early","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your second visit was much more relaxing I guess. With night vision and flight potion you found a few wispy/disturbed cotton already. \n\nDisturbed Cotton can be spun into Tormented Twine. It cannot be replanted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8262,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1568,"preRequisites":[1558],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Attuned stone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An attuned stone, is a diamond that has been infused with natural magic in a fiery medium. Attuned stones can be used to link non-magical devices to the magical currents present in the world, and are one of the main ingredients in crafting distilleries, kettles, altar foci and poppet shelves.\n\nThe other main use of attuned stones is to act as a portable power source for circle magic rites, when a nearby altar is not available. To act in such a way, the attuned stone must first be charged with a Rite of Charging."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":34,"OreDict":""},{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1569,"preRequisites":[1557],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":35,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reek of Misfortune","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reek of Misfortune is an ingredient used in many recipes. It is acquired with a random chance when burning Alder saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":32,"Damage":1,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1570,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tormented Twine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tormented Twine is spun from Disturbed Cotton using a Spinning Wheel. It is an ingredient used to make Dream Catchers.\n\nIt is made in a Spinning Wheel using Disturbed Cotton, String and Reek of Misfortune.\n\nAn Altar must be nearby to power the spinning wheel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":3,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":3,"Damage":35,"OreDict":""},{"id":"witchery:ingredient","Count":12,"Damage":99,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1571,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:distilleryidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Distillery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A distillery used by a witch is a construct used for distilling magical ingredients. It is unlike a normal distillery, because it heats itself using energy obtained from a nearby altar. The distillery must be within about 14 - 16 blocks of an altar to draw power from it - a small icon is shown in the interface if no power is available.\n\nOne or two ingredients are distilled together and will result in up to four resulting materials. A supply of clay jars is also needed to capture the some or all of the distillates.\n\nA distillery is crafted using Iron Ingots, Gold Ingots, an Attuned Stone and Clay jars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:distilleryidle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1572,"preRequisites":[1570,1574],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Nightmare protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Nightmares has two effects, firstly it will add a short weakness effect to a player when they wake up from a good nights sleep. Secondly, it will corrupt all other nearby dream weavers so that they have the opposite effect. If the dream weaver is itself corrupted by another nearby Dream Weaver of Nightmares, it will add a short blindness effect instead of nausea.\n\nThe Dream Weaver of Nightmares can also be used to fend off nightmares when a Brew of Sleeping is drunk. Having the Dream Weaver nearby will reduce the chance of a nightmare to 50 percent (this can be decreased further by other means!)."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":101,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16454,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16452,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1573,"preRequisites":[1571],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":30,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oil of vitriol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oil of Vitriol is an ingredient produced in a distillery by using Foul Fume and Quicklime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":28,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":16,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":2,"Damage":24,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1574,"preRequisites":[1573],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Diamond Vapor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diamond vapor is an ingredient made by distilling diamond in a distillery according to the recipe in the book, Witchcraft: Distilling, using a Diamond and Oil of Vitriol."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":30,"OreDict":""},{"id":"witchery:ingredient","Count":6,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1575,"preRequisites":[1556],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Foul Fume","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A foul fume (commonly known as sulfur dioxide) is an ingredient used in many recipes. It is acquired with a random chance when cooking vanilla food items (such as bread or raw meats) or jungle saplings in an oven."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":28,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitch","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1576,"preRequisites":[1572],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:end_portal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Spirit world daytime","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Placing your Dream Weaver of Nightmares close to where you sleep and entering the Dream World again, you have a 50% chance now that it be will be Daylight. Try a few times if necessary."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Dream World","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":78,"OreDict":""}]}]},{"questID":1577,"preRequisites":[1576],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:somniancotton","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wake up later","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your third visit was much more relaxing I guess. In the daytime you can find a few wispy cotton, which are needed for futher progression. \n\nIt can be collected and replanted, but will only spread if planted in the Spirit World, on Dirt or Grass that is next to a pool of Flowing Spirit.\n\nPlanting Wispy Cotton nearby when using a Brew of Sleeping near to a Dream Weaver of Nightmares will further reduce the chance of a nightmare by 10 percent for each cotton plant (up to 2).\n\nWispy Cotton will remain in a players inventory when they return from the Spirit World.\n\n"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8229,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1578,"preRequisites":[1577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fanciful Thread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fanciful Thread is spun from Wispy Cotton using a Spinning Wheel. It is an ingredient used to make Dream Catchers.\n\nIt is made in a Spinning Wheel using Wispy Cotton, String and Odour of Purity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":36,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1579,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":110,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better Nightmare Protection","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Charm of Fanciful Thinking is the only way to protect oneself from some of the worst effects a nightmare can throw at you. It just needs to be in a player's inventory for it to function.\n\nA Charm of Fanciful Thinking is crafted using Sticks and Fanciful Thread."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},{"id":"minecraft:stick","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":110,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1580,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Digging faster!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Iron Arm will add a mining speed boost to a player when they wake up from a good nights sleep. If the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a mining speed slowdown effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16456,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16457,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1581,"preRequisites":[1578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moving faster!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Fleet Foot will add a speed boost to a player when they wake up from a good night's sleep. \n\nIf the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a slowdown effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16458,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16450,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1582,"preRequisites":[1583],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hunger no more!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Fasting will add a boost to the saturation of a player when they wake up from a good nights sleep, essentially meaning they will not get hungry for the duration of the effect. If the dream weaver is corrupted by a nearby Dream Weaver of Nightmares, the weaver will instead add a hunger effect to the player."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":16421,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1583,"preRequisites":[1579],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mellifluous Hunger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mellifluous Hunger is an ingredient used in other recipes. It is dropped when a Nightmare is killed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8258,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1584,"preRequisites":[1593,1595],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":96,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Potion of flowing spirit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Brew of Flowing Spirit captures the essence of the Spirit World in liquid form. It can only be brewed in the Spirit World!\n\nThe Brew can be thrown at the ground and the liquid will burst out (the source block can later be picked up in a bucket). Standing in the liquid will have a minor healing effect for most creatures. Demonic or undead creatures will be weakened. Nightmares standing in the liquid will lose their invulnerability effect!\n\nHaving a pool of flowing spirit near a Dream Weaver of Nightmares will decrease the chance of a nightmare by 10 percent for each source block (up to 3)."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},{"id":"witchery:spanishmoss","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":69,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":22,"OreDict":""},{"id":"witchery:glintweed","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":96,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":32,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinCookII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1585,"preRequisites":[338],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"We need another oven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First of all you can't visit any other dim to get materials. Not the Twilight Forest, not the Nether or the End. Lets start with crafting a new oven and a stack of jars to start with some basic ingredients. For 500 Coins you can tranfer it to the Spirit Dim."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":64,"Damage":27,"OreDict":""},{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1586,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"More coins","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The second goal is to have a cauldron to make some mutandis but you need more coins anyways. \nYou have two options here - killing a few nightmares to get coins or selling some wispy cotton.\nYou need to switch a few times between dimensions to compress the coins first."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1587,"preRequisites":[1586],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Another Cauldron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After we have enough coins we can craft the cauldron and transfer it with 1000 coins to the spirit world."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit World","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:bucket","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:cauldron","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1588,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemSwordElemental","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Nightmares","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need more coins? Killing a few nightmares to get coins. "}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":100,"Name":"generic.maxHealth"},{"Base":1,"Name":"generic.knockbackResistance"},{"Base":0.35,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":100,"id":"witchery.nightmare","Victim":"","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":3847374037349003000,"Health":100,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":36378736087929,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"witchery.nightmare","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1589,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:somniancotton","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Wispy Cotton","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need more coins? Selling wispy cotton for coins."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"witchery:somniancotton","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1590,"preRequisites":[1587],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":14,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Dreaming mutandis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Go and find some chicken and eggs, brew some Exhale of the Horned One in your oven and plant some mandrake. Make a stack of mutadis to get some witchery tree saplings. Gravel hoes are good enough for planting stuff."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":55,"index":0,"dimension":0,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:egg","Count":10,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":10,"Damage":22,"OreDict":""},{"id":"witchery:ingredient","Count":10,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":60,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1591,"preRequisites":[1585],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Exhale of the dreaming horned one","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For later use do a few Exhale of the Horned One."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:sapling","Count":64,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":31,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1592,"preRequisites":[1593],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:altar","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Offerings in your dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For all your offerings you'll need an altar too. The spinning wheel needs it also.\n2000 coins are needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:altar","Count":6,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:arthana","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1593,"preRequisites":[1587],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kettle for the Spirit World","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A kettle is needed in the spirit world too. For a fee of 1500 coins you can transfer it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchIII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:kettle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:netherrack","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:glass_bottle","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1594,"preRequisites":[1592],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"spinning your dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You need the spinning wheel for the fanciful thread to finally make the Potion of Flowing Spirit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":1,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinWitchIII","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:spinningwheel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1595,"preRequisites":[1594],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fanciful Thread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fanciful Thread is spun from Wispy Cotton using a Spinning Wheel. It is an ingredient used to make the Potion of Flowing Spirit. This can be brewed only in the spirit world."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:string","Count":4,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":4,"Damage":36,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":4,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"witchery:ingredient","Count":32,"Damage":14,"OreDict":""},{"id":"witchery:somniancotton","Count":16,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"minecraft:shears","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1596,"preRequisites":[1590],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":36,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Odour of Purity in dreams","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For later use do a few Odour of Purity."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Spirit Dimension","range":-1,"index":0,"dimension":55,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchsapling","Count":64,"Damage":2,"OreDict":""},{"id":"witchery:ingredient","Count":16,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":16,"Damage":36,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":8,"Damage":27,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1597,"preRequisites":[1584],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More Power now!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dream Weaver of Intensity has two effects, firstly it will add a very short night vision effect (or blindness if corrupted by a nightmare) to a player when they wake up from a good nights sleep. Secondly, it will intensify all other nearby dream weavers so that they have either a stronger (but shorter lasting) effect or their duration is increased."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":101,"OreDict":""},{"id":"witchery:ingredient","Count":2,"Damage":100,"OreDict":""},{"id":"minecraft:item_frame","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":2,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":96,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":95,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":104,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:somniancotton","Count":8,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":8,"Damage":99,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSurvivorII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1598,"preRequisites":[897,895],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":211,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAvengers, assemble! 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to make the MV variant of the assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":1,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":212,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1599,"preRequisites":[114],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:nodeUpgrade","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lNode upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nodes can take many upgrades. For now, try building a World Interaction Upgrade. With it, you can setup simple autocrafting. \n\nPut a WIU in a transfer node attached to a crafting table. On the other side of the table, the 3x3 area is now treated as a crafting grid. Place items in inventories on the other side and if they make a valid recipe, the WIU will craft it. To speed it up, you will need to wait until HV for stainless steel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:nodeUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:BabyChest","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1600,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:reeds","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reed and resin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the first useful crops you'll get is Stickreed. It's fast growing, and can produce sticky resin and sugarcane (harvest before it reaches full maturity). It's also great for crossing with other crops to raise their stats.\n\nI'll trade you some fertilizer for 2 stacks of each."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:reeds","Count":128,"Damage":0,"OreDict":""},{"id":"IC2:itemHarz","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"stickreed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1601,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32530,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Metals from the Earth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With higher tier crops you can even increase your ore production. Mixing these fibers and leaves with crushed ores can quadruple your output, or you can convert them directly to tiny dusts. Later you can mix these materials to make purified ore with some UU matter.\n\nShow me your ability to get these metal crops and I'll give you some more fertilizer and some decent stat seedbags of rarer crops. Good source crops are essence berries or any of the oreberries.\n\nYou will need the proper oreblock beneath the crop to reach 100 percent maturity. For best growing conditions use dirt in between the oreblock and the crop.\n\nFor Ferru and Aurelia you will have to use a block of metal instead of a GT oreblock - a vanilla oreblock automined from the Twilight Forest will work. WAILA will tell you if the crop will accept the block you are using."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32530,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32500,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32527,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32540,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32528,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32503,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"aurelia","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Argentia","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Pyrolusium","scan":4,"growth":10,"resistance":10,"gain":10},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1602,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemCellHydrant","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Water water everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Even though you have to plant crops near the water, they don't actually get any hydration unless you apply water manually. Make a hydration cell and use it on your crops to increase their growth speed. \n\nYou can recycle empty cells in a centrifuge."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCellHydrant","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellHydrant","Count":2,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1603,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Feeling a little like a noob...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So could you grow me some essence berries so I can level up? You can plant the ones you get from the bushes, or breed up some.\n\nAs a reward, I'll give you a silly seed a friend of mine came up with. It will definitely keep you on your toes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TConstruct:oreBerries","Count":64,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Essence Berry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Goldfish Plant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1604,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32557,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I prefer to call it Canola","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This crop is a great source of seed oil for your biodiesel needs.\n\nYou can try getting it from dandelions, cocoa, potatoes or lemons."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Rape","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":35,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1605,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemTerraWart","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better than milk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I haven't been feeling well lately. Would you grow me some Terrawarts? They are better than milk, since they only remove negative effects, and stack to 64. Really nice when fighting that Alchemist infernal!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"terraWart","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemTerraWart","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1606,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:foodBerries","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sweet tooth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sugarcane or Reed not keeping up with your sugary needs? Sugar beets give 8 sugar per beet. Potatoes or carrots should easily give you sugar beets.\n\nHmm, now I want some candy. Give me some sugar from your beets. I'll share some with you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Sugar Beet","scan":4},"Damage":0,"OreDict":""},{"id":"berriespp:foodBerries","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"minecraft:sugar","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"MagicBees:jellyBabies","Count":64,"Damage":0,"OreDict":""},{"id":"harvestcraft:honeycombchocolatebarItem","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1607,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":40,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Swipe swipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you get some large fields, collecting the crops can be a real hassle. Make yourself the GT scythe, Sense, to make it 5x5 = 25 times easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":40,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1608,"preRequisites":[103,1172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1386,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Annealead Copper Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some annealead copper cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1386,"OreDict":""}]}]},{"questID":1609,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1426,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Gold Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some gold cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1426,"OreDict":""}]}]},{"questID":1610,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1341,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Cupronickel 2x Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some cupronickel wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1341,"OreDict":""}]}]},{"questID":1611,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1442,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Electrum 4x Wire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some electrum wires? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1442,"OreDict":""}]}]},{"questID":1612,"preRequisites":[162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":67,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFind Bastnasite, Monazita and Neodymium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A lot of EV machine parts need Neodymium. Rare Earth is a good source but on the Moon you can find a vein with pure Neodymium ore.\n\n§4The Bastnasite is a great source of fluorine as well.\n\nThe vein can be found on moon at Y Level 20-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":905,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":520,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":67,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1613,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":906,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lSource of Nickel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Garnierite, Nickel, Cobaltite, and Pentlandite, sources of Nickel, can be found in the Twilight Forest at Y 10-40. In MV you'll need tons of Nickel for Cupronickel.\n\nFind a Greatwood and Silverwood to unlock the Tier 0 quest What is That...? to open the Novice Thaumaturge tab and start your Twilight Forest adventure.\n\n§4Note: You can find small quantities of Pentlandite ore in the Overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":906,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":827,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":909,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:epicbaconItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1614,"preRequisites":[897],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":911,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lChemical Dehydrator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dehydrate your grapes to raisins. Or make some Styrene, Benzene or Ethylene at MV. Either way, this device is a nice to have."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":911,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1615,"preRequisites":[766,943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"lightlysteamcracked.naphtha","Amount":1000}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSynthetic Rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some synthetic rubber like styrene-butadine rubber?\nI'll show you a way you can get it. All you need is an Oil Cracker and a Distillation Tower. There are different ways to do it and this quest is only an example of how you can make it.\n\nFist step is to cracking your Naphtha with steam."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":40,"Damage":30739,"OreDict":""},{"id":"IC2:itemFluidCell","Count":40,"tag":{"Fluid":{"FluidName":"steam","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemFluidCell","Count":40,"tag":{"Fluid":{"FluidName":"lightlysteamcracked.naphtha","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1616,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1467,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Silver 2x Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some silver cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1467,"OreDict":""}]}]},{"questID":1617,"preRequisites":[1615,768],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30646,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Distillation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next steps you need a few fluids/gases like Benzene, Ethylene and Butadiene. Run your distillation tower a few cycles to get it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30646,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30739,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1618,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1386,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Copper Cable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some copper cable? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1366,"OreDict":""}]}]},{"questID":1619,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some rubber sheets? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":40,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17880,"OreDict":""}]}]},{"questID":1620,"preRequisites":[1621],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30637,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lStyrene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Styrene you can use the chemical dehydrator or your large chemical reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:Ethylbenzene","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30637,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30686,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1621,"preRequisites":[1617],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:Ethylbenzene","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEthylbenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Putting Benzene and Ethylene in the Chemical Reactor gives you Ethylbenzene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30677,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:Ethylbenzene","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1622,"preRequisites":[1620],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2634,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRaw Styrene-Butadiene-Ruber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is Raw Styrene-Butadiene Rubber. Mix your Butadiene, Styrene and Air (you can use oxygen as well) to make the dust. \n\n§4An HV chemical reactor is required."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30637,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30646,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":30,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":2634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30637,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1623,"preRequisites":[717],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Let's get some pipes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First we're gonna need some pipes to connect everything. Do not use these pipes in junctions or the items will choose which path to go at random and you don't want that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:glass_pane","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1624,"preRequisites":[1623],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Junctions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So how do we deal with junctions then? We use these pipes. They are smart and they will send everything where it needs to go, so if you make a junction make sure you put this pipe there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":22032,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":30645,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1625,"preRequisites":[1624],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Interacting with stuff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"That's all nice and all, but none of these pipes connect to chests and machines. What am I supposed to do with them?\n\nI'm glad you asked. You are going to need a special pipe for that. This is a pipe you need to use to connect to machines and chests. You'll have to set it up with chips that we'll make soon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":4,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":8,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17086,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":308,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1626,"preRequisites":[1625],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you need to make some chips to use in those interface pipes. These ones do not do anything but are needed as a material for crafting the others.\n\nNow would be a good time to look into IC2 crops to get all the dyes you will need for your advanced chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1627,"preRequisites":[1626],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item responder chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip also stores items in connected invetory. It designates a storage for items that are set in the filter of this chip. They do not actively request for items they only serve as a destination for items to go. You can open up the menu by rightclicking the chip. There you can set which items should it accept and the priority. Items will go to item responders with higher priority first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1628,"preRequisites":[1626],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item overflow chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip stores the items in connecting inventory. It designates a storage for items that have no other place to go. It is strongly recomended to have a default storage for items in every pipe system, otherwise bad stuff can happen. Best used with some large chest (diamond one for example).\n\nIt seems to have some bugs though, so don't craft more than one without testing it first.\n\nYou might have to just use a normal item responder and add the items you want routed back to you overflow spot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1629,"preRequisites":[1627],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dynamic item responder","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dynamic item responder chip behaves exatly like an item responder chip, but instead of you setting up which items it should accept, it looks in the chest what items are there and those items it will accept."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1630,"preRequisites":[1627,1628],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item extractor chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This chip will extract items from the connecting inventory. The extracted items then look for pipes with item responder chips where there's a free space they could go. If they don't find any they will go to the overflow default storage chest.\n\nIf you want it to extract everything leave the filter empty and set it to blacklist."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1631,"preRequisites":[1630],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item broadcaster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Item broadcaster is a chip that tells everyone in the pipe system what items it has in the connecting inventory and if anyone needs anything it will send it to them. Right click it to set the items it will transmit. If you leave it empty and set to blacklist it will transmit everything.\n\nDefinitely use one in combination with an item overflow chip on your default storage chest. That way overflow will end up in the chest, but will be useable by the rest of your system."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1632,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item stock keeper chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Item stock keeper looks at the connecting inventory and keeps item stocked in there. If the item is missing it will keep bothering item broadcasters every few seconds if they have the item and if they can send it. It's basically like an annoying child. \n\nIt is really useful though. Want a chest that will always have 64 cobble and dirt in it and if you take them they will get replaced? This guy is perfect for that job. It's great for keeping machines stocked. When stocking GT machines, the top left slot of the 3x3 is equal to the left slot of the machine. Want a chemical reactor that keeps 3 hydrogen cells ready to go to make ammonia, just add nitrogen? This is the chip for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1633,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Crafting chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Crafting chip does exactly what it says. It's not just for default crafting. You can use it with GT machines. Just put in the matrix that it should insert and the output is what it should extract. Great use for them is in combination with fluid canners or super tanks for filling cells. I would strongly recommend not overusing them. Wait untill you have access to AE2 for autocrafting stuff."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":2,"Damage":0,"OreDict":""},{"id":"IC2:itemPartCircuit","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":2000,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":1,"Damage":44,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1634,"preRequisites":[1631],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Request pipe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This pipe let's you request stuff from the system. It shows all items that are avaible thanks to broadcast chips and even stuff that can be crafted thanks to crafting chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17500,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":32,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":2,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1635,"preRequisites":[1634],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Simple storage system","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to build a simple system to store your stuff. Place down the drawer controller and place the drawers around it. Connect the interface pipe to the drawer controller and put the dynamic item responder and broadcaster chips inside. Don't forget to set the broadcaster to transmit everything by leaving the filter empty and setting it to blacklist. Now you can request stuff from your storage and if you have a chest with a pipe and extractor chip everything you put inside will be sorted into the storage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":1,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":5,"OreDict":""},{"id":"StorageDrawers:fullDrawers4","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:controller","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1636,"preRequisites":[1632,1633],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Energy:bucketOil","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Desulfuring oil automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This quest line will show you how to automate desulfuring of oil products. Return here once you have unlocked the LV distillery quest and have some polyethylene plates."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1637,"preRequisites":[1636,547],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Storing the fluids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First we should make some place to store all the fluids we'll use. 2 super tanks are required for this quest but you'll need one more later so it's better to build 3 right now.\n\nIf you're interested what they'll be used for:\n1 for oxygen\n1 for hydrogen\n1 for sulfuric acid"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":130,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1638,"preRequisites":[1637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:flowing_water","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Electrolyzing water","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now let's automate electrolyzing water into oxygen and hydrogen. You'll need hydrogen for tons of stuff including desulfurization, obtaining tungsten, and nitric acid production. Oxygen is also useful as I'm sure you noticed when making steel.\n\nHow to set it up:\n\nPlace the electrolyzer down and connect it to water and electricity. Place the 2 super tanks nearby. Set the electrolyzer to produce hydrogen gas and oxygen cells. Use normal GT fluid pipes to output the hydrogen gas into one super tank. That is now your hydrogen storage. Now connect interface pipes to all 3 machines.\n\nFor the electrolyzer put in item stock keeper set to keep 2 empty cells stored. Also put in extractor set to extract oxygen cells.\n\nNow for the oxygen storage put it item responder chip set to accept oxygen cells and extractor set to extract empty cells.\n\nNow put some empty cells inside your default storage chest and don't forget to have a broadcaster there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":371,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":2,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":3,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1639,"preRequisites":[1638],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30737,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Desulfuring the oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now it's time to start the actual desulfurization. Use a chemical reactor of your choice, fill it with sulfuric light fuel and hook it to power. Now connect an interface pipe to it. Put an item stock keeper inside set to store 4 hydrogen cells. Then put in item extractor set to extract Hydrogen sulfide and empty cell.\n\nGo to your hydrogen storage super tank and put in a crafting chip set to make one hydrogen cell from one empty cell.\n\nAnd that's all."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":6,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":7,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1640,"preRequisites":[1639],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30460,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dealing with H2S","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now let's convert all that H2S into sulfuric acid. Hook up a chemical reactor to electricity, water and interface pipe. Put inside an item responder chip set to accept H2S cells and extract empty cells. Distill that diluted sulfuric acid in distillery and store it in super tank.\n\nCongratulations. You now have a completely automatic desulfuring of oil, automatic production of hydrogen and oxygen and you also store all that sulfuric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":531,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":421,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":130,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":0,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Transportation:projectred.transportation.pipe","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1641,"preRequisites":[1632],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Small reward","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Here's a small reward for making all those chips."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":28,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":24,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":20,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":32,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":33,"OreDict":""}]}]},{"questID":1642,"preRequisites":[1640],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Reward for desulfuring automation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The greatest reward is having your stuff automated if you've done everything correctly, but here's a reward for making it this far.\n\nSome other setups to look at automating are making polyethylene and nitric acid. \n\nWith stock keeper chips you can always keep a set amount on-hand and when you pull out the cells to use elsewhere, your setup will automatically make more."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":28,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":24,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":20,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":32,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":8,"Damage":33,"OreDict":""}]}]},{"questID":1643,"preRequisites":[1527],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThere can be only one...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...so make them lose their heads. \n\nMake yourself a Cleaver with your tool forge and collect some wither skeleton skulls.\n\n§4If you have problems finding wither skeletons, once you get to HV you can put a powered skeleton spawner in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartLargeSwordBlade","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:skull","Count":3,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1644,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2817,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Salt for your salty mouth","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Modpack too easy? Tired of all the quests making the game trivial? Hateposting in github about the noobs making steam too powerful? Well here's a quest for you to turn all those OP coins into salt."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":500,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2817,"OreDict":""}]}]},{"questID":1645,"preRequisites":[333],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Now I feel bad...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...that I know creepers have hearts. Extract a few with your Arthana. You might want to add a few levels of Looting to get more drops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":21}]},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1646,"preRequisites":[335],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":102,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rumplestiltskin!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spinning hay into gold sounds like a fairy tale, but with your new magical spinning wheel you too can try tricking a queen into giving you their first born child.\n\nYou will need three for your witchwear, and can turn extra into gold nuggets in a furnace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":2,"Damage":102,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":1,"Damage":102,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1647,"preRequisites":[1574],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":72,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Leather goddess of Robe-us","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make appropriate witchwear, you'll need to make some impregnated leather with your diamond vapor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":12,"Damage":72,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:ingredient","Count":4,"Damage":72,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1648,"preRequisites":[1646,1645,1647],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The witch is back...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...and you're going to be in trouble. \n\nDress for success in your new Witches Hat and Robes. A girl has to look her best, so I'll give you a nice bag as reward.\n\nCheck NEI uses for impregnated leather for other accessories to your outfit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":3,"Damage":102,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":74,"OreDict":""},{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:ingredient","Count":11,"Damage":72,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"witchery:witchhat","Count":1,"Damage":0,"OreDict":""},{"id":"witchery:witchrobe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"witchery:brewbag","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinWitchII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1649,"preRequisites":[332],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":106,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Books are for nerds...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...And sexy male librarians. And also smart witches who want to learn their way around. Craft the first group of Witchery books."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":81,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":106,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":127,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":46,"OreDict":""},{"id":"witchery:cauldronbook","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1650,"preRequisites":[1649],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":107,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Going to need a big hat...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...to fit all this knowledge. Get some more books!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:ingredient","Count":1,"Damage":107,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":47,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":48,"OreDict":""},{"id":"witchery:ingredient","Count":1,"Damage":49,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":10,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1651,"preRequisites":[1650],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BloodArsenal:vampire_cape","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A dark path to travel down...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...but a path laden with power beyond imagination. Behold mortal, and be terrified!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"witchery:vampirebook","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BloodArsenal:vampire_cape","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1652,"preRequisites":[768],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPower of a jet engine...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Large Gas Turbine lets you burn gaseous fuels like hydrogen, methane, or benzene. You'll have plenty to turn into EV EU with your new distillation tower.\nJust like the Large Steam Turbine, the LGT uses turbine rotors. Use a fluid regulator to optimize the flow of gases into the turbine - not enough or too much will cause its output to drop.\n\nMake sure your dynamo hatch is rated for the amount of EU your rotor will make!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""}]}]},{"questID":1653,"preRequisites":[102],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trading_post","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAkihabra","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of talking one by one with every villager to determine their trades? A trading post will show you all available trades from villagers in the area. You'll need an Assembler to finish it up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17501,"OreDict":""},{"id":"minecraft:glass_pane","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Railcraft:machine.alpha","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trading_post","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:emerald","Count":5,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1654,"preRequisites":[784,1740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32730,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lAutomating power on/off","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you have a GT boiler or Large Combusion Engine with a faster startup time, you can automate it to produce power on-demand. Use a machine controller cover on the controller (protip: You can put it on the bottom, or on the side next to a casing, casings will transmit redstone signal). \nWith a machine controller cover, you can use redstone to turn the machine on and off. This is handy if you don't want to use a soft hammer to disable a machine.\n \nThe best way to do that is with an RS latch. One input will turn the machine on, and one input will turn the machine off.\nUse a comparator attached to a valve to measure the steam level in your multiblock Iron or Steel Tank. Invert the signal to turn on your boiler when the steam level is low. When the steam level signal is high, turn your boiler off. Use a trail of redstone to lower the signal strength. Because of boiler/turbine warmup, try to set the ON strength to 30 percent of capacity and OFF strength to about 90 percent.\n\nRed alloy wire will hold a redstone signal for a longer distance.\n\nYou can use a Energy Detector Cover in Normal Electrical Storage (including batteries) mode to monitor the power in a battery buffer and use it to enable/disable generators in a similar way. Change mode using a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32730,"OreDict":""},{"id":"ProjRed|Integration:projectred.integration.gate","Count":1,"Damage":12,"OreDict":""},{"id":"ProjRed|Integration:projectred.integration.gate","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:redstone","Count":16,"Damage":0,"OreDict":""},{"id":"ProjRed|Transmission:projectred.transmission.wire","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32734,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":4,"OreDict":""}]}]},{"questID":1655,"preRequisites":[1233,940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lOne Dragon Egg is not enough Mr Bond","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dragon eggs are very rare and only drop after a dragon's death. How about I show you a way to recreate this powerful item out of a monster spawn egg?\n\nLets start with step one. Using a mob spawn egg, growth medium, and bacteria to create a bigger egg. This process needs one hour. \n\nBe sure your cleanroom is 100 percent clean or you will risk loosing the item.\n\nIf you have not been on Mars yet you have to wait until you can make mutagen for the next step. It is on the EV tab after visiting Mars."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:spawn_egg","Count":1,"Damage":32767,"OreDict":""},{"id":"Genetics:misc","Count":64,"Damage":4,"OreDict":""},{"id":"gregtech:gt.Volumetric_Flask","Count":1,"tag":{"Capacity":1000,"Fluid":{"FluidName":"binnie.bacteria","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":50,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":51,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1656,"preRequisites":[940,186,1655],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEgg mutation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you found a way to make bacterial sludge stronger and research mutagen try soaking your bigger egg in it. You need to wait a bit (up to one hour).\n\nNext use your bigger egg, a stack of uranium 238 (be sure you wear your hazamuit suit), and mutagen. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.TheBigEgg","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemUran238","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"mutagen","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":61,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":56,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1657,"preRequisites":[1656],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lEnder Egg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step you must infuse your egg with endium dust and molten ender to get a ender egg. This process needs 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MutatedEgg","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2770,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"ender","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"HardcoreEnderExpansion:spawn_eggs","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1658,"preRequisites":[1657],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDraconium Egg","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to add draconium and ender goo to the ender egg to get a draconium egg. This process takes 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.EnderEgg","Count":1,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":"dustDraconium"},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"endergoo","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":301,"OreDict":""},{"id":"minecraft:spawn_egg","Count":1,"Damage":25,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1659,"preRequisites":[1658],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDragon Egg Omlet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The last step to create you dragon egg is to add enderium and a dragon heart to the draconium egg. This process takes 1 hour. Your cleanroom must be 100 percent clean before you start the process. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.DraconiumEgg","Count":1,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:dragonHeart","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemFluidCell","Count":1,"tag":{"Fluid":{"FluidName":"enderium.molten","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:essence","Count":64,"Damage":0,"OreDict":""},{"id":"DraconicEvolution:draconiumDust","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1660,"preRequisites":[1622],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lStyrene-Butadine Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we add a bit sulfur to the raw dust and get molten styrene-butadiene rubber. Use a Plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":2634,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":2022,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":54,"Damage":17635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30646,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1661,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30664,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSilicone Rubber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want to make some synthetic rubber like Silicone Rubber?\nThere are different ways to do it and this quest is only an example of how you can make it.\n\nFirst step you need Chloromethane. \n\nYou can use 2 Chlorine and 1 Methane per Chloromethane in your chemical reactor.\n\nAlternatively you can use Methanol and Hydrochloric Acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30664,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30683,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1662,"preRequisites":[1661],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30663,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lDimethyldichlorosilane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next steps you need Chloromethane and Silicon Dust. Finally you get Dimethyldichlorosilane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30664,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":2020,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":30663,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30673,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1663,"preRequisites":[1662],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2633,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lPolydimethylsiloxane Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put Dimethyldichlorosilane and Water into the chemical reactor and get Polydimethylsiloxane."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":30663,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":21,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2633,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2633,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1664,"preRequisites":[1663],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17471,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSilicone Rubber Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now we add a bit of sulfur to the polydimethylsiloxane dust and get molten silicone rubber. Use a Plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":2633,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":7,"Damage":2022,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":63,"Damage":17471,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30664,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1665,"preRequisites":[2317,1491,2321],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11374,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lHSS-S","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have HSS-G, it's time to make HSS-S. This new alloy is an important part of a lot of IV, LuV and ZPM recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11374,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1666,"preRequisites":[1491],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30024,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§b§lArgon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process some of the new ingots you will find, you need argon. Your first source will come from air, in small amounts.\n\n§4Hint: Use compresed air in a vacuum freezer and get liquid air. This will be a source of argon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30024,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1667,"preRequisites":[1666,1538],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11324,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"On Ceres you can find small naquadah ores. Now that you have the dust and argon, you can make some naquadah ingots.\nYour EBF needs HSS-G heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11324,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1668,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11372,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"HSSG","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After you can make Tungsten Steel and may upgrade your Electric Blastfurnace with new Coils you are able to make HSS-G Ingots. This ingot becomes very important in LuV tier.\nHss-g is made out of tungstensteel, chrome, molydenum and vanadium dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11372,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1669,"preRequisites":[1414],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1184,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Circuit Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The IV circuit assembler will let you make easier MV circuits, as well as single step EV circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1184,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1670,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32032,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Doped Monocrystalline Silicon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make the most advanced wafers, you need to make naquadah dopped monocrystalline silicon first. The process takes 750 seconds and requires silicon blocks and a naquadah ingot in the Electric Blast Furnace. You can make 64 wafers out of every boule."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30024,"OreDict":""},{"id":"gregtech:gt.blockmetal6","Count":64,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11324,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32032,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmetal6","Count":4,"Damage":9,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2324,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1671,"preRequisites":[1670],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32035,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Doped Wafer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To create some naquadah doped silicon wafers, place the monocrystalline naquadah doped silicon boule in a cutting machine. An HV cutting machine is needed for future advanced wafers and chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32035,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1672,"preRequisites":[1671,1006,1697],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun at EV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the EV one. It generates 2048 EU/t max. Most GregTech machines can use them as covers. First you need to produce quadruple sunnarium plate. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":20318,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17362,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17100,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32754,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32051,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":19020,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32706,"OreDict":"circuitMaster"},{"id":"dreamcraft:item.IrradiantReinforcedTungstenSteelPlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":6,"Damage":2380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":11318,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1673,"preRequisites":[1669,1671,1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32047,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSoC - System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make Lv and MV circuits much cheaper you need soc's. System on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32046,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32047,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24507,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1674,"preRequisites":[1407,1673],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32080,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCheaper MV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the IV circuit assembler and SoC's you can now make integrated processors for a reduced price."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19308,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":26345,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32080,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1675,"preRequisites":[1669],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32021,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lGlass Fiber","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Glass Fiber is used in Fiber Reinforced Boards for circuits.\nBorax can be extracted out of Salt ores. Electrolyze it to get Boron and mix it with Glass dust.\nThe ingots can be turned into glass fiber in the wiremill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":46,"Damage":2941,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2009,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":56,"Damage":2890,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2611,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11611,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32021,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1676,"preRequisites":[1224,1675,1669],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17610,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§b§lFiber Reinforced Epoxid Sheet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fiber Reinforced Epoxid Sheets are needed for the more advanced circuits. Mix glass fiber with epoxid to get your sheets. Alternatively you can use raw carbon fiber. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32021,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":64,"Damage":470,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17610,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11067,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1677,"preRequisites":[1676],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32103,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lEmpty Fiber Reinforced Glass Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fiber Reinforced circuit boards require fiber reinforced epoxid resin sheets, copper foil and sulfuric acid to make an empty board. By adding annealed copper foil and Iron(III) Chloride or Sodium Persulfate you can craft a More Advanced Circuit Board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17610,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":29035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":29345,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":32720,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":5,"Damage":32103,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29345,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":17610,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1678,"preRequisites":[1679,1249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32085,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lSingle step EV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantumprocessors are your first chance to make EV circuits in a single craft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32057,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32085,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1679,"preRequisites":[1677,1249,1247],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32056,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQbit Wafer and Chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Qbit Wafer is made out ofa Nano CPU Wafer and quantum eyes. Cut it for Qbit processor chips.\nA cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32056,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32057,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30093,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2980,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1680,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32675,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lThought emitters were bad enough?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field generators are a big part of lategame crafts, and yes they always suck to make."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32675,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1681,"preRequisites":[202],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the ender quarry on its own with speed upgrade is good, why not speed it up a little bit more?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1682,"preRequisites":[1681],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAccelerating things III","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If Speed upgrade II is to slow craft a speed upgrade III."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:enderQuarryUpgrade","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1683,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1185,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lLuV Circuits Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV circuit assembler is a nice one, giving you both cheaper HV circuits, as well as IV-UV circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1185,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1684,"preRequisites":[1685],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32082,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCheaper HV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now you can make nanocircuits in a single simple step. They cost a new wafer, the ASoC wafer. They get more useful in zpm to make cheaper EV circuits as well."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":256,"Damage":19303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":256,"Damage":26085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32082,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1685,"preRequisites":[1671,1407,1683],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32049,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lASoc Advanced System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make HV and EV circuits much cheaper you need ASoCs. Advanced system on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32048,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32049,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24528,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24507,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1686,"preRequisites":[1683,1249,1522,1687,1688],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32089,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you're this far into LuV, you can make easier IV circuits, as well as your first UV circuit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32070,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32018,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32089,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32049,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32102,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1687,"preRequisites":[1689],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32070,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystal Chips","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make these chips you need Europium, as well as an HV Autoclave in the Asteroid Field dimension to achieve \"low gravity\"."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":30501,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":8,"Damage":70,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32069,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17501,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32069,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32713,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32070,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32074,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":2,"Damage":70,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1688,"preRequisites":[1677,1683],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32104,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lElite Circuit Board","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elite circuit boards require a fiber reinforced board, platinum foil and sulfuric acid to make an multilayer reinforced board. By adding again platinum foil and Iron(III) Chloride or Sodium Persulfate you can craft an elite circuit board."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32712,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":29085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32720,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1689,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10930,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§c§lLuV Laser Engraver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV laser engraver is an important part of lategame circuit production. You need to make crystal CPU's for both wetwares, and crystalprocessors, the cheaper IV circuit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10930,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1690,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":0,"globalShare":1,"questLogic":"AND","name":"Tier 6 > Tier 7","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Three Tier 6 lootbags give a better one = Tier 7."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]}]},{"questID":1691,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30605,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPolybenzimidazole","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polybenzimidazole is a synthetic fiber used in ZPM Hulls and in high tier solar panels. It has many steps to produce it. Let's start with the bas eingredients.\n\nFirst we make some chlorobenzene out of benzene and chlorine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":384,"Damage":30023,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":192,"Damage":30686,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":192,"Damage":30605,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1692,"preRequisites":[1691],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30628,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNitration mixture","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We also need nitration mixture. We can do it out of nitric acid and sulfuric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30628,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1693,"preRequisites":[1691,1692],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30592,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l2-Nitrochlorobenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next step is to mixing the nitration mixture with your chlorbenzene in the hv chemical reactor to get 2-nitrochlorobenzene."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30628,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30605,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30592,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1694,"preRequisites":[1693],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30596,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§b§l3,3 Dichlorobenzidine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing 2-nitrochlorbenzene with tiny copper dust gives you 3,3 Dichlorobenzidine in an EV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30592,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30596,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1695,"preRequisites":[1694],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30597,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§l3,3 Diaminobenzidine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mixing 3,3 Dichlorobenzidine with Ammonia and Zinc in an IV Chemical Reactor gives you 3,3 Diaminobenzidine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30596,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30659,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2036,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30597,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1696,"preRequisites":[176,186,861,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":425,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lChemical reactions at IV level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High tier chemical recipes need a high tier IV chemical reactor.\n\nAlternativly you can use your Large Chemical Rector with two EV or one IV energy hatch."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1697,"preRequisites":[1695,1698],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17599,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPolybenzimidazole finally","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"3,3 Diaminobenzidine and Diphenyl Isophtalate will finally give you molten Polybenzimidazole. Use a plate mold to get plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30597,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30598,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":17599,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1698,"preRequisites":[1699,1700],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30598,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lDiphenyl Isophtalate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mix Sulfuric Acid, Phtalic acid and Phenol to get Diphenyl Isophtalate. An IV Chemical Reactor is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30720,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30595,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30598,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1699,"preRequisites":[1691],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30687,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Phenol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can get Phenol in different ways, but why not try using your chlorobenzene and some water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30605,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":128,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30687,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1700,"preRequisites":[1701,1702],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30595,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPhtalic acid","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get Phtalic acid you need mix Dimethylbenzene, tiny piles of Potassium Dichromate and Oxygen in an EV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30593,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":594,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":128,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30595,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1701,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30593,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lDimethylbenzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dimethylbenzene can be distilled from Wood Tar or using Benzene and Methane gas in a Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30593,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1702,"preRequisites":[1704,1703],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2594,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPotassium Dichromate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potassium Dichromate is made out of Potassium Nitrade and Chromium Dioxide in an HV Chemical Reactor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2591,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2590,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2594,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1703,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2590,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPotassium Nitrate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Potassium Nitrade is made out of potassium and nitric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2025,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2590,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1704,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lChromium Trioxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chromiumtroxide is be made out of chrome and oxygen in two steps. First you make chromiumoxide and then chromiumtrioxide."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2361,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2591,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1705,"preRequisites":[1678],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32086,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Processor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantumprocessor Assembly is a IV Circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32085,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":48,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":96,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32086,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":24,"Damage":32014,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1706,"preRequisites":[1705],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32087,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lMaster Quantum Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Master Quantumcomputer is an LuV Circuit and needs a cleanroom."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32086,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":192,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32087,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32016,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32043,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1707,"preRequisites":[1706],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32088,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lQuantum Processor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Quantumprocessor Mainframe is the first ZPM circuit you can make."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32087,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":192,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":192,"Damage":1380,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32088,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1708,"preRequisites":[1686],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32096,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessor Assembly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crystal Processor Assembly is a LuV Circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32089,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":96,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32096,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19360,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1709,"preRequisites":[1708],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32090,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lUltimate Crystal Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Ultimate Crystalcomputer is a ZPM circuit. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32096,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19360,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32090,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32041,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1710,"preRequisites":[1709,1711],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32091,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lCrystalprocessor Mainframe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crystalprocessor Mainframe is the first UV circuit you can make. A cleanroom is needed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":4115,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32090,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32014,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":64,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32091,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32104,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1711,"preRequisites":[1489,476],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":2400,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lSuperconductors 32768 eu/t","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about lossless 32768 EU IV wires? Tetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxide is a superconductor wire and will transfer your energy without any loss. Every voltage now has superconductor wires and a base wire with only a very small EU/t loss.\n\nMix indium, tin, barium, tianium, copper and oxygen in an EV mixer. Now you have the base dust, which needs an EBF with Naquadah coils, and a vacuum freezer to cool it down.\n\nMake some LuV superconductor base wires and use an assembler to combine these wires with helium and tiny enderium pipes and an LuV pump to get your 32768 EU/t superconductor wires."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2056,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2057,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2028,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":14,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":28,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2991,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11991,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2280,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":4,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2280,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":40,"Damage":5190,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32615,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":48,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":5,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":60,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1712,"preRequisites":[1673,1407],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32078,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lCheaper LV circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the IV circuit assembler and SoC's you can now make a microprocessor for a reduced price."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32078,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32047,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1713,"preRequisites":[1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32061,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSimple SoC - System on a chip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For a replacement for vacuum tubes in simple circuits you'll need simple SoC's. System on a chip."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32060,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":6,"Damage":32061,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24514,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24540,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1714,"preRequisites":[1713],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32075,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§8§9§lCheaper Simple Circuit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The NAND chip is an industrial replacement for the vacuum tubes that is much cheaper. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32101,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32061,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":26308,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":32,"Damage":19057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32075,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24514,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24540,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1715,"preRequisites":[1538,1412],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier4Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOn your way to Tier 4 DIMs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tier 4 Planets are Jupiter's Moon Io where you will find the next dungeon, Venus (needs a SpaceSuit) and Mercury."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Reach asteroid belt","range":-1,"index":0,"dimension":30,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":16,"Damage":1,"OreDict":""},{"id":"GalaxySpace:ioblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:venusblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:venusblocks","Count":16,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":1,"OreDict":""},{"id":"GalaxySpace:mercuryblocks","Count":16,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1716,"preRequisites":[1715],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":84,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIridium Mix","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nickel, Iridium Palladium and Mithril you can find on Io or Venus. Look at Y 15-40.\nYou can get also Osmium out of Iridium Ore for high tier materials you need later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":34,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":84,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":52,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":331,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1717,"preRequisites":[1715],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":391,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lVenus Trip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Venus has two ore mixes you really want to find. One mix is the Quantium Mix and the other is Naquadah.\n\nMake sure you are wearing proper protective equipment!\n\n§4Quantium is found at Y 5-25 and Naquadah Y 10-90."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Venus","range":-1,"index":0,"dimension":39,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":391,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":509,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":375,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":382,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":128,"Damage":324,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":326,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1718,"preRequisites":[213,86],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11358,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lYttrium-Barium-Cuprate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yttrium-Barium-Cuperate becomes more important in LuV Tier. It needs an EV Mixer to mix and a Electric Blast furnace with Tungsten Steel heating coils."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":11,"Damage":2045,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":22,"Damage":2063,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":33,"Damage":2035,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2358,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":11358,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1719,"preRequisites":[1672],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lPower of the Sun 1x1 EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 2048 EU panels on a block to make them placeable in the world. Use an IV assembler to combine the panel with an EV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32540,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32653,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:BlockAdvSolarPanel","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1720,"preRequisites":[1671,1007,1722],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPower of the Sun at IV Level","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next solar panel you can make is the IV one. It generates 8192 EU/t max. Most GregTech machines can use them as covers. First you need to produce sunnarium alloy out of reinforced iridium and sunnarium. The Avaritia 9x9 dire crafting table is required to make this panel."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AdvancedSolarPanel:asp_crafting_items","Count":2,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17358,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17346,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32755,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32034,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32053,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":18599,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":20020,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32088,"OreDict":"circuitUltimate"},{"id":"dreamcraft:item.IrradiantReinforcedChromePlate","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":6,"Damage":2400,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11318,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1721,"preRequisites":[1720],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"supersolarpanel:SpectralSolarPanel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPower of the Sun 1x1 IV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Put those 8192 EU panels on a block to make them placeable in the world. Use an LuV assembler to combine the panel with an IV hull, a battery, and a robot arm. This panel doesn't need to be cleaned manually."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32756,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32545,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32654,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"supersolarpanel:SpectralSolarPanel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1722,"preRequisites":[1489],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10780,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lLuV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The LuV assembler is needed for IV Solar Panels and other high tier stuff. Lets build one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":10780,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32103,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1723,"preRequisites":[1535],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:ioblocks","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"IO Dungeon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After hours and hours and endless swimming in lava you will find a Io dungeon. A big hole will show you the way to the dungeon. Go and fight some mobs before you have to kill the Boss Monster. It will drop the key for the chest with the schematics for tier 5 rockets.\n\nThis will open the Moons from Saturn and Uranus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:ioblocks","Count":16,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier5Key","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1724,"preRequisites":[80,1717,1723],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 Heavy Duty Plates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rockets require heavy duty plates for the main hull. Let's craft 60 tier 5 heavy duty plates out of tier 4 plates and compressed quantium plates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":60,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":480,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyAlloyIngotT5","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":60,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":8,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"IC2:blockITNT","Count":256,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1725,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 5 Schematic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Each rocket needs a construction plan. Scan it in an HV Scanner and put the construction data on a Data Stick. The fourth tier schematic circuit uses an elite circuit and a heavy duty plate tier 5 and the data stick in a LuV circuit assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.SchematicTier5","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"},{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"rocket_tier":5},"Damage":32708,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11083,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1726,"preRequisites":[1724,1725,1730,1727,1728,1729],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.Tier5Rocket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rocket Tier 5","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a month of hard work and ten thousand stacks of iTNT your fifth rocket is finally ready. But before you can go to Saturn and Uranus Moons you need to craft a few more things."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.SchematicsTier5","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":12,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.ModuleLander3","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.MediumFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LargeFuelCanister","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.Tier2Booster","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.Tier5Rocket","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:blockITNT","Count":256,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":24,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceIII","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1727,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Nose Cone Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a nose cone. Tier 5 rocket needs a heavy nose cone tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftMars:item.heavyNoseCone","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27316,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyNoseConeTier3","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.LedoxCompressedPlate","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1728,"preRequisites":[1731],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Rocket Engine Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a rocket engine. A heavy one tier 3 is needed in the tier 5 rocket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":20,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.Tier2Booster","Count":8,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyRocketEngineTier3","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LedoxCompressedPlate","Count":16,"Damage":0,"OreDict":""},{"id":"GalacticraftMars:item.null","Count":32,"Damage":5,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1729,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Heavy Duty Rocket Fins Tier 3","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs a few rocket fins. Tier 5 rockets need heavy ones Tier 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.CompressedSDHD120","Count":6,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier5","Count":24,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.HeavyDutyRocketFinsTier3","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"GalacticraftMars:item.null","Count":8,"Damage":3,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.HeavyDutyPlateTier4","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1730,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.LargeFuelCanister","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Fuel Canisters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every rocket needs fuel storage canisters. For the tier 5 rocket you need to craft two medium and two large canisters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.MediumFuelCanister","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.IceDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.QuantinumDualCompressedPlates","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":27030,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LargeFuelCanister","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.QuantinumCompressedPlate","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.LedoxCompressedPlate","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1731,"preRequisites":[1724],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"dreamcraft:item.Tier2Booster","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Booster Tier 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The distance between Planets and Moons is much larger now so the rocket needs bigger boosters to reach it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"dreamcraft:item.LedoxCompressedPlate","Count":12,"Damage":0,"OreDict":""},{"id":"GalacticraftCore:item.engine","Count":4,"Damage":1,"OreDict":""},{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":16,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.CompressedSDHD120","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"dreamcraft:item.Tier2Booster","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11374,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11030,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":41,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1732,"preRequisites":[1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_jetplate","Count":1,"tag":{"electricity":100000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"EVA equipment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who wants to trudge around on the surface when you can fly? Upgrade your chestplate with a jetpack and fly around Venus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorJetpackElectric","Count":1,"tag":{"charge":30000},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_jetplate","Count":1,"tag":{"electricity":100000},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1733,"preRequisites":[1531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Journey to the bottom of a molten ocean","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Venus is hot, so hot it can melt lead. On top of that the atmosphere is so thick, 90x the Overworld, that it will crush you. Not to mention the Sulfuric Acid! You will need to construct a special suit to survive on Venus without dying instantly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_plate","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_leg","Count":1,"Damage":0,"OreDict":""},{"id":"GalaxySpace:item.spacesuit_boots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"GalacticraftMars:item.itemBasicAsteroids","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureIII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1734,"preRequisites":[1733],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"GalaxySpace:item.spacesuit_gravityboots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gravity boots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These boots will help you fall faster in low gravity environments. Or not. Maybe. Give them a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalaxySpace:item.spacesuit_gravityboots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSpaceIII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1735,"preRequisites":[1205],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5591,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBowl full of spaghetti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or at least factories full of item pipes. With these simple item pipes and conveyors you can take items out of one machine and feed them immediately into a second machine.\n\n§4Later you can make better item pipes. Look for \"item pipe\" in NEI for options."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":17057,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5590,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spagettiItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1736,"preRequisites":[895],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":5602,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lPipes, pipes everywhere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are in MV, you will want to start automating processes. Polyethylene, O2, N2, H2, rubber, charcoal, etc. Faster item pipes will help with transporting items quickly around your base. For now, use your spiffy new extruder to craft some brass item pipes. \n\nThe reward - restrictive item pipes - allow you to prioritize destinations. Locations on the other side of a restrictive pipe are treated as much further away than locations on the same side of a pipe. Very handy when you want overflow (or non-matching) items to go somewhere else!\n\nFor higher tiers, look up \"* item pipe\" in NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":11301,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":12,"Damage":5601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":3,"Damage":5641,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1737,"preRequisites":[1288],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:redstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More Red, less Wheat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When breeding together crops for an output crop, try to get crops that are close in tier to the output crop, and have similar attributes to the output crop. \n\nFor example, Redwheat has \"Red\", \"Wheat\" and \"Redstone\" attributes and is tier 6. Netherwart has \"Red\" and is tier 5. Use the cropnalyzer crop prediction mode to see how many points Redwheat has using two Netherwart. \n\nYou'll also want to make sure the light level is between 5-10 for the cross breeding to occur. \n\nReally though, once you get to MV it's better to make a Glowstone crop and centrifuge it for redstone. Red wheat == Dead wheat"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":2,"tag":{"owner":"IC2","name":"netherWart","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"redwheat","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinFarmerII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1738,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"openglasses:openglasses","Count":1,"Damage":7734,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lWhen all you have is a hammer...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...the whole world looks like a nail. When looking for good tool materials, look for the generic tool in NEI and use R to find the recipe. Then use U on the source materials you have to find out their durability options. Tool parts are normally not in NEI, like the drill bit. So use NEI U on plates etc to figure out their recipes. \n\nThe GT tools each have special uses.\n\nScrewdriver - Used on covers to change their behavior.\n\nWrench - Used to change the output direction on a GT machine, or to break it. Can also disconnect/connect pipes or enable their built in shutter.\n\nCrowbar - Remove covers from machines or pipes.\n\nWire cutters - Connecting/disconnecting wires/cables.\n\nSoft mallet - Turning machines on/off.\n\nHammer - Prospecting for ores in a limited way in front of you, and smashing ore blocks into crushed ores."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1739,"preRequisites":[1231,146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockFarmStation","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lFarming a little easier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of the forestry farms requirements? The Ender IO Farming Station is available to ease your suffering. It just requires EU and can be easily upgraded with capacitors. Most normal crops and trees work with it, but unfortunately IC2 crops do not."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":22378,"OreDict":""},{"id":"EnderIO:itemMaterial","Count":2,"Damage":5,"OreDict":""},{"id":"EnderIO:itemMachinePart","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32652,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":31365,"OreDict":""},{"id":"EnderIO:itemFrankenSkull","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"EnderIO:blockFarmStation","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:diamond_hoe","Count":1,"tag":{"ench":[{"lvl":3,"id":34},{"lvl":3,"id":35}]},"Damage":0,"OreDict":""},{"id":"minecraft:diamond_axe","Count":1,"tag":{"ench":[{"lvl":3,"id":35},{"lvl":3,"id":34}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1740,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1171,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDo you hear that engine revving?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your old and trusty combustion engines don't quite cut it anymore, not to mention they are polluting the place. If you want to keep burning liquids, you need to build a better engine. This multiblock can produce 1A of EV voltage by default and 3A if you supply it with oxygen. However, this power doesn't come for free - you need to supply the machine with small amounts of lubricant constantly (and oxygen if you want to boost both its efficiency and output).\n\nYou will also require 3 Input Hatches, a Muffler, and a Dynamo Hatch. Their tiers are up to you.\n\nCetane Boosted Diesel and High Octane Gasoline are excellent fuel sources for this engine.\n\nYou will need to keep the area in front of the engine clear so it can pull enough air - not even torches."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1171,"OreDict":""},{"id":"gregtech:gt.blockcasings2","Count":2,"Damage":4,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":8,"Damage":13,"OreDict":""},{"id":"gregtech:gt.blockcasings4","Count":19,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":11028,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30998,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":7,"Damage":0,"OreDict":""}]}]},{"questID":1741,"preRequisites":[496],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:Natura.netherfood","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lNice Nether Trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a few very useful Nether trees out there which gives resources like Redstone, Gunpowder, Bonemeal or Fertilizer.\n\nGo and get a few trees like Bloodwood, Fusewood, Darkwood or Ghostwood out of the Nether.\n\nThese trees can be planted like normal trees, except for Bloodwood. That has to planted on a ceiling and will grow down instead of up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:floraleavesnocolor","Count":16,"Damage":1,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":4,"OreDict":""},{"id":"Natura:tree","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Natura:floraleavesnocolor","Count":16,"Damage":2,"OreDict":""},{"id":"Natura:bloodwood","Count":8,"Damage":0,"OreDict":""},{"id":"Natura:bloodwood","Count":8,"Damage":15,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"Natura:Dark Tree","Count":8,"Damage":0,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":6,"OreDict":""},{"id":"Natura:Dark Leaves","Count":16,"Damage":0,"OreDict":""},{"id":"Natura:Natura.netherfood","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":0,"requiredItems":[{"id":"Natura:Dark Tree","Count":8,"Damage":1,"OreDict":""},{"id":"Natura:Dark Leaves","Count":16,"Damage":3,"OreDict":""},{"id":"Natura:florasapling","Count":4,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":2,"OreDict":""},{"id":"EnderIO:itemAlloy","Count":4,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1742,"preRequisites":[765,810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30005,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lHelium 3 and Saltwater on Moon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Moon is rich in Helium 3 because the Sun has been embedding it in the upper layer of moon by the solar wind over billions of years. \nSalt water is also available in smaller quantities. You will want plenty of chlorine for processing Rutile to get Titanium. \n\nThere are more planets and moons with gas and fluids underneath the surface. Bring along a multiblock fluid drill to recover these fluids."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30005,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30692,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"EnderIO:blockTank","Count":4,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"gregtech:gt.blockreinforced","Count":64,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17306,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1743,"preRequisites":[1429],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30692,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Saltwater and Chlorobenzene on Mars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Mars is rich on saltwater and chlorobenzene. If yu run low on chlorine you can centrifuge the fluids.\n\nMore Fluids and Gases can be found on (This list is subject to change due to balancing at any time!):\n\nSalt water\n\n Moon - v low\n Mars - Low\n Europa - High\n\nHelium3\n\n Moon - V.Low\n Mercury - Low/High\n\nChlorobenzene\n\n Mars - V.Low\n\nNitrogen\n\n Triton - high\n Pluto - high\n\nMethane\n\n Titan - High\n\nEthane\n\n Titan - Low\n\nEthylene\n\n Triton - Low\n\nCallisto\n\n Oxygen - Low\n\nSuper Heavy Oil\n\n Europa - low\n BarnardC - high\n TCetiE - low\n\nMolten Naquadria\n\n BarnardC - Low\n VegaB - high\n\nMolten Naquadha\n\n Venus - V.Low\n Titan - low\n Haumea - high\n\nLiquid air \n\n Callisto- Low\n Charon - Medium\n BarnardE - High"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30692,"OreDict":""},{"id":"IC2:itemFluidCell","Count":64,"tag":{"Fluid":{"FluidName":"chlorobenzene","Amount":1000}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"EnderIO:blockTank","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32708,"OreDict":""},{"id":"minecraft:tnt","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17028,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1744,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lChemical lesson part two","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"More advanced recipes need an mv chemical reactor like polyethylen.\n\nHint: You can use the battery slot and other extra slot in the GUI to store unused configuration circuits."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":422,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1745,"preRequisites":[1598,1221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":48,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Welcome to OpenComputers!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hello there, my name is Teirdalin and today we shall embark on one of the most exciting and fun mods; OpenComputers! First things first though, you will need some patience to get through this mod, but it will certainly pay off in the end!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":98,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32007,"OreDict":""}]}]},{"questID":1746,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your First Microchip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Microchips will be used in most things you make, so if possible; I suggest bulk crafting quite a few of these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":29303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":4,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1747,"preRequisites":[1754,1751,1750,1753,1756,1755,1760,1762],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"universalsingularities:universal.bigReactors.singularity","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Your First Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Place the power converter you gotten earlier near an electircal cable and connect it with your wire cutters. Now place your computer case by the converter and by the magic of technology it shall fuel the computer case! Now take your hard drive, memory and graphics cards and place them inside, place the disk drive next to the computer and insertin the operating system disk. Insert the bios we made into the case and turn it on."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":48,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1748,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":27,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Arithmetic Logic Circuits","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Arithmetic Logic Circuits are used in numerous parts; mostly in groups of 8-16 upto 64. \nSo make sure to make plenty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":64,"Damage":32037,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32106,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1749,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"All Your Card Are Belong To Us","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Card bases are just as you might think they are; they're the base part that each card you make will use to connect onto the motherboard.\n\nI suggest making a handful of these for future cards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23032,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1750,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Short Term Memory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gotta get more ram.\n\nMemory, or ramis essentially a temporary storage of data on your computer that can be rapidly accessed via your programs..\nHence the name Rapid Access Memory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":32,"Damage":32039,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":29303,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":33,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":27,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1751,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Woah Rad Graphics!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"See the digital world.\n\nYour graphics card allows the computer to draw text and other things to the screen. \nThe better graphics card you use the higher resolution, and better features can be drawn.\n\nYou also need a higher tier monitor to display colors or to get touchscreen compatability-\nbut that's something to worry about for another day."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":33,"OreDict":""},{"id":"OpenComputers:item","Count":8,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":2,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32717,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"OpenComputers:screen1","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"OpenComputers:screen2","Count":2,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1752,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Control Units","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"So controlling! Strangely enough, this part takes an HV circuit to craft; so here's some to make your first computer parts in exchange for MV circuits in their place. Don't spend them all in one place!"}},"tasks":[{"partialMatch":0,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":32702,"OreDict":"circuitGood"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":16,"Damage":28,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":45,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1753,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What did the data say to the CPU?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Cache me outside.\n\nYour CPU will essentially be how fast your computer processes data. \nA stronger CPU == A faster computer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":8,"Damage":27,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":28,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32702,"OreDict":"circuitGood"},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:item","Count":2,"Damage":28,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":33,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1754,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:case1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Computer Case","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"100 Percent Waterproof.\n\n\nThe computer base is the HUB of all your computer parts essentially.\nIt takes two memory sticks, a BIOs rom, a CPU, and a hard drive at the very least to run your computer.\n\nThe power converter allows you to power it from your GregTech power grid, and the floppy drive will allow you to install your operating system onto the hard drive. Both parts are essential but both for some strange reason requires the T2 microchips to craft; so here's a starting pair using T1 Microchips instead- Don't lose them!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":21019,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:case1","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24890,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":23354,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":23035,"OreDict":""},{"id":"OpenComputers:item","Count":3,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":3,"consume":1,"requiredItems":[{"id":"OpenComputers:cable","Count":2,"Damage":32767,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17019,"OreDict":"plateAluminium"},{"id":"OpenComputers:item","Count":2,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:powerConverter","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:diskDrive","Count":1,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1755,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:wrench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"My Little Scrench","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A screwdriver and wrench in one. Not really a necessary tool, but has some purposes; I suggest referring to your computer manual."}},"tasks":[{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":0,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"OpenComputers:wrench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":98,"OreDict":""}]}]},{"questID":1756,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"HDD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your hard drive is where all your programs and data is stored..\n\nYou're playing minecraft, you should already know this though."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":18019,"OreDict":""},{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""},{"id":"OpenComputers:item","Count":2,"Damage":24,"OreDict":""},{"id":"OpenComputers:item","Count":4,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":"oc:hdd1"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"tag":{"oc":"OpenComputers:openos","display":{"Name":"OpenOS (Operating System)"}},"Damage":4,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1757,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":19,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Not Your Average Platter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"We'll need these for our hard drives."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24890,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":29019,"OreDict":"foilAluminium"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":2,"Damage":19,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1758,"preRequisites":[1745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:eeprom","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BIOS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The rom disks are necessary to get your computer to start, they're also what you use to run a drone off from.\nYour BIOs go onto these little disks, get me a blank and I'll write the basic BIOs onto it for you.\n\nYou can do this later when you make more computers by flashing your existing bios onto new cards or combining a blank with the manual."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":32717,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":29086,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"OpenComputers:eeprom","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:eeprom","Count":1,"tag":{"oc":{"oc":"EEPROM (Lua BIOS)"}},"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1759,"preRequisites":[1748,1752,1746,1757,1749,1758],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":54,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Congratulations we have the parts to start making a computer!\n\nLet's start with the basics here."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]}]},{"questID":1760,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Intelligence is the ability to adapt to change.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This block allows our computer to interact with GT machines and everything else. A must have!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32106,"OreDict":""},{"id":"gregtech:gt.blockcasings","Count":1,"Damage":1,"OreDict":""},{"id":"OpenComputers:cable","Count":2,"Damage":32767,"OreDict":""},{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""},{"id":"OpenComputers:adapter","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1761,"preRequisites":[1747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hello World!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First things first, let's install OpenOS to the computer so you don't always need disk in the drive. Type in 'install' and then type 'Y' when asked if you wish to install OpenOS. \nWhen finished, remove the disk and toss it on your wall and reboot the computer. \nType 'df' to display all present file systems and mount points, you'll notice one named OpenOS; this is your hard drives default name after installing the OS. \nLet's change it with 'label set -a OpenOS HDD' -a checks for names starting with what you type after it with that command.\n\nNow for fun, let's make your first program! How about something functional, make a with 'edit startup' this will bring you to an edit page for a new program called startup. Let's just have it do something simple, 'print(\"Hello World!\")' Like that'll never get old.\n\nNow press Ctrl+S to save, and Ctrl+W to get out of that screen. Back in your home root let's now type startup and you'll see it display \"Hello World!\" neat huh?\n\nLet's now make startup actually work on startup. Type 'edit .shrc' .shrc is a mystic file that runs shell commands when booting your PC. So in .shrc type 'startup' save and reboot the computer. Now it should say \"Hello World!\" upon starting. Double neat right?"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32002,"OreDict":""}]}]},{"questID":1762,"preRequisites":[1759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I love pressing the F5 key.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It's so refreshing.\n\nPlace a keyboard facing a screen- or stuck to the back of a screen to make it able to interact with a computer.\nAbsolutely necessary to doing anything on your computer, but can safely be removed once you have an endlessly running program."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone_button","Count":104,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32701,"OreDict":"circuitBasic"},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":18019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32740,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":46,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"harvestcraft:colasodaItem","Count":1,"Damage":0,"OreDict":""},{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1763,"preRequisites":[1761],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mounting your HDD","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Alright, you have your computer, it says \"Hello World!\" When you start it, and you feel awesome and capable of world domination. \n\nNow lets setup your HDD. Open .shrc again in the editor, and press ENTER to go down a line after the print, and type in 'cd ../' this will move your viewed directory that's being viewed to- well, the absolute base directory. \n\nNow go down another line and type in 'mount HDD C:' because why not, it's Classic; this mounts the file drive into the folder you're in. Go down another line and type cd 'C:/' save and reboot the computer.\n\nYou'll now start in C:/ nifty! Try typing 'mkdir programs' and now you have a dedicated directory to put your programs in for the sake of organization.\n'cd programs' will then take you to programs, and 'cd ../' will take you back a directory; you can also do things like- lets say you have a folder called apples in C as well but you're in apples, type 'cd ../apples' and it'll take you to apples, .. essentially just means previous directory and this can be stacked; works with copying files and moving them as well, very useful to know. \n\nut right now we're going to do something functional, come over to the next quest and bring your adapter and cables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenComputers:adapter","Count":1,"Damage":0,"OreDict":""},{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1764,"preRequisites":[1763],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32740,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Power Display","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For this part we will learn how to use our adapter, place it next to- let's say your EBFs battery buffer and connect it to the computer with cables.\nNow lets type in lua while on the computer to open the LUA environment where we can test things without worrying about saving and trying our program.\n\nType in 'component.list()' this will display a table of all of .list from component. What we're looking for is gt_batterybuffer.\nIf you have too many nearby things it may not display and the way to search the entire list of components is too advanced for starters.\n\nSo now assign a variable to it; for example 'a = component.gt_batterybuffer'; now we can call 'a' to see what methods the batteryBuffer has.\nWhat we'll be using in this example is the 'getBatteryCharge' method. So type\n 'a.getBatteryCharge(1)' this will call the method getBatteryCharge from the first inventory slot on the gt_batterybuffer in component.\n\n So if we're using a 2x2 battery buffer; we can type something like- 'for i=1, 4 do print(a.getBatteryCharge(i)) end\nPoof you now see what all the batteries EU values. Now what can we do with this?\n\nTry making a variable called 'batteryCharge = 0', now do 'for i=1, 4 do batteryCharge = batteryCharge + a.getBatteryCharge(i) end'\n\nNow print(batteryCharge) will display the total charge. Here's a program example of this being used.\n\nPlace in your tape drive and type 'install', and follow the promps to install it into C. Then edit it, test it, figure how it works.\n\nI suppose that's enough for now; congrats! Experiment and learn, and don't forget to check google as much as possible! \nThis questline will be updated again in the future; but I figure this is a good ending point for now."}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"tag":{"oc":{"node":{"address":"9147f798-ee2f-44da-b736-b6a30beed8da","visibility":2,"buffer":0},"owners":[{"handles":{},"address":"9fbc465f-657a-437e-9f90-f18aaf9eb423"}],"oc":"PowerDisplay","fs":{"output":{},"input":{},"capacity.used":2045}}},"Damage":4,"OreDict":""}]}]},{"questID":1765,"preRequisites":[1747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:itemGenericToken","Count":16,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Online Shopping - Tier 1","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey, a use for bitcoins!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1766,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":11,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Network Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Network Card for six Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":1767,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":113,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Wireless Network Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Wireless Network Card for 12 Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":12,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":113,"OreDict":""}]}]},{"questID":1768,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Memory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a pair of Tier 1 Memory Chips for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":2,"Damage":1,"OreDict":""}]}]},{"questID":1769,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Graphics Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Graphics Card for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1770,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":3600,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Graphics Card","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Graphics Card for four Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1771,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:cable","Count":8,"Damage":32767,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you 16 cables for two bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:cable","Count":16,"Damage":32767,"OreDict":""}]}]},{"questID":1772,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:screen1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Screen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Screen for three Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:screen1","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1773,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Hard Drive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Hard Drive for eight Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1774,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Floppy Disk","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Floppy Disk for a Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1775,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Keyboard","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Keyboard for two Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:keyboard","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1776,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":72000,"globalShare":1,"questLogic":"AND","name":"Purchase Tier 1 Microchip","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'll sell you a Tier 1 Microchip for two Bitcoins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"miscutils:itemGenericToken","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenComputers:item","Count":1,"Damage":24,"OreDict":""}]}]},{"questID":1777,"preRequisites":[1765],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32009,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Coin Conversion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sell 32 of those Dogecoins for a Bitcoin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":32009,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemGenericToken","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1778,"preRequisites":[231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"minecraft:skull","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Warp Warnings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumcraft offers considerable power from its devices and tools. \nBut power comes with a price.... As of version 4.2, that price is represented by Warp: \nA corruption of the characters mind and soul, inflicting progressively more dire effects upon them. \nWhile the effects of warp can range from annoying to deadly, accumulating enough of it can also grant you access to greater power... at the cost of increasing madness, and attention from dark powers.\nAt least, others may call it madness... but is it truly insanity, when the voices in your head grant useful knowledge, and the monsters that appear before you leave remains behind?\n\nWarp Theory add a bunch of new Warp Effects to the Player. Be very carful because you don't want autospawning an Wither in or bside you Base.\nWarp Effects are Trickert by Warp Level.\n\nFake explosion warp effect can happen with 10 Warp\nFake creeper warp effect can happen with 10 Warp\nSpawn bats can happen with 15 Warp\nPoison warp effect can happen with 16 Warp\nJump boost warp effect can happen with 18 Warp\nRain warp effect can happen with 25 Warp\nBlood warp effect can happen with 25 Warp\nNausea warp effect can happen with 25 Warp\nFriendly creeper warp effect can happen with 26 Warp\nLightning warp effect can happen with 30 Warp\nLivestock rain warp effect can happen with 32 Warp\nWind warp effect can happen with 38 Warp\nBlindness warp effect can happen with 43 Warp\nRandom teleport can happen with 45 Warp\nAcceleration warp effect can happen with 50 Warp\nDecay warp effect can happen with 50 Warp\nRandom trees effect can happen with 50 Warp\nChest scramble warp effect can happen with 80 Warp\nSpawn wither warp effect can happen with 80 Warp"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"WarpTheory:item.warptheory.paper","Count":16,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemBathSalts","Count":4,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemSanitySoap","Count":2,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1779,"preRequisites":[486,49],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:pistonBoots","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Step Assistant.","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Piston Boots are a bouncy pair of shoes for adventurers.\n\nIt functions as a piece of armor for the foot slot that gives a fun jump boost! They let the wearer jump up to THREE blocks in height and increase run speed. They also grant a Step Up enchantment to allow the wearer to step up a single block without jumping while sprinting."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:leather_boots","Count":1,"Damage":0,"OreDict":""},{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17880,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27300,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"adventurebackpack:pistonBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Backpack:tannedLeather","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17880,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11300,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1780,"preRequisites":[440],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:pamoliveSapling","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Olives Saplings","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Olive trees can't be find in the overworld so the best way would be to buy some with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:pamoliveSapling","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1781,"preRequisites":[692,102,838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Gear","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The goggles, wings, shoes, vest, belt and boots it self are not realy special. You can zoom with the googles, have a extra inventory slot with the belt, stepup assistent with the shoe, jump boost with the wings and faster swimming ability with the vest. You get protction like with normal armor too.\nLater on you can upgrade your items to becomes more powerful ones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":24500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":17500,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":28303,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":26303,"OreDict":""},{"id":"harvestcraft:hardenedleatherItem","Count":17,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":17804,"OreDict":"plateObsidian"},{"id":"minecraft:diamond_helmet","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_chestplate","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_leggings","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:diamond_boots","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:fletching","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32642,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":6,"Damage":0,"OreDict":"circuitAdvanced"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Built":1,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelBelt","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:hardenedleatherItem","Count":32,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":17500,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":4,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1782,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Night Vision":1,"Built":1,"Moss":3,"Tooltip1":"Night Vision","Tooltip2":"Auto-Repair","Effect2":4,"ModifierTip2":"Moss","Effect1":0,"ModifierTip1":"Night Vision","ModDurability":0,"DamageReduction":0,"Broken":0,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":1,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Goggles upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nightvision is very usefull. If you combining your Goggles with a night vision potion, a golden carrot and a lighter inside the Tinkers Table you get Night Vison Goggles.\n\nHint:\nAutorepair can be added to the goggles aswell.\nEvery Armor have 3 slots for modofication."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Built":1,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:golden_carrot","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:potion","Count":1,"Damage":8198,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGoggles","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":0,"Night Vision":1,"Built":1,"Tooltip1":"Night Vision","Effect1":0,"ModifierTip1":"Night Vision","ModDurability":0,"DamageReduction":0,"Broken":0,"MaxDefense":4,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""},{"id":"minecraft:potion","Count":2,"Damage":8198,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1783,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"Moss":3,"Tooltip1":"Perfect Dodge","Tooltip2":"Stealth","ModifierTip3":"Moss","Effect2":1,"ModifierTip2":"Stealth","Effect1":0,"ModifierTip1":"Perfect Dodge","Effect3":4,"ModDurability":0,"DamageReduction":0,"Broken":0,"Perfect Dodge":1,"Stealth":1,"Tooltip3":"Auto-Repair","MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Vest upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You vest can be equiped with a few modification like perfect doge and stealth.\nPerfect doge mean you're harder to hit and can be stacked up to 3 times.\nStealth turn you invisible while sneaking.\n\nHint:\nAutorepair can be added to the vest aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_eye","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelVest","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":4,"Built":1,"Tooltip1":"Perfect Dodge","Effect1":0,"ModifierTip1":"Perfect Dodge","ModDurability":0,"DamageReduction":0,"Broken":0,"Perfect Dodge":1,"MaxDefense":10,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:potion","Count":2,"Damage":8206,"OreDict":""},{"id":"minecraft:ender_eye","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1784,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Double-Jump":1,"Built":1,"Moss":3,"Tooltip1":"Feather Fall","Tooltip2":"Double-Jump","ModifierTip3":"Moss","Effect2":0,"ModifierTip2":"Double-Jump","Effect1":1,"ModifierTip1":"Feather Fall","Effect3":4,"ModDurability":0,"DamageReduction":0,"Broken":0,"Feather Fall":1,"Tooltip3":"Auto-Repair","MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Wings upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your wings can be equiped with a few modification feather falling and double jump.\nFeather fall means allow you to glide down slowly in air.\nDouble Jump means you jump while in the air to jump again.\n\nHint:\nAutorepair can be added to the wings aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:feather","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelWings","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Tooltip1":"Feather Fall","Effect1":1,"ModifierTip1":"Feather Fall","ModDurability":0,"DamageReduction":0,"Broken":0,"Feather Fall":1,"MaxDefense":8,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:piston","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1785,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Tooltip1":"Haste","Effect1":1,"ModifierTip1":"Redstone (500/500)","ModDurability":0,"Broken":0,"Redstone":[500,500,1],"MiningSpeed":500,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":500}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Gloves upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Putting redstone on my weapon makes it faster. So why don't I put it on my hands directly!\nIt will be increases the mining speed.\n\nHint:\nEvery Armor part have 3 Slots for modification.\nGloves have 4."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Damage":0,"BonusDurability":0,"Modifiers":5,"TotalDurability":500,"ModDurability":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:redstone","Count":5,"Damage":0,"OreDict":""},{"id":"minecraft:redstone_block","Count":55,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelGlove","Count":1,"tag":{"TinkerAccessory":{"BaseDurability":500,"Built":1,"Tooltip1":"Haste","Effect1":1,"ModifierTip1":"Redstone (500/500)","ModDurability":0,"Broken":0,"Redstone":[500,500,1],"MiningSpeed":500,"Damage":0,"BonusDurability":0,"Modifiers":0,"TotalDurability":500}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:slime.pad","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1786,"preRequisites":[1781],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Moss":3,"Tooltip1":"Slimy Soles","Tooltip2":"Water-Walking","ModifierTip3":"Moss","Effect2":1,"ModifierTip2":"WaterWalk","Effect1":3,"ModifierTip1":"Slimy Soles","Effect3":4,"ModDurability":0,"DamageReduction":0,"WaterWalk":1,"Broken":0,"Tooltip3":"Auto-Repair","MaxDefense":6,"Damage":0,"Slimy Soles":1,"BonusDurability":0,"Modifiers":0,"TotalDurability":1035}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Traveller's Shoes upgrades","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You shoes can be equiped with a few modification like water walk, double jump, lead boots or slimy shoes.\nWater walk mean to allows you to walk over water.\nDouble jump means to jump while in the air to jump again.\nLead Boots mean to allows you to walk under water, prevents you from swimming and Blub.\nSlimy Shoes means to dampens the fall impact and reduces fall damage that you taken.\n\nHint:\nAutorepair can be added to the shoes aswell.\nEvery Armor part have 3 Slots for modification."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":3,"TotalDurability":1035,"ModDurability":0,"DamageReduction":0,"Broken":0}},"Damage":0,"OreDict":""},{"id":"minecraft:waterlily","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TConstruct:travelBoots","Count":1,"tag":{"TinkerArmor":{"BaseDurability":1035,"BaseDefense":2,"Built":1,"Tooltip1":"Water-Walking","Effect1":1,"ModifierTip1":"WaterWalk","ModDurability":0,"DamageReduction":0,"WaterWalk":1,"Broken":0,"MaxDefense":6,"Damage":0,"BonusDurability":0,"Modifiers":2,"TotalDurability":1035}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:iron_block","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:piston","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1787,"preRequisites":[213,1412],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15481,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lData Reader","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Assembly Line recipes are a pain in the A*****.\nScanning the item, printing it and make a book from it is a long process and the book recipe contains only text.\nWhy not using the Data reader from Tec Tech?\nIt shows up the recipe in Nei."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":17084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":27084,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32740,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32705,"OreDict":"circuitElite"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15481,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32708,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1788,"preRequisites":[1116],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unlocking bee breeding lines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No Description"}},"tasks":{},"rewards":{}},{"questID":1789,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:iron_door","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lFactory Iron Door","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new Factory you need iron doors. Well the recipe is realy hard and need steel. \nYou can choose two more doors as reward if you like."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":17032,"OreDict":""},{"id":"dreamcraft:item.SteelBars","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27305,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28305,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:iron_door","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:iron_door","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:stone_button","Count":16,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11305,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1790,"preRequisites":[37],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lWooden Door","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For your new House you need more wooden doors. Well the recipe is realy hard and need iron/copper and a lot of wood. \nYou can choose two more doors as reward if you like."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:planks","Count":4,"Damage":0,"OreDict":"plankWood"},{"id":"minecraft:trapdoor","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":27032,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":28032,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:wooden_door","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_pressure_plate","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:iron_ingot","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1791,"preRequisites":[539],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":878,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lOilsand or how you get heavy Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oilsand is an other way to get oil, heavy oil. Maybe you lucky and found in a dessert biome a oilsand vein. With your centrifuge ou are able to get heavy oil and sand blocks out of the ore.\nThe veins can be found between Y level 50-80."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":256,"Damage":878,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Natura:berryMedley","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:strawberrypieItem","Count":2,"Damage":0,"OreDict":""},{"id":"harvestcraft:carrotsoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1792,"preRequisites":[531],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":321,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lI guess it is an inkjet?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you use the seismic prospector, you'll need a scanner and a printer to create the books full of tasty ores and delicious fluids.\n\nUse ink sacs in a fluid extractor to get squid ink. Move using a tank or universal cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":321,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:dye","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1793,"preRequisites":[719],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Ztones:cleanDirt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better dirt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With an Assembler and some seedoil, you can turn dirt and sand into Garden Soil. This optimal soil does not require water nearby and crops do not break when you fall on it. It can turn into dirt if you run on it, so be careful. You might want to investigate the Slow Building Ring in Building Better Bases."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Ztones:cleanDirt","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Ztones:cleanDirt","Count":48,"Damage":0,"OreDict":""}]}]},{"questID":1794,"preRequisites":[1541],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32762,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Even more stats","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the portable scanner, you can get the crop's stats and environmental info while it is still in the ground. Look for the portable scanner quest after the EBF in Multiblock Goals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"tag":{"GT.ItemCharge":400000},"Damage":32762,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Nickelback","scan":4,"growth":5,"resistance":5,"gain":5},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1795,"preRequisites":[1601],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32531,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Metals from the Sky","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can even create metals not found on Earth using crops! You'll need the proper metal block beneath the crop in order for them to fully mature."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32521,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32522,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32531,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":9,"Damage":32532,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Stargatium","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Quantaria","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"gregtech:gt.blockores","Count":4,"Damage":2317,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1796,"preRequisites":[836],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2037,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lBetter Gallium and Arsenic sources","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of ways to increase your Gallium.\n\n1. Use IC2 crops under the Farming tab to get Galvania leaves, to 4x your zinc and sphalerite crushed ores to purified ores.\n\n2. Use the HV macerator on the centrifuged ores to get a 10 percent chance of a whole Gallium dust.\n\n3. Use plentiful Bauxite ores from the Moon.\n\nFor Arsenic, Cobaltite ore in the Twilight Forest is a great source. It can be multiplied 4x by the IC2 crop Nickelback."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1797,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"New threads","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of killing spiders for string? Grow some flax for an easy non-biting source of string.\n\nYou can also directly place Cotton seeds on cropsticks to grow cotton that way. With some Corium in the next quest, you can get easy tanned leather."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Flax","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1798,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ghast_tear","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The ground is crying","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need an alternate source of Chlorine? Breed some Tearstalks to get Ghast Tears for making salt water.\n\n;-;\n\nNether warts should yield tearstalks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Tearstalks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ghast_tear","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1799,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Blazes too hard to kill?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Then grow some blazereed to save yourself the trouble.\n\nTearstalks should easily yield blazereed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Blazereed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:blaze_rod","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:blaze_powder","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1800,"preRequisites":[1809],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:diamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A girl's best friend","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need to impress a lady? How about growing diamonds on reeds?!?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Diareed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1801,"preRequisites":[1933],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why does my plant bawk like a chicken?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Because it can lay eggs!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Eggplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:feather","Count":512,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1802,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vegan, but still want to eat meat?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Instead of killing animals, just mutate some crazy GMOs into making animal products for you. Science!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corium","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Meatrose","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corpseplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beef","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:fish","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:porkchop","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1803,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemNugget","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Magical Metal Berry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"..is obviously the name of my cover band. But also a great crop for Thaumium or Void metals. Requires a block of iron or thaumium to get thaumium, and void metal block to get void metal. Like other ore berries, it only grows in dim light. Any oreberry should have a decent chance of yielding this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Magic Metal Berry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":4,"Damage":2,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1804,"preRequisites":[1803],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:blockCustomPlant","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Other magic flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Other magical flowers are possible such as shimmerleaf, mandragora, wolf's bane, and more."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1805,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockgranites","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Stonelillies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Stone lillies allow you to get dusts without having to look for granites, basalt, or marble. Great renewable way to get calcite, fluorine, or bulk aluminium (and a tiny bit of uranium).\n\nThese require the original block directly beneath them to grow properly.\n\nThere is also a Grey stonelilly for stone dust (who needs more of that??) and a Yellow stonelilly for sand or Endstone dust. Handy for the clever chemist!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Red Stonelilly","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"White Stonelilly","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Black Stonelilly","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Yellow Stonelilly","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1806,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glowstone_dust","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of different glowstone crops - glowflower, glowing earth coral, and glowshrooms. Nether wart is a great source of these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowshroom","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowing Earth Coral","scan":4},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Glowflower","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glowstone","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1807,"preRequisites":[1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafIngot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Leaves of steel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well, steel leaves anyways. Instead of grinding Twilight Forest for steel leaves, grow a crop in peace."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Steeleafranks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2339,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1808,"preRequisites":[721],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:fertilizerBio","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Plants that make their own fertilizer?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sign me up! This plant will create fertilzer ingredients for you. \n\nDecent plants to cross to get Fertilia are spidernip, venomilia, or zomplant. Watch out for venomilia though, not only is it poisonous, it also promotes weed growth!\n\nYou can make Forestry fertilizer with the drops from this plant in a mixer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Fertilia","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":256,"Damage":0,"OreDict":""}]}]},{"questID":1809,"preRequisites":[1927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:HoneyDrop","Count":1,"Damage":2000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Renewable oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oil from crops? Makes as much sense as oil from bees!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Oilberries","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30707,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1810,"preRequisites":[1187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:golden_rail","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boost your speed v 2","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"High speed transition and booster tracks get your carts moving at really ridiculous speeds. Do not use normal track without several transition tracks or else your cart will explode. Do not try turning at high speed or, you guessed it, your cart will explode."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:track","Count":8,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.transition"},"Damage":26865,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":32,"OreDict":""},{"id":"Railcraft:track","Count":16,"tag":{"track":"railcraft:track.speed.boost"},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1811,"preRequisites":[1874,989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":131,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lEven LARGER tanks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"4000 buckets not enough storage? Stockpiling diesel for a lifetime? Try a Super Tank 2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":131,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"gregtech:gt.blockores","Count":16,"Damage":19,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1812,"preRequisites":[943],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30667,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTeflon Don","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make PTFE, aka Teflon, you only need a few steps. \n\nThe first one is hydrofluoric acid. If you have not reached the moon yet, the best sources for fluorine are hammering sandstone for a chance at fluorite and centrifuging stone dust or black granite dust for biotite. You can also get small amounts from Lepidolite in salt veins and Mica. Mix it with some hydrogen to get hydrofluoric acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30014,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30667,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":110,"Damage":2848,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1813,"preRequisites":[1812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30668,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lChloroform","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next step is to mix methane and chlorine to make chloroform. Make sure you have your circuit set correctly.\n\nNow is probably a good time to look at stockpiling chlorine. Look for salt ores, or lapis veins. You can also make salt water with ghast tears. Better get started with IC2 crops, you will need a lot of chlorine later!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":36,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":30668,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":944,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1814,"preRequisites":[1813],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11473,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTetrafluoroethylene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Liquid hot plastics smell great, don't they? Mix your hydrofluoric acid and chloroform to make tetrafluoroethylene. React the TFE with oxygen to make molten PTFE. Finally a fluid solidifer will make bars for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30667,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30668,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":30666,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":30,"Damage":11473,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32408,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1815,"preRequisites":[1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":132,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHow much is too much fluid?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There is no limit to how much fluid you might want to store. Make yourself some super tank III's for all your bulk storage needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":132,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":32670,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1816,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":823,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":24000,"globalShare":1,"questLogic":"AND","name":"Calcite getting you down?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having a hard time finding that Lapis vein for some calcite? I'll trade you some for your hard earned coins and some stone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSmith","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:stone","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":823,"OreDict":""}]}]},{"questID":1817,"preRequisites":[477],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #7: Upgrade tier 8 - Electrum Flux Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the more advanced materials like Cosmic Neutronium, Tritanium and Awakened Draconium you need more than 9000K. Upgrade your EBF to 9900k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":42,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1818,"preRequisites":[1333,216],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13000,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Large Essentia Generator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Having one Essentia Generator per Essentoia type seeems unpracticable.... Better make a Large Essentia Generator and burn all this Essentia in parallel! As another Bonus, this Generator produces 20x the Energy a Single Block Machine will produce. You might need more Magic Containment Casings than this Quest asks for."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":13000,"OreDict":""},{"id":"EMT:EMTMachines","Count":1,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12988,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":25,"Damage":95,"OreDict":""},{"id":"EMT:EMT_GTBLOCK_CASEING","Count":50,"Damage":1,"OreDict":""},{"id":"EMT:EMT_GTBLOCK_CASEING","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":13,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardIV","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Avaritia:big_pearl","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32088,"OreDict":""},{"id":"Thaumcraft:blockEssentiaReservoir","Count":32,"Damage":0,"OreDict":""},{"id":"thaumicenergistics:storage.essentia","Count":2,"tag":{},"Damage":3,"OreDict":""},{"id":"ThaumicTinkerer:kamiResource","Count":16,"Damage":2,"OreDict":"ingotIchorium"}]}]},{"questID":1819,"preRequisites":[1015],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.integrated_circuit","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCircuit Programmer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Circuit Programmer is a useful tool that will enable you to program integrated circuits without having to deal with 24 different crafting recipes. Just charge it, put the Integrated Circuit in it and click on the Number you want it to be programmed to."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.BWCircuitProgrammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1820,"preRequisites":[1241,1480],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":64,"Damage":12600,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lLapotronic Energy Storage Unit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The L.E.S.U. is one of the oldest Machines that are aviable in Gregtech, its origins are in Minecraft 1.3.X, now its redone to fit into this Modpack. You can add a nearly infinite number of LESU casings to it and you'll have a hughe Energy Storage. You might also live inside your Battery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12600,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.integrated_circuit","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.blockores","Count":128,"Damage":526,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1821,"preRequisites":[747],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12634,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lCable Diodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you just need a Diode, either to prevent reflow in your complex Energy System or on Thermos Server's Chunk borders. Make one 4A Diode and get a 2A one for free!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12618,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1822,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_Machinery_Casings","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lManual Transformer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Annoyed by building Chains of transformers? Dont want an Explosion Risk at your base? Want to use these fancy 64A Hatches and Dynamos from TecTech to convert your power? Make a Manual Dynamo and convert it all!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12697,"OreDict":""},{"id":"bartworks:BW_Machinery_Casings","Count":1,"Damage":0,"OreDict":""},{"id":"bartworks:BW_Machinery_Casings","Count":8,"Damage":1,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":90,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":44,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":35,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":7,"OreDict":""}]}]},{"questID":1823,"preRequisites":[838],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:gt.GT2Destructopack","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMobile Trash Can","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GT2's Destructorpack is a mobile Trashcan. Might be handy!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.GT2Destructopack","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1824,"preRequisites":[860],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:item.GT_Rockcutter_Item_LV","Count":1,"Damage":37,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRock Cutter LV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Rock Cutter is an unbreakable and Silk-touched Mining Device. It will enable you to mine blocks without damaging them, like glass or stone, while it is charged."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:item.GT_Rockcutter_Item_LV","Count":1,"Damage":37,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11028,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1825,"preRequisites":[1820],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemDustSmall","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - LV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Adding this much Cells anywhere to your LESU will upgrade it from ULV to LV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemDustSmall","Count":1,"Damage":9,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":4,"OreDict":""},{"id":"IC2:itemToolPainterBlue","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1826,"preRequisites":[1825],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - MV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Adding an additional ammount of Cells will not only cause your storage capacity to rise, but also will enable MV Voltage."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":12}},"Damage":12,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":4,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1827,"preRequisites":[1826,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemPlates","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - HV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV Tier upgrade first needs over a Stack of Casings. More Casings, more Energy, more Capacity."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":96,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32438,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17526,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1828,"preRequisites":[1827,176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:genericSlab","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - EV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Close to 8 Stacks of LESU Casings, this upgrade enables EV Voltage on your LESU. It's easy until now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":477,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""},{"id":"ThaumicHorizons:focusIllumination","Count":1,"Damage":12,"OreDict":""},{"id":"thaumicbases:genericSlab","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1829,"preRequisites":[1828,213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lL.E.S.U. Upgrade - IV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"24 Stacks of LESU Casings. These do fit in your Inventory, but crafting them is another problem."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":1536,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""},{"id":"Forestry:beeQueenGE","Count":1,"tag":{"MaxH":30,"Mate":{"Chromosomes":[{"UID1":"extrabees.species.lapis","UID0":"extrabees.species.lapis","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.lapis","UID0":"extrabees.species.lapis","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},{"id":"minecraft:lapis_block","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1830,"preRequisites":[1829,1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Avaritia:Singularity","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§6§lL.E.S.U. Upgrade - LuV Tier","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To reach the highest Voltage Tier the LESU can offer, you need to add an additional amount of LESU Casings. 8193 Casings in total (all upgrades below and these additional) enable the LuV Input Voltage. To submit these you'll need to use the Submit Station from the Steam Tab, since your inventory isnt big enough to hold 96 Stacks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:GT_LESU_CASING","Count":6144,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""},{"id":"supersolarpanel:SingularSolarPanel","Count":1,"Damage":0,"OreDict":""},{"id":"Avaritia:Singularity","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIV","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1831,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lCircle Shapes give me comfort","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To build a Windmill you will need a Dispenser, but that item is locked behind the next Tier. Go and find one in a Witchery Circle. They look like small versions of Stonehenge.\n\nLook for the main quest in Multiblock Goals."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinAdventureI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31032,"OreDict":""}]}]},{"questID":1832,"preRequisites":[48,1831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_PaperRotor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lGrinding with Wind","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Windmill is a grinder that uses the force of wind to macerate Items and Blocks. It is pretty slow and won't macerate ores well. You will only get one crushed Ore from it. However it does give you a bonus when you try to macerate other things. That bonus depends on the Item inserted, for example Netherrack has a chance to give two instead of one dust and Wheat will always give one and a quarter flour.\n\nThe dispensers replace a clay block in the walls. Put anything you like in the interior - a bed, stairs, torches, etc.\n\nNormal multiblock rules apply - do not cross chunk boundaries with this multiblock.\n\nIf this is your first Gregtech multiblock, as with all the rest you will need to whack the controller with a softhammer to activate it.\n\nIf you have troubles forming the multiblock, try breaking and replacing the controller block.\n\nThe controller can be fed items via hoppers etc to allow for larger batches. Just don't allow the dispenser to fill up or it will void outputs.\n\nThe rotor blades will run if the controller is disabled or has no recipe. Remove the blades when not in use or else they'll be used up."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:brick_block","Count":44,"Damage":0,"OreDict":""},{"id":"minecraft:planks","Count":100,"Damage":0,"OreDict":""},{"id":"minecraft:wooden_door","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:dispenser","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:hardened_clay","Count":45,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":31032,"OreDict":""},{"id":"minecraft:hopper","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":28032,"OreDict":""},{"id":"bartworks:craftingParts","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"bartworks:BWRotorBlock","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12698,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":1,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":31032,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"minecraft:leather","Count":12,"Damage":0,"OreDict":""},{"id":"minecraft:carpet","Count":6,"Damage":0,"OreDict":""},{"id":"minecraft:paper","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1833,"preRequisites":[1817],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockcasings5","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUpgrade #8: Upgrade tier 9 - Awakened Draconium Coils","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To process the most advanced materials like Infinity Catalys or Infinity need more than 9900K. Upgrade your EBF to 10800k."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings5","Count":16,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianIV","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1834,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mushrooms","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMushroom Biomes ? why there so many?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"GNTH pack is made for the rwg worldgen. If you run the vanilla biomes worlgen you get huge Mushroom biomes over the map. Go and generate a new world before you continue this one. If you run a server put this inside your server.properties file.\n\n§5 §5§4§3§2§3§b§4§3§2§3§4§5§l\"level-type=rwg\"."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WitchingGadgets:item.WG_MagicFood","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1835,"preRequisites":[128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":921,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lTantalum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tantalum is used in the GT and Ender IO Capacitors and also a source for niobium. It is a cheap essentia source for Thaumcraft later on.\nYou will find Tantalite Mix at Y 20-30 on the Overworld."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":32,"Damage":921,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":838,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":943,"OreDict":""},{"id":"gregtech:gt.blockores","Count":32,"Damage":831,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:celerysoupItem","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":26080,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1836,"preRequisites":[665,753],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:mortarandpestleItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Kitchenware 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gregtech tools like the knives get used up when crafting foods. Pams Tool like the Cutting Board, Juicer or the Bakeware can last forever.\n \nAfter you reach stainless steel in HV you can make these forever tools."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"harvestcraft:juicerItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:bakewareItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:mortarandpestleItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:cuttingboardItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"harvestcraft:presser","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:churn","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:oven","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:quern","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":30,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinCookI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1837,"preRequisites":[1158],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodPick","Count":1,"tag":{"ench":[{"lvl":1,"id":32}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ardite and Cobalt Mining","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood is much harder and durable material than you imagined at first. Making Tools and Armor give them very unique features. With a Pick you can mine at cobalt Level which means you can harvest ardite and cobalt without a EBF."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stick","Count":2,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodIngot","Count":2,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodPick","Count":1,"tag":{"ench":[{"lvl":1,"id":32}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1838,"preRequisites":[225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:tile.TFSapling","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Low on Sticks?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stay in the Twilight Forest you will find the Canopy Tree. This big tree generates a lot of logs for your Coke ovens and some roots when planted which give sticks. Be careful that no building or chest right beside or above the Tree otherwise the Tree replaces it. You might find a use for this, to sinfully get above a ceiling you really shouldn't."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:tile.TFSapling","Count":16,"Damage":1,"OreDict":""},{"id":"TwilightForest:tile.TFFirefly","Count":4,"Damage":0,"OreDict":""},{"id":"TwilightForest:tile.TFLog","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1839,"preRequisites":[1158,1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.ironwoodPlate","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ironwood Armor is a magic armor with some special enchants. The Helm gives aqua afinity, the shoes feather falling, the plate and the legs extra protection."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17338,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"allowSmelt":1,"ignoreNBT":0,"index":1,"allowCraft":1,"allowAnvil":0,"requiredItems":[{"id":"TwilightForest:item.ironwoodHelm","Count":1,"tag":{"ench":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodPlate","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodLegs","Count":1,"tag":{"ench":[{"lvl":1,"id":0}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodBoots","Count":1,"tag":{"ench":[{"lvl":1,"id":2}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:crafting"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.ironwoodSword","Count":1,"tag":{"ench":[{"lvl":1,"id":19}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodAxe","Count":1,"tag":{"ench":[{"lvl":1,"id":35}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.ironwoodShovel","Count":1,"tag":{"ench":[{"lvl":1,"id":34}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1840,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:saltItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spice up with some salt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You will need massive quantities of chlorine for future plastics. There are underground salt water deposits on the Moon, Mars, and Europa. Use a seismic prospector to locate one and build the Underground Fluid Drill from multiblock goals to extract."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1841,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:bone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lMoron's Manual for Massacring Monsters","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have not noticed, this world is a true hellscape full of Special Mobs and Infernals around every corner. Unlike vanilla, a player has to actually stay aware and pay attention to what they are fighting. Here are some tips.\n\nIf an infernal has Vengeance, don't shoot it with your 56 damage crossbow!\n\nA high health infernal with regeneration is hard to kill. Even worse if it is a witch that can also heal itself. In those cases, run like hell, or bring a soul vial to capture it and throw it into Mount Doom. \n\nWatch out for zombies with fishing poles - they can pull you into them. And zombies with a bow and arrow - they can shoot you back!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1842,"preRequisites":[1841],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gunpowder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCreeping dread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creepers can cause the worst problems. \n\nDrowning Creeper - when it explodes, it surrounds you in a ball of cobble filled with water. Not only do you have to escape, but the cobble is infested with silverfish! And those silverfish are all infernal as well. The best way to deal with it is to first escape up or down. If you have to clear the cobble ball, first clear the water. Surrounding the cobble with a dirt moat will keep the silverfish inside and unable to hide. Put down punjis, quicksand, or lava, and/or spectral glass. Make a wall with a 1x1 window and use that to break the cobbles - fishing silverfish are especially dangerous.\n\nEnder Creeper - Randomly teleports you a short distance - possibly deep underground. "}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":1843,"preRequisites":[1842],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:string","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lCaught in the web","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spiders to watch for...\n\nWitch spiders reflect missile damage back at you. Look for the red X on their back, and draw your melee weapon and prepare for close combat.\n\nMother spiders will spawn a lot of baby spiders, some of which may be infernal.\n\nA flying spider can grab the oblivious flyer.\n\nGhost spiders are partially invisible and can pass through thin walls."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1844,"preRequisites":[1843],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:cooked_porkchop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lPorkchops with attitude","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The only zombie pigman to watch out for is the Vampire Pigman. He hardly takes any damage unless you use a wooden sword as a stake or have a magical sword."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:porkchop","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":1845,"preRequisites":[1843],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:blaze_rod","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lFlaming idiots","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Blazes are all infernals, and all nasty. Avoid like the plague. Get awesome weapons, awesome armor, and prepare for a fight. \n\nAlternatively, figure out a way to destroy them with technology.\n\nAlternative to the alternative, figure out another way to get blazepowder and blaze rods."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:blaze_powder","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1846,"preRequisites":[93],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:floodGateBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lFilling the world with fluids...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need to make a lake? Look no further than the Flood Gate. It will fill the world with any fluid you provide it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BuildCraft|Factory:floodGateBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1847,"preRequisites":[861],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:spectreKey","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lPortable hole? How about portable chunk!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With further research, I've discovered a key made of spectral iron can open a portal into a pocket dimension. It's only one chunk wide and quite short, but you can increase the height by adding more ectoplasm to the spectre core in the room. Perfect for retrieving ores from far planets, or as a quiet refuge."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:spectreKey","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1848,"preRequisites":[692,78],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:spectreHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Armor of the Dead","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I've found another use for Ectoplasm - making Spectral Iron. An armor made from it is better than diamond and highly enchantable.\n\nIt also will drop healing orbs that will heal the nearest player when picked up. \n\nUnfortunately, a side effect is that you'll become partially transparent. Side effect, I mean bonus feature!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:spectreHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"RandomThings:spectreBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1849,"preRequisites":[5],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:oak_stairs","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lTell me when we reach 20","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jumping up and down everywhere is exhausting, and makes you really hungry. To reduce your food depletion, make stairs instead of jumping."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:oak_stairs","Count":8,"Damage":0,"OreDict":"stairWood"},{"id":"minecraft:stone_stairs","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:ladder","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":10,"Damage":0,"OreDict":""},{"id":"harvestcraft:suaderoItem","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1850,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:fan","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll we are is dust in the wind","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Looking for an alternative to flowing water for your mobfarm? Tired of getting poked walking through your fields of oreberries? Use a fan to blow mobs or items where you want. Apply a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:fan","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1851,"preRequisites":[1831],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_SimpleWindMeter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lStick a finger in the air","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But you really do care. Trying to find a good place to locate a windmill? You could just build one and see, or try this fancy windsock.\n\nPaper rotors are great in low winds.\nWool rotors are cheap.\nLeather rotors are durable.\n\nDon't leave the rotors in the windmill when you aren't using it, it will use up durability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:BW_SimpleWindMeter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":5,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":4,"OreDict":""},{"id":"bartworks:craftingParts","Count":2,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1852,"preRequisites":[1851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"bartworks:BW_LeatherRotor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lAround and around she goes...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...But she'll never stop because you'll always have something to grind. You can use a hopper to keep the windmill full of items to process. Just remember to retrieve them from the dispensers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:BW_CombinedRotor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":1,"OreDict":""},{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"minecraft:hopper","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1853,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMoron's Manual for Effective EBFing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to the latest Moron's Manual, Effective EBFing!\nThis manual covers common problems encountered when using the GregTech 1000 Electric Blast Furnace.\n\nSetup\nWhen setting up your EBF, make sure to place it a few chunks away from where you will spend most of your time. Pollution is nobody's friend!\n\nDuring setup, make sure the center of the EBF is hollow. Sometimes things can sneak in there without you noticing, like a Thaumcraft light orb!\n\nMake sure your muffler faces *out*, not *in*. The EBF can't work if it is not spreading those delightful odors!\n\nWhen placing your power hatches, make sure to minimize the distance between any generators and the EBF. Especially at LV, those few meters make a big difference! Every amp of energy travelling over a cable loses a little bit - and you'll need as much as you can get!\n\nOutput hatches and buses will automatically push into tanks and inventories placed next to them. They will also void if they are full, so keep an eye on them!\n\nWhen build multiple EBFs, the GregTech 1000 Electric Blast Furnace can share walls. This can save you on input and output hatches too. Not recommended for energy and maintenance hatches!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":2305,"OreDict":""}]}]},{"questID":1854,"preRequisites":[636,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:applejellysandwichItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Just like Mom used to make","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Jelly sandwiches are a great food source with decent saturation and easy to make. Almost any fruit can be converted to jelly with sugar and a saucepan. There are a few different nut butters available. Peanuts can be found in Ground Gardens in forest, mountain, or taiga style biomes. Cashews are trees located in jungles or swamps. Chestnuts can be found in warmer forests. Pistachios can be found in jungles. Many of these saplings are also available for trade from villagers.\n\nUse a Forestry Worktable to keep all your recipes together in one spot for easy crafting.\n\nSome sandwiches have better saturation than others, so be sure to check before buying that sapling!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:saucepanItem","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:applejellyItem","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:bread","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"harvestcraft:applejellysandwichItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:cherryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:blackberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberryjellysandwichItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:watermelonjellysandwichItem","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1855,"preRequisites":[637],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":32243,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I like big sandwiches","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have dough, there are several options for large sandwiches. They offer great saturation restoration and are easy to make.\n\nThe veggie and cheese options aren't quite as good and need more work to produce.\n\nThere are also normal sized varieties of these sandwiches if you need more diet choices."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32565,"OreDict":""},{"id":"minecraft:cooked_porkchop","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:cooked_beef","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32244,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":4,"Damage":32243,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32241,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32242,"OreDict":""},{"id":"dreamcraft:item.CoinCook","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1856,"preRequisites":[469,444],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:blueberrysmoothieItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lStaying cool in the heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you happen to be near a snowy biome, you can harvest the snow to make delicious smoothies. They are better than eating the berries directly."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:berry","Count":4,"Damage":1,"OreDict":""},{"id":"minecraft:snowball","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1857,"preRequisites":[637,665],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:chickenpotpieItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"No chicken escapes!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Do you like pies? I sure do! There are many varieties of pies available for you. The chicken pot pie is one of the easiest to make. Just a chicken, potato, carrot, and some dough. The fruit pies are a little simpler, so don't quite restore as much saturation, but are great for filling tummies while you wait for the best foods to wear off."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:chicken","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:potato","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:carrot","Count":4,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":8,"Damage":32559,"OreDict":""},{"id":"minecraft:apple","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:sugar","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"harvestcraft:chickenpotpieItem","Count":4,"Damage":0,"OreDict":""},{"id":"harvestcraft:applepieItem","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinCook","Count":15,"Damage":0,"OreDict":""},{"id":"harvestcraft:blueberrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:cherrypieItem","Count":1,"Damage":0,"OreDict":""},{"id":"harvestcraft:raspberrypieItem","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1858,"preRequisites":[141],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:itemMagnet","Count":1,"tag":{"Energy":100000},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMagnetic personality","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you haven't received one in a lootbag already, you can craft a nice magnet with a vibrant crystal. It doesn't work great on servers if you are moving around too fast, but it makes harvesting crops a lot easier."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:itemMagnet","Count":1,"tag":{"Energy":0},"Damage":16,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1859,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Need some leather?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some leather with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:leather","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1860,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:wool","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Need some wool?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some wool with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wool","Count":20,"Damage":0,"OreDict":""}]}]},{"questID":1861,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:egg","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Buy some eggs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Buy some eggs with coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinSurvivor","Count":20,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:egg","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1862,"preRequisites":[1542,160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockMachine3","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Robotic crop pickers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Crop Harvester will pick your crops for you, which is great. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:blockMachine3","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1863,"preRequisites":[579],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"RandomThings:dropFilter","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lThrowing out the trash","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Already have barrels full of cobblestone? The voiding drop filter can be setup to automatically void any item on pickup. Cobble, dirt, arrows, saplings,etc. It's handy for when you don't have much room for junk.\n\nTo use, rightclick the RT item filter in-hand. Put the things you want voided in the item filter list. Rightclick the voiding drop filter, and put the item filter inside."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"RandomThings:dropFilter","Count":1,"tag":{"Inventory":{"Items":{}}},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"berriespp:BppPotions","Count":1,"Damage":8,"OreDict":""},{"id":"RandomThings:filter","Count":1,"tag":{"metadata":1,"oreDict":0},"Damage":1,"OreDict":""}]}]},{"questID":1864,"preRequisites":[38],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:materials","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lNo self-healing tools here...yet","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Experienced players might be confused by finding the Tinker's Construct Ball of Moss in NEI without a recipe. \n\nIt is possible to craft it, but on this world you have to first gain expertise in Thaumcraft. Go and become a dangerous wizard and you'll gain the power needed to craft the Ball of Moss and make your tools indestructible.\n\nThe Ball of Moss is in the GTNH tab of the Thauminomicon.\n\nIn general, if an item does not have a recipe, it might be gated by Thaumcraft. NEI will not show the recipe until you have unlocked it.\n\nHave a beer to prepare for your long journey."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":2,"Damage":32119,"OreDict":""}]}]},{"questID":1865,"preRequisites":[97,745],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:ender_pearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lEnderman Smelterman","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need enderpearls? Getting them by killing endermen can be dangerous. Instead of doing that, put an enderman into a smeltery with hot fluids and use a gem cast to get guaranteed pearls. \n\nHigher the hit points, the more pearls you get. If you can find a regenerating enderman, or an enderman spawner, you'll have all the pearls you would ever want. Later on with EnderIO you can even create your own powered spawner to make endermen on-demand.\n\nUse a nametag on a regenerating enderman to make sure he doesn't despawn. You'll want to keep him from seeing the sky or else he'll teleport away.\n\nIf you haven't found a regen enderman yet, you can buy enderman spawn eggs to put into your smeltery with coins. Maybe you'll get lucky and get a regenerating one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:name_tag","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":58,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":30,"Damage":0,"OreDict":""}]}]},{"questID":1866,"preRequisites":[474],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2019,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lOptions for finding aluminium at this age","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It can be hard to find aluminium gravel ores on old servers, or unlucky world seeds. Alternative to aluminium gravel ores are\n\n- Planting the Aluminium ore berries from the Smeltery quest\n- Searching for Aluminium bars in chests\n- XP buckets\n\nOnce you reach LV, you can electrolyze Sapphires and get tiny dusts from processing various ores. \nAt MV you can use clay dust or red granite dust.\nCheck NEI."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2019,"OreDict":""}]}]},{"questID":1867,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32601,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMV Motor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Most machines in MV need a motor as well. If you have not built a polarizer already, go back to Tier 2 Quests and craft one. Motors need magnetic steel rods and alu rods, 2x cupronickel wires and copper cables."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":23355,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":23019,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":16,"Damage":1341,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32601,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1868,"preRequisites":[792],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32063,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lUltra Low Power IC","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"MV Energy hatches need ultra low power ICs. Go and craft some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32062,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32063,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24501,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":24542,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1869,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1116,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHydrogen, methane or some farts... (Natural gas) MV ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Some centrifugal processes leave gases behind like hydrogen or methane. Centrifuge some brown and yellow limonite to get hydrogen or dump your unused food in a centrifuge to get methane gas. Wood will even give 60 mb per log. Maybe it's time to build a forestry tree farm. You can also setup a Benzene based operation (see quest to the right). Or you can start refining oil into refinery gas or naphtha to burn.\n\n§4Gas turbines produce half the pollution of combusion generators, but their fuels are generally not as efficient. Choice is up to you which power source you use.\n\nMV Gas Turbines have a 90 percent fuel efficiency."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1116,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30001,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30715,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30742,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1870,"preRequisites":[896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDiesel, oil or maybe creosote? MV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You probably collected a ton of creosote and maybe even have built your first Electric Blast Furnace. Creosote will be a good fuel for the moment. So try to build a few of the combustion generators and use them besides steam as a secondary power source. Small generators will only use fuel if there is EU demand.\n\n§4Advanced Combustion Gnerators have a 90 percent fuel efficiency.\n\nThis will also unlock new quests in the Armors and Jetpacks tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1111,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30707,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30708,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30709,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1871,"preRequisites":[1231],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32670,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lField Generator I","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field Generators are powerful devices. It will be used in high tier Tanks, Chests, in UU Matter Production or in Teleporters."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32670,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17532,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1872,"preRequisites":[847],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30650,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lVinyl Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vinyl Chloride is the base product for making PVC for advanced pipes. These Pipes are needed in LuV machines or the Hermetic Casings for Super Tank II's."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30677,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":12,"Damage":30023,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30650,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":32702,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":30677,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1873,"preRequisites":[1872],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.99","Count":1,"Damage":649,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lPoly Vinyl Chloride","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Polyvinyl Chloride is PVC which can be used for the PVC Pipes.\nYou need Vinyl Chloride and Oxygen to make it.\nYou'll also want it for SMD capacitors later.\nDo the recipe twice if you want to clean out your reactor.\nCells carrying molten polyvinyl chloride carry 144L, perfect for 1 ingot or plate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":6,"Damage":30650,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":42,"Damage":30013,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.99","Count":62,"Damage":649,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1341,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30023,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":30013,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1874,"preRequisites":[1873],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17649,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lPVC Sheets","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"PVC Sheets make good item pipes, and can also be used for circuit boards."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":60,"Damage":17649,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.blockmachines","Count":8,"Damage":1366,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":4,"Damage":5692,"OreDict":""},{"id":"gregtech:gt.metaitem.99","Count":16,"Damage":649,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1875,"preRequisites":[1099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicExploration:soulBrazier","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A soul-ution for warp","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Soul Brazier from Thaumic Exploration will store your permanent warp. \n\nAs long as it has Ignis centi-vis and Mortuus essentia fed from underneath it will stay active, even while you are in other dimensions. Turning it off or running out of power will dump all that warp back into your body, so watch out.\n\nContaining warp does have a bit of a downside - taint. You'll need to figure out a way to stop that."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicExploration:soulBrazier","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemEssence","Count":64,"tag":{"Aspects":[{"amount":8,"key":"mortuus"}]},"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":1876,"preRequisites":[1906],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":473,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§9§lAdvanced Amplifabricator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To get UU Amplifier out of you scrap you need an Amplifabricator. You can't make UU Matter before HV so its a good time to start with it now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":473,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30721,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"IC2:itemScrapbox","Count":64,"Damage":0,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":64,"Damage":1426,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1877,"preRequisites":[1876],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":461,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lUU Matter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Next you will need a Mass Fabricator to make UU matter. This matter can be used make more things.\n\nThe downside is you can't build an HV one right now. Build an LV one and power it with 8 amps of LV to get your first UU matter. Watch your voltage levels and currents!\n\nIf you do not have a field generator, go do the tetrafluoroethylene quest and build some. \n\nFor now, just stockpile the UU matter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":461,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30721,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11306,"OreDict":""},{"id":"EnderIO:blockTank","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1878,"preRequisites":[1248,2296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32707,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lData Orbs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Data Orbs are high tier data sticks to replicate materials or used as data storages."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32102,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":8,"Damage":32082,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32039,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32043,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":256,"Damage":32041,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":128,"Damage":19085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32707,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":128,"Damage":32033,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1879,"preRequisites":[1880],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":484,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lCreate new material out of pure energy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Replicate material out of pure energy. Scan your elements first, like Hydrogen, Iron, Gold etc, and save them on a Data Orb. Later on you can use your replicator to copy this item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32707,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":482,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"IC2:itemPartCircuitAdv","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1880,"preRequisites":[1878],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32671,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lField Generator II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Field Generators are powerful devices. It will be used in high tier Tanks, Chests, in the Matter Production or in Teleporters.\nThe replicator needs it also. If you have not unlocked Tungstensteel go and do that now."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":32671,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17316,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1881,"preRequisites":[21],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:clay_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Clay for pennies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hard to find that clay? Have a stack for some coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1882,"preRequisites":[945],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2879,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Tired of grinding reeds?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I can trade you some chads for coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinTechnician","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":50,"Damage":2879,"OreDict":""}]}]},{"questID":1883,"preRequisites":[52],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glass","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":36000,"globalShare":1,"questLogic":"AND","name":"Glassy eyed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...from all the mortars you have to use to make glass dust? Have some for trade."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":2890,"OreDict":""}]}]},{"questID":1884,"preRequisites":[1009],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockFishTrap","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Shhh, don't tell 0lafe...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"But here is a nice quest to get cheap fish catchers!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:cooked_fished","Count":40,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:blockFishTrap","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1885,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:blockCrop","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Wood for sheep?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No thanks! But how about some crop sticks for coins and logs?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:log","Count":1,"Damage":0,"OreDict":"logWood"},{"id":"dreamcraft:item.CoinAdventure","Count":50,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:blockCrop","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1886,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemFertilizer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":144000,"globalShare":1,"questLogic":"AND","name":"Manure for fertilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I mean, what else are you going to do with this junk?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:spider_eye","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:rotten_flesh","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:dirt","Count":64,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFertilizer","Count":128,"Damage":0,"OreDict":""}]}]},{"questID":1887,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":611,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lElectric Furnace","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This quest was suggested by Shawnbyday. If you have a lv machine hull, two circuits and a few cables spare just craft it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":261,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":1888,"preRequisites":[534],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":64,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§4§3§lRepairing your Hazmat Suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Be careful to wearing you hazmat suit all the time. The duarbility is not high. Even just falling a few blocks will damage the boots quickly. \nYou can repair your suit before you can craft a new one in late LV Age using some rubber sheets and a glue bucket."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:buckets","Count":4,"Damage":25,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":21,"Damage":17880,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatChestplate","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorHazmatLeggings","Count":1,"Damage":0,"OreDict":""},{"id":"IC2:itemArmorRubBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17880,"OreDict":""},{"id":"minecraft:bucket","Count":2,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":11335,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":2,"rewards":[{"id":"dreamcraft:item.CoinSmith","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1889,"preRequisites":[160,600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12096000,"globalShare":1,"questLogic":"AND","name":"Healing Axe 2.0","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After party loot was limited to one loot per party not everyone can have a healing axe for free.\nGo and buy some."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":1,"requiredItems":[{"id":"harvestcraft:delightedmealItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:heartybreakfastItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:rainbowcurryItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:supremepizzaItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:sausageinbreadItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:beefwellingtonItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:epicbaconItem","Count":16,"Damage":0,"OreDict":""},{"id":"harvestcraft:meatfeastpizzaItem","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinCookII","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1890,"preRequisites":[1413,1705],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":215,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lIV Assembler","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An IV asembler is required to make enriched Sunnarium for HV Solar Pannels . Other recipes are twice faster than with an EV assembler."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":215,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11316,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11084,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1891,"preRequisites":[186],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":4841,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDesh, Scheelite, Tungstate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tungstensteel is the material you need but first go find some desh scheelite and tungstate mix on Mars. Look at Y 5-40."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockores","Count":64,"Damage":4884,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4910,"OreDict":""},{"id":"gregtech:gt.blockores","Count":64,"Damage":4841,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1892,"preRequisites":[1812],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":12000,"globalShare":1,"questLogic":"AND","name":"Fluorine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some fluorine? Buy some!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30014,"OreDict":""}]}]},{"questID":1893,"preRequisites":[783,1894,1200],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32662,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"§6§lFluid Regulator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Turbines require precise amounts of fluids or else they will explode. Use the fluid regulator on the pipe attached to the input bus to control the rate of fluids into the turbine. To raise the fluid limit, look at the right side of the regulator and:\n\n1L - Right click with an empty hand\n16L - Right click with a screwdriver\n256L - Right click with a screwdriver while sneaking\n\nTo lower the fluid limit, do the same while looking at the left side."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32662,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1894,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGas Turbine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Large Gas Turbine is more fuel-efficient than singleblock turbines and can have lower pollution with upgraded mufflers.\n\nYou will also need a muffler, maintenance hatch, input hatch, and dynamo hatch. Don't forget a fluid regulator. It can be a low tier fluid regulator since the fluid/tick necessary is much less than steam.\n\nSelecting a rotor is pretty easy. Take the EU/t of your dynamo hatch, and select a rotor that has (optimal gas flow * efficiency) that is close. Now, setting up the fluid regulator is hard. The easiest way is to let in 1 L/t and use the hand-scanner to tell you the optimal flow rate. Otherwise divide the optimal gas flow by the EU/L of your gas and round down. \n\nFor example, if we are using a normal vibrant alloy turbine with 1800 EU/t optimal gas flow and 115 percent efficiency with benzene. \n1800/288 = 6.25\nRounded down that is 6L/t. 6 * 288 * 1.15 = 1987, perfect for an EV dynamo.\nOther gases may output slightly higher or lower EU depending on how close to optimal they can reach. For example refinery gas\n1800/160 = 11.25\n11 * 160 * 1.15 = 2024, still OK for an EV dynamo\nHowever hydrogen at 20 EU/L is dangerous because\n1800/20 = 90\n90 * 20 * 1.15 = 2070, above 2048, so BOOOOM. You'll have to use a multi-amp dynamo hatch to prevent an explosion.\n\nOther useful turbine options at EV are normal ardite and galgadorian.\n\nFor additional choices, see the Large Turbine Calculator in Discord."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockcasings4","Count":29,"Damage":10,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1151,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1895,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockores","Count":1,"Damage":31,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":48000,"globalShare":1,"questLogic":"AND","name":"Manganese Ore","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Can't find Manganese ore because its not generated early game and you need to grow your Pyrolusium crop? Buy some Ores."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinAdventure","Count":80,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":8,"Damage":31,"OreDict":""}]}]},{"questID":1896,"preRequisites":[1667],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_Naquadahcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadah Fuel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Time to upgrade the Nuclear Reactor with Naquadah Fuel Rods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_Naquadahcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1897,"preRequisites":[1896],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_MNqCell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lNaquadria Fuel Rods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want MOX like behavior from Naquadah? You have to upgrade it to Naquadria!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_MNqCell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1898,"preRequisites":[191],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumDual","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDouble the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1899,"preRequisites":[193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDouble the fun","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumDual","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Double_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1900,"preRequisites":[1899],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1901,"preRequisites":[1898],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§l4 x the power and heat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need even more power? Why not combine dual rods? Produces twice the amount of power (and heat, obviously) but only uses up one slot."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.reactorMOXQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.reactorUraniumQuad","Count":1,"tag":{},"Damage":0,"OreDict":""},{"id":"gregtech:gt.Quad_Thoriumcell","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1902,"preRequisites":[190],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockFusedQuartz","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lNo Boom Tomorrow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a nuke, you can cause some real catastrophic damage to your base. You can either place it 20 chunks away, or surround it with blast proof materials. Fused quartz is relatively cheap, and can be converted into a variant that glows, or a variant that blocks light. Make some fused quartz and I'll give you some enlightened fused quartz.\n\n§4Alternatives include Warded Glass from Thaumcraft."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockFusedQuartz","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockFusedQuartz","Count":64,"Damage":2,"OreDict":""}]}]},{"questID":1903,"preRequisites":[770],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§e§9§lHV Energy Hatch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The HV energy hatch is crucial to a fast EBF that can do high tier recipes. You will need to make He coolant cells or NaK coolant cells. Follow NEI to figure out how."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":43,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1904,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30004,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lHelium is not just for balloons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Higher tier superconducting wires and energy hatches will require helium. Compressing air and liquifying it requires 1802 compressed air cells to get 1 He cell. It is better to make it from Endstone dust or Monazite from the Moon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30004,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":5,"OreDict":""}]}]},{"questID":1905,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1154,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lLarge Heat Exchanger - Fermat's Last","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I have discovered truly remarkable instructions for this machine which this margin is too small to contain.\n\n\n\n\nInstead, goto https://tinyurl.com/GTNH-LHE and read it there."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1154,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":1906,"preRequisites":[1014],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":333,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lRecycle for the Environment","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have too much wood, saplings, netherrack or other garbage recycle it and get scrap. You can use it for uu amplifier to make uu matter cheaper.\n\nCertain items such as cobblestone, stone, and tiny/small dusts are too easy to make and don't give any scrap. But otherwise any excess dusts or garbage you can throw in here to get scrap."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":333,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemScrapbox","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1907,"preRequisites":[1081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":135,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lOne in a million","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Or 4? Need to store ludicrous amounts of cobble? Stone dust? Saplings? Super chests are the thing to use. A simple Tier 1 Super Chest can store 4 million items, worry free. You will need to take items out manually 64 at a time, or use conveyors etc to extract them. \n\nSticking so many items in such a small space does come with a price - no more portability. You better be really sure this is where you want those millions of logs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":135,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnician","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":1908,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Natura:NetherFurnace","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lLucifer's little helper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With an alloy smelter and some netherrack dust you can make Nether furnaces, which are extremely efficient cooking machines. Very handy for someone needing a lot stuff furnaced in a jiffy.\n\nThe only downside is that iron furnaces can be used in the EBF later on. Nether furnaces cannot. Then again, Nether dust is practically free, so what's the loss? You can always use them to bake stacks of bread!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Natura:NetherFurnace","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinAdventure","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1909,"preRequisites":[1871],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":137,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHow much is too much cobblestone?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A super chest III is just ridiculous. Who would possibly need to store 16 million items? You, that's who."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":137,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":32670,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1910,"preRequisites":[740],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:hammer","Count":1,"tag":{"InfiTool":{"RenderExtra":1650,"BaseDurability":32400,"BaseAttack":17,"ToolEXP":0,"Built":1,"HarvestLevel":4,"HarvestLevelExtra":5,"RenderHead":1650,"ModDurability":0,"MiningSpeedExtra":1800,"Shoddy":0,"RenderHandle":1650,"Accessory":1650,"MiningSpeed":1800,"Unbreaking":0,"HarvestLevel2":5,"Damage":0,"BonusDurability":0,"TotalDurability":32400,"MiningSpeed2":1800,"HeadEXP":0,"Head":1650,"Attack":17,"Handle":1650,"Broken":0,"Extra":1650,"RenderAccessory":1650,"ToolLevel":1,"HarvestLevelModified":0,"Modifiers":0},"display":{"Name":"�fVanadiumsteel Hammer"}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBetter tools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an MV extruder you can make the next level of Tinker Tools - based on Vanadiumsteel parts with Damascus steel rods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TGregworks:tGregToolPartHammerHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":1,"tag":{"material":"DamascusSteel"},"Damage":1634,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TGregworks:tGregToolPartLumberHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""},{"id":"TGregworks:tGregToolPartExcavatorHead","Count":1,"tag":{"material":"VanadiumSteel"},"Damage":1650,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"TGregworks:tGregToolPartToughRod","Count":1,"tag":{"material":"DamascusSteel"},"Damage":1634,"OreDict":""}]}]},{"questID":1911,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":16,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lCraftsman used to mean quality","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an EBF you can make vanadiumsteel GT tools. With 192k durability they'll last you a long time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":11371,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":16,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"Wood"}},"Damage":22,"OreDict":""},{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"VanadiumSteel","MaxDamage":192000,"SecondaryMaterial":"VanadiumSteel"}},"Damage":26,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1912,"preRequisites":[238,1232],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Material","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"3 plus 4, carry the 2...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When doing infusions, it's always good to know how close you are in stability. Once you get to HV you can make an Arcane Abacus to track your infusions. This makes infusions 100 percent safe, right??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Material","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:skull","Count":4,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":1913,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:Printing Press","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGut-enough for you? Bet you thought Newspapers were dead!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Typesetting Table and Printing Press will allow you to duplicate books, including enchanted books. The process is kinda complicated, so check out the Bibliocraft mod wiki page. You'll need to use XP to duplicate enchanted books, so now would be a good time to figure out how to collect large amounts...\n\n§4You'll need some Thaumium ingots. You can go Thaumcraft, find some in a chest, or try breeding Magical Metal Berries in IC2 crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.BiblioChase","Count":1,"Damage":0,"OreDict":""},{"id":"BiblioCraft:Typesetting Machine","Count":1,"Damage":0,"OreDict":""},{"id":"BiblioCraft:Printing Press","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:experience_bottle","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":1914,"preRequisites":[1913],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":3,"id":35}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDo you feel unlucky?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well not any more! With some emeralds and a blank book, I'll give you a Fortune 1 you can use in your printing press. Once you have duplicated it a few times, you can combine the Fortune 1 books in an anvil to get a Fortune 2. Duplicate the Fortune 2 books to get a Fortune 3! \n\nWith a Fortune 3 book and a tier-specific item you can remove the trash item rewards from your loot bags. More good stuff!\n\nSoul Bound is another good enchantment, it will keep an enchanted item in your inventory in case of death."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:emerald","Count":64,"Damage":0,"OreDict":""},{"id":"minecraft:book","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:enchanted_book","Count":1,"tag":{"StoredEnchantments":[{"lvl":1,"id":35}]},"Damage":0,"OreDict":""}]}]},{"questID":1915,"preRequisites":[51],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:mudball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lMud, can also be used for facials","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You may have found plenty of mud piles around the wetlands and thought of them as mere annoyances when jumping in the water or for that armor. Waste not! With your new extractor, you can pull out the clay hidden in the mud!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiomesOPlenty:mudball","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":16,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1916,"preRequisites":[1478],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32748,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWhere is that handyman when you need him?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Needs Maintenance cover will send out a redstone signal when the controller it is attached to requires maintenance. This is handy for the cleanroom you will need to build, since maintenance reduces cleanliness level and will cause voided recipes.\n\nFor the cleanroom you can place this on the top or bottom. For other machines you might want to place it on the side so you can have access to the front face. In that case, you can use a soldering iron and fine solder to have it emit a strong redstone signal that will penetrate through a block next to the cover."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32681,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17019,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32748,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1917,"preRequisites":[1916],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBEEEP BEEEP BEEEP","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knowing that your cleanroom needs maintenance is pretty important. Instead of just turning on a light, why not use a howler alarm? It will notify you up to 128 blocks away. \n\n§4§d§cWarning: May cause uncontrollable urine leakage when activated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2NuclearControl:blockNuclearControlMain","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:noteblock","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1918,"preRequisites":[1549],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trashcan","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lToo much fluid??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impossible! If you really think you have so much fluid that you want to just get rid of it, make a fluid trashcan. You can route as much excess creosote or whatever into it you want. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trashcan","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""},{"id":"dreamcraft:item.CoinTechnician","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1919,"preRequisites":[53],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraUtilities:trashcan","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lToo much junk??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Impossible! But if you really want to get rid of excess items, make yourself a trashcan. If you want to be really fancy, you can use a hopper with a lever next to it to make sure you only throw away items you really want. I mean, *I've* never thrown away a tool accidentally, nope, never me."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraUtilities:trashcan","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1920,"preRequisites":[718],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"berriespp:itemLens","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Can't tell them apart either?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many plants look the same. Someday we'll update their DNA so they are each unique, but for now you can make a simple Plant Lens to at least identify species."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"berriespp:itemLens","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Zomplant","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinFarmer","Count":10,"Damage":0,"OreDict":""}]}]},{"questID":1921,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":363,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lSeparating molecules","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An HV centrifuge is required to separate out Tungstate from Lava. You'll need to start thinking about dedicating a setup just for lava centrifuging. Plus it's a good source of silver, tin, copper, and tantalum."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":363,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":64,"Damage":2,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1922,"preRequisites":[160],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lTransformers, roll out!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you get to HV you will start wanting to think about centralizing power generation and delivering power over longer distances. An HV to EV transformer will let you send power across your base without too much penalty."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":23,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1923,"preRequisites":[1922],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":880,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lNot enough amps?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"How about 4x more? A Hi-Amp transformer will transform 4 A to 16A. Great for setting up a large power grid and locating polluting power generators further from your base."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":880,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1924,"preRequisites":[1923],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12003,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lMore than 4 amps? Crazy!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the truly insane, there is a 16 to 64 A power amp transformer. Just ludicrous!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12003,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":6,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1925,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"miscutils:blockDecayablesChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lWhat's in the box?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of waiting around 7 hours with radium in your inventory waiting for it to decay? With a lead-lined box you can safely leave your radium and other materials and they will decay while you do real work."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:blockDecayablesChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1926,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§2§lA quicker way to get around","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you are playing single player or a local server, horses make a great way to get around. On nonlocal servers they can cause problems and desync if you have poor internet. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:saddle","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:lead","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":100,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":1927,"preRequisites":[1799],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Coal...from withereed?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Withereed is a source for coal, and more importantly, a good breeding stock for higher tiers.\n\nYou'll need coal blocks underneath it to fully mature."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Withereed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:coal","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""},{"id":"dreamcraft:item.CoinFarmerI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1928,"preRequisites":[1927],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemToolForgeHammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Son of Odin One-Eye","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"God of Thunder plant lets you increase your Thorium ore from the Nether by 4x. It also will give you Uranium you can use for Reactoria crops."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"God of Thunder","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":16,"Damage":96,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1929,"preRequisites":[1928],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemUran238","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Just cover your privates when you walk by","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Reactoria crops will drop Reactoria leaves which will 4x your Pitchblende ore."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Reactoria","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":32,"Damage":873,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1930,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.liveRoot","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ironwood is better than normal wood","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A necessary step for steeleafranks? Maybe not. But ironwood does make some great rollers for cooking, and a decent Sense blade.\n\nCreeperweed has a decent chance of giving liveroots seeds."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Liveroots","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TwilightForest:item.ironwoodHelm","Count":1,"tag":{"ench":[{"lvl":1,"id":6}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1931,"preRequisites":[1797],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:leather","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vegan leather?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to save your cows and horses for milk and ...glue... you can use Corium to make leather instead."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Corium","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:beef","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1932,"preRequisites":[1607],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:gunpowder","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gunpowder? More like dirtpowder!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Creeperweed can supply your gunpowder needs without dealing with bothersome explosions. It also has quite a few attributes, making it a good source of random crops.\n\nCorium can breed into creeperweed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Creeperweed","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:gunpowder","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1933,"preRequisites":[1931],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Milk of the earth-mother","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Milkwart means you can get rid of all your cows. Isn't that nice?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Milkwart","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"IC2","name":"netherWart","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":1934,"preRequisites":[486],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"harvestcraft:wovencottonItem","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cotton and string","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With some Farmer coins I'll trade you cotton and string. Perfect for making tanned leather!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinFarmer","Count":30,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:string","Count":30,"Damage":0,"OreDict":""},{"id":"Natura:barleyFood","Count":24,"Damage":3,"OreDict":""}]}]},{"questID":1935,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:obsidianChisel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A better chisel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to decorate your base, you're going to need a better chisel. The Obsidian chisel lasts twice as long as the iron chisel. A diamond chisel would last 10x as long, but needs an LV cutting machine."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:obsidianChisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1936,"preRequisites":[1937],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:metalPattern","Count":1,"Damage":13,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Right tool for the job","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tinker's Construct has their own chisel tool variant, for converting Tinker blocks into different types. Not a lot of uses, but if you check NEI you can see what you can do."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:metalPattern","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:GravelOre","Count":4,"Damage":4,"OreDict":""}]}]},{"questID":1937,"preRequisites":[74],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SpeedBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tinker's blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tinker's Construct offers a couple of useful blocks from the smeltery. Rough Brownstone takes Tin and Gravel and makes a block that lets you move a little faster. Cobblestone can be turned into Seared Stone, usable in the smeltery walls to make it larger without having to use clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SpeedBlock","Count":1,"Damage":0,"OreDict":""},{"id":"TConstruct:Smeltery","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1938,"preRequisites":[1936],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:SpeedSlab","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Some handy uses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The TiCon chisel doesn't have a lot of uses, but here a couple of interesting ones. Use NEI to see other options for more decorations. You can also slab these blocks if you want something monsters cannot spawn on.\n\nBrownstone roads are slightly faster than rough brownstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TConstruct:SpeedBlock","Count":1,"Damage":1,"OreDict":""},{"id":"TConstruct:decoration.multibrick","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:decoration.multibrick","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1939,"preRequisites":[1935,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:autoChisel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chisel all the things","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If, for some reason, you need to chisel a large number of items, the autochisel is what you want."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:autoChisel","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1940,"preRequisites":[1939],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:upgrade","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Chisel as fast as you can","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The autochisel speed is pretty slow. Craft some upgrades to make it faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:upgrade","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:upgrade","Count":1,"Damage":1,"OreDict":""},{"id":"chisel:upgrade","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"chisel:upgrade","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1941,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:marble_stairs.4","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"My ancient enemy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The one place Chisel is weak is in stairs. Would be nice to have more variety, but later I'll show you how to make any block into a custom stair.\n\nYou can also search NEI for \"stairs\" to find stairs from other mods."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:packedice_stairs.0","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:marble_stairs.1","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:limestone_stairs.0","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1942,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:lavastone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nChisel offers a wide variety of blocks. Searching NEI for \"chisel\" can gives pages and pages. Here is a small sample."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:antiBlock","Count":1,"Damage":15,"OreDict":""},{"id":"chisel:carpet","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:brickCustom","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"chisel:grimstone","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:lavastone","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:waterstone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:lava_bucket","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1943,"preRequisites":[1935],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fun party blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are even some really fun blocks available. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"chisel:warningSign","Count":1,"Damage":6,"OreDict":""},{"id":"chisel:obsidian_snakestone","Count":1,"Damage":1,"OreDict":""},{"id":"chisel:jackolantern16","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"chisel:technical3","Count":9,"Damage":0,"OreDict":""},{"id":"chisel:laboratoryblock","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:hexPlating","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},{"id":"chisel:futura","Count":1,"Damage":4,"OreDict":""},{"id":"chisel:futuraCircuit","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":4,"Damage":2,"OreDict":""}]}]},{"questID":1944,"preRequisites":[1935,554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Concrete and GT stones","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chisel can also transform Concrete and GT stones into new interesting blocks. Some of the GT stone blocks will even prevent mobs from spawning on top. GT Concrete will let you run faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockconcretes","Count":1,"Damage":8,"OreDict":""},{"id":"chisel:concrete","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:concrete","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockstones","Count":1,"Damage":5,"OreDict":""},{"id":"gregtech:gt.blockgranites","Count":1,"Damage":12,"OreDict":""},{"id":"gregtech:gt.blockstones","Count":1,"Damage":14,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1945,"preRequisites":[54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandStone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Builder's Wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The only thing going for the stone builder's wand is that it's cheap. It doesn't offer much in special modes, and doesn't last long either. But you can make a lot!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"betterbuilderswands:wandStone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandStone","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1946,"preRequisites":[1945],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Low tier wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Iron wand will last longer than the stone wand, and has a few modes. "}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandIron","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":1947,"preRequisites":[1946],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mid tier wand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The next tier up wand is the Diamond wand. Has all kinds of fun modes. Just be careful using it, would hate to place a bunch of blocks accidentally!\n\nThe ultimate builder's wand you can get from the tab Grind, or not to Grind."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterbuilderswands:wandDiamond","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1948,"preRequisites":[759],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32727,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"No ASMR from your machines?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If the sounds of your machines are driving you crazy, you can add a muffler upgrade to block them out. \n\nNOTE: This also means you won't hear when the machine is out of energy. Also, once applied the upgrade cannot be removed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32727,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraUtilities:sound_muffler","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1949,"preRequisites":[1930],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:tnt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better put on that rubber suit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Troll plant! What does it do? Troll you!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Trollplant","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1950,"preRequisites":[1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:emerald","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who the hell is Bob?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want emeralds for trading or other uses? These are the source."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Bobsyeruncleranks","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29501,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1951,"preRequisites":[1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.knightlyHelm","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"And I dub thee Sir Knight","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need an infinite source of knightmetal? It will be a hard plant to grow. Make sure you provide plenty of nutrients, clean air, fertilizer and water. Don't cry to me if it dies. Any oreberry is a good source crop, with Cobalt and Ardite best, then iron and the rest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Knightly Oreberry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmetal4","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":51,"OreDict":""}]}]},{"questID":1952,"preRequisites":[492],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:trowelIron","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Botany","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Botany mod offers more colors for blocks and glass, and simple tile patterns or more complex patterns using a Tileworker. For now, we'll make an iron trowel.\n\nThis mod will make lots of butterflies, so make sure to do your gardening underground or under glass. The butterflies will spread and infect leaves around your area, making more butterflies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:trowelIron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:clay_ball","Count":63,"Damage":0,"OreDict":""}]}]},{"questID":1953,"preRequisites":[1952],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:yellow_flower","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Finding Flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To start, you'll need to find some flowers. Then take your trowel and use it on some dirt blocks to turn it into soil. Next place your flowers on the soil to turn them into Botany flowers. If you have reached MV tier, check out the Slice and Splice tab for info on Genetics."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:red_flower","Count":1,"Damage":0,"OreDict":""},{"id":"minecraft:yellow_flower","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":3,"OreDict":""},{"id":"minecraft:red_flower","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1954,"preRequisites":[2096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Analyser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Analyzer is a machine that acts in an identical way to the Forestry Analyzer, in that it reveals the genome of bees, trees, butterflies and flowers. It can also be used to reveal the gene present on the DNA Sequence. Unlike the Analyzer, the Analyzer uses power (RF or EU) and DNA Dye to stain chromosomes and determine the genome directly. The analyzer takes 15 seconds to analyse a single individual.\n\nInformation from these quests was taken from Binnie's wiki at https://binnie.mods.wiki/wiki/Tutorial/Genetics"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":8,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":1,"Damage":1,"OreDict":""}]}]},{"questID":1955,"preRequisites":[1953],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:misc","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Powder Power","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Botany uses various powders to enhance soil properties.\n\nRaise Ph - Ash Powder, Pulp Powder\nLower Ph - Mulch Powder, Sulphur Powder\nIncrease Nutrients - Fertiliser Powder, Compost Powder"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":1,"Damage":0,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":1,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":1,"Damage":3,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:misc","Count":64,"Damage":0,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":1,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":2,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":3,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":5,"OreDict":""}]}]},{"questID":1956,"preRequisites":[1955],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:misc","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Killing weeds and growing flowers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody likes weeds. Weedkiller will keep the weeds of your soil. \n\nBonemeal can be applied to germling flowers to make the mature faster."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:dye","Count":1,"Damage":15,"OreDict":""},{"id":"Botany:misc","Count":1,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"minecraft:dye","Count":64,"Damage":15,"OreDict":""},{"id":"Botany:misc","Count":64,"Damage":7,"OreDict":""}]}]},{"questID":1957,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:soilMeter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Like having a County Extension Office in your hand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The soil meter will tell you the soil stats - how dry, how much nutrients, etc. You can amend the soil with the various powders so that it matches the requirements for your flower."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:soilMeter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:red_flower","Count":1,"Damage":2,"OreDict":""},{"id":"minecraft:double_plant","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":1958,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:pigment","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"80 new colors to play with","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you plant a vanilla flower, it is already mature. Cut it with a shears to get a germling you can replant to make more. Break the flower to get a mature flower. Turn the flower into pigment using a crafting table.\nTo get crosses, plant flowers next to empty soil blocks. Keep an eye out for weeds. Eventually a small germling will start growing.\nRemember, do this underground or in an enclosure or your TPS will regret it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:pigment","Count":4,"Damage":59,"OreDict":""},{"id":"Botany:pigment","Count":4,"Damage":78,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:pigment","Count":8,"Damage":1,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":2,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":11,"OreDict":""},{"id":"Botany:pigment","Count":8,"Damage":75,"OreDict":""}]}]},{"questID":1959,"preRequisites":[1958],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:stained","Count":1,"tag":{"meta":24},"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glass of many colors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The pigments color an amazing variety of glass. Just one warning - unlike normal glass, this glass isn't fireproof."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:stained","Count":4,"tag":{"meta":59},"Damage":59,"OreDict":""},{"id":"Botany:stained","Count":4,"tag":{"meta":78},"Damage":78,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:stained","Count":16,"tag":{"meta":24},"Damage":24,"OreDict":""},{"id":"Botany:stained","Count":16,"tag":{"meta":21},"Damage":21,"OreDict":""}]}]},{"questID":1960,"preRequisites":[1958],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramic","Count":1,"tag":{"meta":59},"Damage":59,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Ceramics","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With some clay and pigments, you can make pigmented clay. Put the pigmented clay in a furnace to get basic ceramic blocks. These blocks are great if you want an area of nice even colors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:clay","Count":4,"Damage":78,"OreDict":""},{"id":"Botany:clay","Count":4,"Damage":59,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:ceramic","Count":4,"tag":{"meta":78},"Damage":78,"OreDict":""},{"id":"Botany:ceramic","Count":4,"tag":{"meta":59},"Damage":59,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramic","Count":16,"tag":{"meta":75},"Damage":75,"OreDict":""},{"id":"Botany:ceramic","Count":16,"tag":{"meta":40},"Damage":40,"OreDict":""}]}]},{"questID":1961,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":20046},"Damage":16387,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Mortar and tiles","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make ceramic tile patterns, you need to convert your blocks into tiles. First make mortar, and then use the mortar with your blocks in a 3 block + 1 mortar pattern in the crafting table to get ceramic tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:misc","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":20046},"Damage":16387,"OreDict":""},{"id":"Botany:ceramicBrick","Count":3,"tag":{"meta":15163},"Damage":15163,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":257},"Damage":257,"OreDict":""},{"id":"Botany:ceramic","Count":16,"tag":{"meta":77},"Damage":77,"OreDict":""}]}]},{"questID":1962,"preRequisites":[1961],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:ceramicBrick","Count":1,"tag":{"meta":347707},"Damage":16387,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tile patterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have tiles, you can make simple tile patterns. A 2x2 of red/yellow and yellow/red makes a simple checkerboard. Using the checkerboard again in a 2x2 makes a checkerboard with smaller tiles. Use Binnie's Botany wiki page to find more patterns you can make with just tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:ceramicBrick","Count":4,"tag":{"meta":282171},"Damage":16387,"OreDict":""},{"id":"Botany:ceramicBrick","Count":4,"tag":{"meta":347707},"Damage":16387,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":2827},"Damage":2827,"OreDict":""},{"id":"Botany:ceramicBrick","Count":16,"tag":{"meta":17476},"Damage":16387,"OreDict":""}]}]},{"questID":1963,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tileworker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The tileworker can take the single-color ceramic blocks and turn them into pretty patterned blocks.\n\nAnd contrary to the name, you use ceramic blocks here, not tiles."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":4,"OreDict":""},{"id":"Botany:misc","Count":4,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.lavender","UID0":"botany.flowers.species.lavender","Slot":0},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":1},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":6},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":8},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":9},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":10},{"UID1":"botany.colorGreen","UID0":"botany.colorGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""},{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.forget","UID0":"botany.flowers.species.forget","Slot":0},{"UID1":"botany.colorLightSteelBlue","UID0":"botany.colorLightSteelBlue","Slot":1},{"UID1":"botany.colorLightSteelBlue","UID0":"botany.colorLightSteelBlue","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":6},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":8},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":9},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":10},{"UID1":"botany.colorGreen","UID0":"botany.colorGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""},{"id":"Botany:itemFlower","Count":1,"tag":{"Wilt":0,"Flowered":1,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"botany.flowers.species.althea","UID0":"botany.flowers.species.althea","Slot":0},{"UID1":"botany.colorThistle","UID0":"botany.colorThistle","Slot":1},{"UID1":"botany.colorMediumOrchid","UID0":"botany.colorMediumOrchid","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":4},{"UID1":"binnie.flowerEffectNone","UID0":"binnie.flowerEffectNone","Slot":5},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":6},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":8},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":9},{"UID1":"forestry.sappinessHigh","UID0":"forestry.sappinessHigh","Slot":10},{"UID1":"botany.colorDarkGreen","UID0":"botany.colorDarkGreen","Slot":11}]},"Age":2},"Damage":0,"OreDict":""}]}]},{"questID":1964,"preRequisites":[1960],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:insulatedTube","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Does this shit even work?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Who the hell knows? There's nothing in the wiki about these, except that they are to make \"gardens.\" Maybe make a few and stick them on a Forestry circuit board for a multi-farm? Who cares. Good luck."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:insulatedTube","Count":1,"Damage":256,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":514,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":1,"OreDict":""},{"id":"Botany:insulatedTube","Count":1,"Damage":643,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":1,"Damage":18,"OreDict":""}]}]},{"questID":1965,"preRequisites":[1959],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glassworker","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Want some custom glass shapes and configurations? A glassworker can provide some unique patterns to put in your windows. You'll need to make some glass fittings to hold the glass together."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":3,"OreDict":""},{"id":"ExtraTrees:misc","Count":4,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Botany:stained","Count":16,"tag":{"meta":66},"Damage":66,"OreDict":""},{"id":"Botany:stained","Count":16,"tag":{"meta":23},"Damage":23,"OreDict":""}]}]},{"questID":1966,"preRequisites":[1963,1965,1968],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:hammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Mo' Hammers Mo' Problems","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yes indeed, time for another type of hammer. The master carpentry hammer will allow you to rotate the blocks from the various workers.\nSneak to rotate the blocks vertically.\nWhy is the lower tier hammer the master hammer? Who knows??"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:hammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraTrees:durableHammer","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1967,"preRequisites":[1968],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Panels to cover your...everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The panelworker will create wood flooring pieces for you to use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraTrees:misc","Count":64,"Damage":4,"OreDict":""}]}]},{"questID":1968,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:machine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy woods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With the woodworker, you can create fancy looking types of wood blocks. You can use wood planks from Vanilla, Forestry, and Extra Trees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:machine","Count":1,"Damage":1,"OreDict":""},{"id":"ExtraTrees:misc","Count":8,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1969,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:lantern.stone","Count":1,"Damage":9,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Look Mom, no torches!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of a base using nothing but torches? This set of quests will go through the various options avaiable to light up your beautiful base.\n\nFirst up, Railcraft lanterns. These come in stone and metallic varieties. The stone varieties don't need much to craft. One plus/minus for these lanterns is that they are solid blocks - while you cannot walk through them, they also do not fall if the blocks around them are removed. Search \"lantern\" in NEI for more varieties. They are a bit annoying to craft now, but if you check NEI you can make them pretty easy with assemblers later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:lantern.stone","Count":4,"Damage":9,"OreDict":""},{"id":"Railcraft:lantern.stone","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Railcraft:lantern.metal","Count":8,"Damage":1,"OreDict":""},{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1970,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ForgeMicroblock:sawDiamond","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Second Saw","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Forge Microblocks can be really handy to make custom pieces. There are many saw tiers available. If you make me an iron one, I'll give you a diamond one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"ForgeMicroblock:sawIron","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ForgeMicroblock:sawDiamond","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1971,"preRequisites":[51,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:BiblioLantern","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancy lanterns","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Bibliocraft offers fancy looking lanterns. Make the candles from candleberries or beeswax."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:BiblioIronLantern","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BiblioCraft:BiblioLantern","Count":1,"Damage":3,"OreDict":""}]}]},{"questID":1972,"preRequisites":[479,54],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:glowstone","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've been to the nether and gathered Glowstone, you can use that for light as well. You can color it to make the block color change (unfortunately 1.7.10 does not support colored lights) or you can use the Forge Microblocks saw to cut it up into tiny nooks to light up areas without taking up much space.\nThere are also various glowing plants you can find or breed, such as glowflowers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ForgeMicroblock:microblock","Count":1,"tag":{"mat":"minecraft:glowstone"},"Damage":513,"OreDict":""},{"id":"ExtraUtilities:color_lightgem","Count":1,"Damage":13,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glowstone","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1973,"preRequisites":[554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic ProjectRed Illumination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The basic ProjectRed Illumination lamps only need an LV mixer to make. The normal version needs a redstone signal to turn on. The inverted version is on unless a redstone signal is applied."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Illumination:projectred.illumination.lamp","Count":8,"Damage":16,"OreDict":""}]}]},{"questID":1974,"preRequisites":[97,100],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2.inv","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fancier ProjectRed Illumination","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The fancier ProjectRed Illumination lamps, lanterns, and fixtures require the Forming Press and Assembler to create."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lantern","Count":1,"Damage":3,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.fixture","Count":1,"Damage":4,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp2","Count":1,"Damage":5,"OreDict":""},{"id":"ProjRed|Illumination:projectred.illumination.cagelamp","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":21,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":30,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":19,"OreDict":""},{"id":"ProjRed|Core:projectred.core.part","Count":64,"Damage":34,"OreDict":""}]}]},{"questID":1975,"preRequisites":[554],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ProjRed|Illumination:projectred.illumination.flightbutton","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ProjectRed lights with a purpose","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ProjectRed offers a couple of special lights that can be used as buttons. The normal buttons are always lit up. The Feedback buttons are lit up when powered by any redstone signal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ProjRed|Illumination:projectred.illumination.lightbutton","Count":1,"Damage":9,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ProjRed|Illumination:projectred.illumination.flightbutton","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":1976,"preRequisites":[1973],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Ztones:lampt","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flat lamps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These simple lamps from Ztones are a nice, subdued looking lamp style. I like using them on ceilings for the \"office\" look."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Ztones:lampf","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Ztones:lampb","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1977,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:torch6","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Glowstone & Chisel torches, space rated","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When travelling off-world, you want the best in torches. Torches that will work in no-oxygen environments like the Moon. For that, you need glowstone torches. You can chisel these torches into a variety of torch types, also proven to work in deep space. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"GalacticraftCore:tile.glowstoneTorch","Count":1,"Damage":0,"OreDict":""},{"id":"chisel:torch4","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"chisel:torch8","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1978,"preRequisites":[68,97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"FloodLights:carbonFloodlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lighting up a large area, without electricity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you have a relatively large area you need to light up without using electricity, you can use these floodlights. They can take normal furnace fuels, including blocks and compressed blocks. They do require some electronic components to make, but can send out a beam a long ways, or a various cone shapes a shorter distance."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"FloodLights:carbonFloodlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"FloodLights:carbonFloodlight","Count":4,"Damage":0,"OreDict":""},{"id":"dreamcraft:tile.CompressedCharcoal","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1979,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"FloodLights:electricFloodlight","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lighting up a large area, with electricity","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a vacuum freezer, you can liquify compressed air cells and centrifuge them for rare gases. You'll need those to make the incandescent bulb for these lights. As long as they have EU, these lights can shoot a beam or do narrow or wide cones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"FloodLights:electricFloodlight","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"FloodLights:electricFloodlight","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":1980,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockElectricLight","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Enderio Lights","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enderio also has its own lights. These lights have a radius of 8 blocks vs the normal 7. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockElectricLight","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockElectricLight","Count":7,"Damage":3,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":8,"Damage":2,"OreDict":""}]}]},{"questID":1981,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderIO:blockElectricLight","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BetterIO?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Powered and Wireless Powered lights from Enderio provide light up to 10 blocks away vs the normal 7 for a torch. They will require centrifuging liquid air to get the bulbs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderIO:blockElectricLight","Count":1,"Damage":1,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"EnderIO:blockElectricLight","Count":7,"Damage":1,"OreDict":""},{"id":"EnderIO:blockElectricLight","Count":7,"Damage":5,"OreDict":""}]}]},{"questID":1982,"preRequisites":[91],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"malisisdoors:door_factory","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What's behind door 3?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Malisis door factory lets you go crazy with all kinds of ideas for custom doors.\n\nA player sensor is a nicer way of opening a door, instead of pushing a button or stepping on a plate...bit unforunate about the ingredients though. \n\nMaybe you can find a use for this block mixer, it is kinda weird and doesn't work right. I was going to throw it out anyways.\n\nThere are some craftable Malisis items as well, check them out in NEI."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"malisisdoors:door_factory","Count":1,"Damage":0,"OreDict":""},{"id":"malisisdoors:player_sensor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"malisisdoors:block_mixer","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1983,"preRequisites":[97,98],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:guide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Build it bigger","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can build it! The Build Guide helps show you an outline of simple geometric shapes. Provide it with a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:guide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:glass","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":1984,"preRequisites":[1983,1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:builder_guide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Faster better buildi-er","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Enhanced building guide offers more features than the standard model. Most importantly, you can right click on any white part of the block with the item you want placed and the block will place in the world. It will need a redstone signal to activate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:builder_guide","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:redstone_block","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":1985,"preRequisites":[77],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:elevator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So much nicer than ladders","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Elevators are great for fast transportation vertically in your base. Leaving a tinted elevator will stop at the same color elevator. Use some Malisis doors for a nice \"real\" elevator effect.\nThe rotating elevator will turn the player as they go up or down to face a specific direction. Handy if your elevator shaft is on one side at a floor and a different side at another floor."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:elevator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"OpenBlocks:elevator_rotating","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1986,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ArchitectureCraft:sawbench","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"More like ouch-i-tect","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sawbench can turn most full cube blocks into amazing shapes of various kinds.\n\nRight-click with the hammer to rotate 90 degrees. Shift-right-click with the hammer to change the orientation of the \"bottom\" face.\n\nThe Chisel is used to alter the structure of blocks in various ways.\nSome blocks automatically form connections with adjacent blocks. These connections can be disabled and re-enabled by right-clicking with a chisel near the side that you want to change.\nSome blocks can have a secondary material applied to them. The secondary material can be removed by right-clicking on the centre of the block with a chisel.\nYou can also right-click on a vanilla Glass, Glass Pane, Glowstone or Ice block with a chisel to harvest the block without breaking it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ArchitectureCraft:sawbench","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ArchitectureCraft:hammer","Count":1,"Damage":0,"OreDict":""},{"id":"ArchitectureCraft:chisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1987,"preRequisites":[65],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgradeTemplate","Count":3,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lUpgrading Drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Drawer upgrades are different than barrel upgrades. First you need to make the ugprade template."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgradeTemplate","Count":3,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:upgradeTemplate","Count":6,"Damage":0,"OreDict":""}]}]},{"questID":1988,"preRequisites":[1987],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgrade","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lYour mom says to upgrade your drawers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are many tiers of upgrades for storage drawers. Make some iron, gold and obsidian tier upgrades and I'll give you some of the special purpose upgrades to experiment with in your base. Check NEI for more options and Emerald and Diamond upgrades.\n\n§4To remove upgrades, shift-right-click with an empty hand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgrade","Count":1,"Damage":2,"OreDict":""},{"id":"StorageDrawers:upgrade","Count":1,"Damage":3,"OreDict":""},{"id":"StorageDrawers:upgrade","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:upgradeStatus","Count":1,"Damage":1,"OreDict":""},{"id":"StorageDrawers:upgradeVoid","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":1989,"preRequisites":[1225],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Machine Inventory Manager","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The core block of Stacy's...er Steve's Factory Manager. SFM is a high tier automation system. While AE2 can handle simple crafting up to 9 components at a time and even nesting ingredients, SFM can handle the complex crafting required for the assline.\n\nInventory Cables connect the MIM to inventories or tanks.\n\nRight now until some Moron figures it out, your best bet is to experiment, ask for help on Discord, and search Google. The interface resembles most GUI based automation systems like LabView.\n\nThere have been TPS problems caused by poorly designed SFM setups. Make sure your outputs are properly emptied, and don't get filled.\n\nInventory cables are the \"basic\" cable of SFM. They allow the MIM to interact with an inventory, and act as a connector cable to other cables.\n\nmehdi2344 thinks my jokes suck, but he's an idiot, so there. \n\nThanks to Nori Silverrage for writing up these quests!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},{"id":"StevesFactoryManager:BlockCableName","Count":24,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableName","Count":40,"Damage":0,"OreDict":""}]}]},{"questID":1990,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesAddons:duplicator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moving the Manager ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ever finished a wonderful program and then realised your Manager needs to move and you have to rewrite the whole thing? Ever need to copy and paste a section of code a bunch of times and been frustrated that you can't? Well we've got you covered with the Manager Duplicator!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesAddons:duplicator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1991,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesAddons:labeler","Count":1,"tag":{"saved":["Energy Receiver","Energy Provider","Input Inventory","Input Tank","Output Inventory","Output Tank"]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Naming Names","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Factory Labeler allows you to assign unique names to anything that can be connected to a Manager - making it easy to identify when you are setting up commands.\n\nType in the text box to set a label or to searched stored labels - click any stored entry to select it, double click to edit it. Closing the GUI will set the Labeler to whatever was in the text box at that time.\n\nLeft click to set labels, right click to open the gui. Setting a blank label will remove any existing labels.\n\nMay or may not be buggy. Have fun!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"StevesAddons:labeler","Count":1,"tag":{"saved":["Energy Receiver","Energy Provider","Input Inventory","Input Tank","Output Inventory","Output Tank"]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":1992,"preRequisites":[297,990],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Wand Enhancements","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumic Machina offers Wand Augmentations. These useful modifications to your wand can boost their capacity, lower their vis usage, or do other interesting effects. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":1993,"preRequisites":[1992],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Charge Buffer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Charge Buffer augmentation to your wand allows it to hold 25 percent more vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":2,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":1994,"preRequisites":[1992],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Vis Channels","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This wand augment will lower the vis cost when using your wand by 10 percent. I am not sure it works, but give it a try and report back, ok?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicMachina:wandAugmentationCore","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:blockMagicalLog","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":14,"OreDict":""},{"id":"Thaumcraft:ItemResource","Count":1,"Damage":15,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""}]}]},{"questID":1995,"preRequisites":[1177],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemResource","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"What are you, a seamstress?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted Fabric is the key material to fancy robes and wizard's clothing. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemResource","Count":16,"Damage":7,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemResource","Count":8,"Damage":7,"OreDict":""}]}]},{"questID":1996,"preRequisites":[1995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemChestplateRobe","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"K-Mart Special","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Every point of vis is critical, so make yourself some magical robes to help conserve how much you use. Later you can make even better robes. They don't offer much in protection, so remember to change before going to hunt!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemChestplateRobe","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemLeggingsRobe","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemBootsRobe","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":4,"Damage":5,"OreDict":""}]}]},{"questID":1997,"preRequisites":[1995],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Boots are made for walking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"And swimming. These boots of the traveller will make you a blur as you go around the world. You'll need to research infusion before you can make these."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:BootsTraveller","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":1998,"preRequisites":[237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I can see everything","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With your new wand, you can make Goggles of Revealing. With Thaumcraft Node Tracker, it makes finding nodes trivial. The default key is I. You can select from the list of nodes you have scanned, and an in-world arrow will show you the way. You can also sort the list.\nBest, the goggles give you a 5 percent vis discount. \n\nSimple lens upgrades will grant you various seeing abilities as well.\n\nLater you can make more advanced goggles and even integrate the goggles into advanced armors."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGoggles","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:blockCustomPlant","Count":2,"Damage":5,"OreDict":""}]}]},{"questID":1999,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Redstone Emitter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone Emitter sends redstone signals on each of its 6 faces. The redstone signal strength can be set to any value, add, subtract, and more."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableOutputName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2000,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Camouflage blocks allow the faces of cable blocks to be made to imitate any other block. This works in the full workflow and thus can be updated on the fly. \nPlease note that this block is placed the same as all of SFM cables. It does not act as an inventory cable and thus will need to be in an advanced cable cluster in many situations."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":2001,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inventory Relay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The inventory relay can access the inventory of non-stationary entities, such as minecarts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2002,"preRequisites":[2000],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Double Sided Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Double sided cable camouflage blocks allows setting the inside face of the cable block, allowing you to imitate glass."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":1,"OreDict":""}]}]},{"questID":2003,"preRequisites":[2002],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Transforming Cable Camouflage","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Transforming Cable Camouflage allows you to change the collision box of the cable, so you can turn it into a door or whatever."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableCamouflageName","Count":2,"Damage":2,"OreDict":""}]}]},{"questID":2004,"preRequisites":[2001],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Inventory Relay","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An Advanced Inventory Relay can add/remove items from a player's inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableRelayName","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2005,"preRequisites":[1710],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32091,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Learning curve? Where we're going there are no curves","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Only dangerous cliffs to fly off. TecTech can be the source of adventures, scary and satisfying. \n\nThanks to Piky/Scripted for giving you some guardrails to stay on the road. Scripted/Piky shed blood over these quests for you. Now it's your turn!\n\nFor additional details on TecTech, check out the wiki at https://github.com/Technus/TecTech/wiki"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2006,"preRequisites":[2005],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"tectech:item.em.frontRotate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Beginning of the End Game","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Welcome to TecTech! The pinnacle of absolute high-tier machinery for all your end-tier needs. However, learning TecTech is incredibly confusing, so listen very carefully. \n\nFirst, you'll need to gather various casings for your machines that you'll need. High Power Casings, Computer Casings, and Computer Vents will do, though you'll require a large amount of them before proceeding onward."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"tectech:gt.blockcasingsTT","Count":64,"Damage":0,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":96,"Damage":1,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":96,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":64,"Damage":2,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":15470,"OreDict":""},{"id":"tectech:item.em.constructable","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockmachines","Count":64,"Damage":15470,"OreDict":""}]}]},{"questID":2007,"preRequisites":[2006],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15311,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Quantum Computer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"One of the more incredibly complicated machines, this will serve as the main structure for your \"Computation\" generation for the giant Research Station. First, you'll need a few things, the Quantum Computer itself, a huge energy hatch several amps of UV or above, this is because as Computer Racks, that'll be explained later on down here, will continuously increase the demand of energy input for every new Computer Rack that you add on. The Multiblock also consumes a large amount of energy by itself. Another important factor is ONLY turn on the Quantum Computer once you have the desired recipes for the Research Station ready to avoid excess energy loss. In order for you to build this absolute monster, you'll need to place down the Quantum Computer at least 1 block above the surface/ground and use the Multiblock Machine Blueprint, this will give you a hefty amount of information and various ghost-like blocks that'll show where casings and or hatches should go.\n\nComputation:\nComputation is generated every second and is based on the tier of your circuit. There are, however, differences in between how much computation is generated, even with the same exact tier. For instance, you could use a Master Quantum Computer (Quantum Circuit Series / LuV) or a Wetwareprocessor (Wetware Circuit Series / LuV) which will give you more Computation even though they are of the same tier. If you wish to find out exactly how much Computation a circuit gives; place down a Computer Rack, put a circuit inside and scan it. It will include the following information\nBase computation: \nAfter overclocking: \nHeat Accumulated: \n\nComputer Racks:\nThe main component within the multiblock to generate Computation. In order to achieve this, you will need to input some circuits and heat vents; Advanced Heat Vents work best. It is critical that you use Heat Vents to prevent the heat from reaching a catastrophic point, 55 percent or above should be avoided for safety reasons. Technically, you could achieve above 55 percent heat capacity or 5500 heat capacity, however, the Computer Racks may melt or explode above 5600 or 6000 heat. In order to precisely find out how much heat, you'll need a Parametrizer, which will be explained later. Now that you've understood one of the more basic concepts and safety of handling within the Computer Racks (scan the Racks before you run the Quantum Computer!), what are the more optimal setups for your Quantum Computer? Do keep in mind that even a 128 min Computation / Sec setup can complete practically 3/4th's of the recipes within the Research Station. In this case, a 4 Computer Rack setup with 1 Advanced Heat Vent and 3 Wetwareprocessors (LuV) will generate 72 Computation every second; leading up to a maximum of 288 Computation every second at just 5 amps of UV (524,288 EU/t) with only 4 Computer Racks required. This is a rather minimal setup compared to some of the more complicated setups.\n\nAnd most importantly: DO NOT WRENCH THE COMPUTER RACKS IF THEY HAVE HEAT IN THEM. Scan them before anything else! Otherwise, you're going to get an explosion.\n\nUncertainty Resolver\nMuch like a puzzle-solving simulation, it is rather complicated to explain how to solve it, but it's often best just to retrace or undo certain actions and hope for the best. Sometimes, the Schr�dinger Status will require some puzzle solving again after a period of time. This is random and incredibly frustrating especially during operations being done between the Research Station and Quantum Computer(s), so it is important to constantly check the Uncertainty Resolver before you start operations on your Computer.\n\nNow that you understand some of this, it is time to build the Computer! You'll need to gather quite a lot of resources at first."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15311,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15430,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15441,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":32,"Damage":15470,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":2,"Damage":15103,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":12,"Damage":2,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":10,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":22,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"tectech:gt.blockcasingsTT","Count":20,"Damage":3,"OreDict":""}]}]},{"questID":2008,"preRequisites":[2007],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15331,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Research Station","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you've started building up your precious Quantum Computer, how about the giant Research Station? Once again, using the Multiblock Machine Blueprint will tell you how to build this Multiblock. Once it is nearly assembled, place down an Energy Hatch, an Optical Slave Connector, and a Maintenance Hatch all on the back side. Once fully assembled, you can now begin operating recipes at any given time, so long as the Quantum Computer is also active. This Research Station requires you to put the desired item within the Object Holder, then a data stick in the Multiblock interface itself. Once the Computation is fully completed, the data stick that houses all the data of the completed item will be inside the Multiblock Interface. Still confused? Good, that's the spirit of learning! Always make sure to test these things in Single Player if you wish to find exact measurements and such. \n\nDon't forget to ALWAYS COLOR THE OPTICAL HATCHES AND FIBERS!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15331,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15103,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15440,"OreDict":""},{"id":"gregtech:gt.blockmachines","Count":1,"Damage":15451,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":29,"Damage":1,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":23,"Damage":3,"OreDict":""},{"id":"tectech:gt.blockcasingsTT","Count":14,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"tectech:gt.blockcasingsTT","Count":59,"Damage":1,"OreDict":""}]}]},{"questID":2009,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sign Updater","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Sign Updater allows your MIM to update an external display of information."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableSignName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2010,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableIntakeName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Item Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Item Valve allows your factory manager to suck in dropped items from around them in a 3x3x3 cube. Or you can use them to push items out into the world in the direction they are pointing."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":4,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":4,"Damage":0,"OreDict":""}]}]},{"questID":2011,"preRequisites":[2010],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableIntakeName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Rapid Item Valve","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rapid Item Valves can pick up items in the world without any delays."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":2,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableIntakeName","Count":2,"Damage":8,"OreDict":""}]}]},{"questID":2012,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableClusterName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Cable Cluster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The cable cluster allows you to combine as many of the other cables together into one block. You could have a redstone receiver and emitter and a inventory relay all in one block.\nThis cable is a \"terminal\" cable. It does not extend the MIM beyond it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":8,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2013,"preRequisites":[2012],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableClusterName","Count":1,"Damage":8,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Advanced Cable Cluster","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Advanced Cable Cluster will also act as an Inventory cable, extended the range of your MIM."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableClusterName","Count":4,"Damage":8,"OreDict":""}]}]},{"questID":2014,"preRequisites":[1180],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Railcraft:machine.beta","Count":1,"Damage":10,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lAll those chunks, all in a row","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you don't want a 3x3 area chunkloaded, but a long straight line instead. This can be handy for rail lines or power lines coming from long distances. An anchor sentinel can perform this function. Right-click on a chunk loader with a crowbar, and it will activate. Go in any straight line from the chunkloader and place the anchor and hit it with the crowbar. Those chunks, up to 25x1, will now remain loaded.\n\nThis will draw an amount of chunkloader time relative to the 9 chunk area normally loaded. If for some reason you wanted only a 1 chunk area loaded, this will extend the time. Stock up on those pearls or server coins!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Railcraft:machine.beta","Count":1,"Damage":10,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChunkloaderTierIV","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2015,"preRequisites":[1999],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Redstone Receiver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone Receiver reads redstone signals on each of its 6 faces."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableInputName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2016,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Block Gate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Block Gate can break pickup, or place blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableBreakerName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2017,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Block Detector","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Block Detector allows your MIM to detect when a Block update has occured. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockCableBUDName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2018,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":254,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§a§lCutting up stuff at EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are EV you are going to need a more advanced cutting machine. Better get one built."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":254,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2019,"preRequisites":[1989],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"The Basics of SFM","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Variables - Declaration vs Standard\nDeclaration is simply creating a variable with eligible blocks in it. This allows easy updating of workflows. For instance you could have a variable that contains 2 chests. You use it in a nifty for each loop and later add another chest. Simply update the variable and the for each loop will start using it.\n\nStandard variables are able to be inserted into the middle of a workflow (it has input/output) and thus can be modified on the run.\n\nPlease note that for each loops will require a empty variable to work with. This is listed as \"Element\" in the loop.\n\nGlobal vs Local\nGlobal will keep changes to a variable that are done in the workflow, whereas local keeps anything done local to that part of the workflow."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2020,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magical box","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This magical box is amazing. No matter how many are created, they all seem to connect to the same dimension. I can store items in one location, and pull them out somewhere else! I can use dyes on the top of the box to assign its location, and any box with the same colors will share the same space. Using a diamond on the box locks it my mind, and a private network. Shift-rightclicking will remove the diamond and join the chest back to the public network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":5,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2021,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderChest","Count":1,"Damage":4096,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A magical tank","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This tank always seems to connect to the same dimensional space. No matter how many I create. I can push fluids into the tank in one dimension, and retrieve them in a totally different dimension! I have discovered a way to assign a location to each tank using dyes applied to the top. Using a diamond makes the tank private, attuned to the caster's mind, and will not share fluids with any other player's tanks. Shift-rightclicking recovers the diamond and makes the tank part of the public tank network. The dial on front controls the input/output of the tank. When blue is up, the tank accepts fluids. When orange is up, the tank will eject fluids. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderChest","Count":1,"Damage":4096,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":4,"Damage":0,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":1,"OreDict":""},{"id":"minecraft:dye","Count":1,"Damage":11,"OreDict":""}]}]},{"questID":2022,"preRequisites":[2020],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EnderStorage:enderPouch","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"That chest is too big to carry around","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Instead of chest you have to keep placing and breaking, how about a nice convenient pouch you can use? You'll have to synchronize it with the chest you want to link with. To set it to a new chest, sneak-click with the pouch on a new chest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EnderStorage:enderPouch","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2023,"preRequisites":[2018],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§lMore power needed, sir!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"EBF and LCR recipes are going to need even more power. You'll need to craft EV energy hatches to supply them and keep them running."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":44,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2024,"preRequisites":[1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32608,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lAssline quest updates","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When the pack updates, and changes an assembly line recipe, your old data sticks become useless. However it's more than that, you can't simply rescan an old UV motor for the new UHV data, you need a new UV motor. It's best to start with component parts in the lowest changed tier, then work your way up until you've rescanned up to your current tier. Yes, this sucks, we also wish there was another way. You can tell if your data stick is out of date by seeing if the nei recipe matches the one in the data viewer. Nei will always be right."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]}]},{"questID":2025,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":3}},"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"GT++ knowledge","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To become a master at GT++ you will need to craft manuals for certain machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":3}},"Damage":3,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":1}},"Damage":1,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":0}},"Damage":0,"OreDict":""},{"id":"miscutils:bookGT","Count":1,"tag":{"stats":{"mMeta":4}},"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2026,"preRequisites":[1008],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiblioCraft:item.StockroomCatalog","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lBetter way to find items","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"NEI has a built in search feature for finding an item stored in an inventory nearby. A Stockroom Catalog can give you a list of everything stored in your inventories.\n \nSneak right-click a block with an inventory (a chest, bookcase, barrel, anything with an inventory) to add that inventory to the list of inventories for the catalog to keep track of. Sneak right-click the same block again to remove that block from the list.\nA small particle effect will render on any block that has been selected with the catalog when holding the Stockroom Catalog to let you know that block is being tracked.\n\nRight click to open the GUI and see the list.\nYou can sort the list in ascending or descending order by quantity (Count) or alphabetical order.\n\nYou can also see a list of all the inventories that have a particular item and easily add the location of one of those inventories to a stockroom catalog so you can easily find your stuff.\n\nThe Stockroom Catalog can also be copied with the typesetting table and printing press.\n\nClick on the title to change it to anything so you can custom label your stockroom catalog.\n\nClick on the small chest icons on the right hand side of each listing to open the inventory list view. \n\nIf you want, you can craft a waypoint compass and use that to point you towards the chest. Since we have Journeymaps and NEI, it's not really necessary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BiblioCraft:item.StockroomCatalog","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:chest","Count":16,"Damage":0,"OreDict":""}]}]},{"questID":2027,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":875,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lThermal Boiler - Lava you long time","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want energy from lava and the byproducts, the Thermal Boiler is the perfect solution. It processes lava super fast for steam, and with a lava filter will provide centrifuged lava byproducts as well. A great source of copper, silver, gold, tin, tantalum, and tungstate.\nYou can get even better efficiency pairing it with a Large Heat Exchanger. The LHE will turn normal vanilla lava into pahoehoe, which will provide steam and byproducts in the Thermal Boiler. Win/Win/Win!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":875,"OreDict":""},{"id":"miscutils:itemLavaFilter","Count":1,"tag":{"LavaFilter":{"Damage":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemLavaFilter","Count":3,"tag":{"LavaFilter":{"Damage":0}},"Damage":0,"OreDict":""}]}]},{"questID":2028,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":790,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"I think I'm going to be sick","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Industrial Centrifuge is the solution to those thousands of ore you are getting with the multiblock ore drill."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":790,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2029,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":862,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bask in the currents","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The best source for hundreds of thousands of glass for...something? I dunno, think of something interesting and impress me!\n\nThe \"effective\" voltage for the High Current Arc furnace is one tier lower than the energy hatch. For example, with an MV tier energy hatch, it will do LV tier arc furnace recipes.\n\nThis machine also does plasma arc furnace recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":862,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2030,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":811,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bate Bate Chocolate","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Abuela, will you teach us the chocolate song?\nCon mucho gusto\nWill you sing the chocolate song with us?\nGreat, sing along with Abuela!\n\nBate bate chocolate\nBate bate chocolate\nBate bate chocolate\nBate bate chocolate\n\nMix your chocolate, chocolate\nMix your chocolate, chocolate\nBate bate chocolate\nBate bate chocolate"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":811,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":64,"Damage":32213,"OreDict":""}]}]},{"questID":2031,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":859,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Play doh for big girls and boys","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I never wanna grow up, I wanna play with my mega extrusion machine.\nAnd in case you didn't read the description in NEI: You can use multiple input busses with a different extruder shape in each and then throw the items to extrude into the bus with the appropriate shape."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":859,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2032,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":992,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Best thing since sliced bread","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When all you have is a machine full of knives, everything starts looking like bread. \n\nBluebine 2019!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":992,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"minecraft:bread","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2033,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":860,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A 9 in 1 machine, what a steal!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This machine has 3 modes, capable of emulating 9 of the less common machines.\nThe 3 general modes are cycled by using a screwdriver on the controller. Each of the modes can support 2 or 3 different machine selected by putting a circuit into the same input bus as the items you want to process. If you have a look at the description of the controller in NEI, you will see a list of the supported machines for each mode. These are in order and can be used with circuit numbers 20, 21 and 22. This also means that you can use multiple input busses with different circuits to use the full potential of the machine. You can also use more busses to use different non-consumable items in the recipes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":860,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2034,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":796,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ZzzZZZzzzZtt","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need lots of oxygen or hydrogen, or just want to rip apart materials for tons of aluminium?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":796,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2035,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":910,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Frozen Stiff","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"I'm so cold..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":910,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2898,"OreDict":""}]}]},{"questID":2036,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":963,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Forge of the Gods","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Volcanus Advanced EBF will process items faster than you can believe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":963,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2843,"OreDict":""}]}]},{"questID":2037,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":798,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Spools and spools","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need enough wire to go around the world? Here you go."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":798,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2038,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":792,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bender more bending","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"When you need plates by the thousands."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":792,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2039,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":942,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bezos would be proud","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nThe Amazon Warehousing Depot is the ultimate for all your packing needs. Got tiny and small dusts coming out of your ears? This is the machine for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":942,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":41,"OreDict":""}]}]},{"questID":2040,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":791,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Industrial Coke Oven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Swimming in logs? Turn those logs into clean burning charcoal!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":791,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2041,"preRequisites":[1710],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:spawn_egg","Count":1,"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lChickens my boy, the future is in chickens","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Future wetware processors are going to need stemcells....lots of them. Luckily there is way to infuse a normal, harmless chicken embryo with genetic mutagen to make it a perfect source for these stemcells. Once the egg has matured it has a small chance of turning into a giant chicken spawn egg. This giant chicken will now lay eggs that can be disassembled for stemcells or allowed to mature to make more giant chickens. Killing the giant chicken may also give you eggs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:itemBigEgg","Count":1,"tag":{},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:spawn_egg","Count":1,"Damage":29,"OreDict":""}]}]},{"questID":2042,"preRequisites":[2050],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockThirstyTank","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So thirsty ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just listening to this tank gulp water makes me thirsty. If placed next to a water source block, it is a decent water source. It also supports several upgrades to speed and capacity. Try out this glyph near your cows, and get a tank full of milk for all your cheese and butter needs."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockThirstyTank","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:glyph","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2043,"preRequisites":[126],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.Volumetric_Flask","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBorax Electrolyzing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have an MV Electrolyzer, you can extract Boron from Borax. This element is used later on for Borosilicate Glass and fiber, but for now you can use it to make some volumetric flasks to hold precise amounts. This is handy for recipes that may only need a tiny amount of a substance, like 1L."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2009,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.Volumetric_Flask","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.Volumetric_Flask","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2044,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12730,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lMega is Betta","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For someone who needs to blast a truly *ridiculous* amount of stuff, this is the machine for you. This monster machine can handle up to 256 parallel recipes at a time.\nThe glass tier (search NEI for Glass-Tier: HV for an example) sets the maximum energy hatch tier for this machine.\nYou can set a prefered Circuit by Screwdrivering the Controller."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12730,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2045,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12731,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lFrostbite!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This mega vac freezer can handle up to 256 items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12731,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2046,"preRequisites":[610],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30727,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A better fluid pie","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have lead you can convert your bronze pipes to potin pipes with higher capacties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":30727,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"Damage":4,"OreDict":""}]}]},{"questID":2047,"preRequisites":[1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:blockCircuitProgrammer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lBulk Programming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of having to use NEI to figure out how to program your circuits? This block will allow you to simply choose the circuit number. It can be automated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:blockCircuitProgrammer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2048,"preRequisites":[1600],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:moss","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moss","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Given up on looking for moss in the Twilight Forest? You can easily grow a crop that will give you the various mosses, perfect for your Tinker's tools. Start with a lilypad."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Moss","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Spanish Moss","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Ember Moss","scan":4,"growth":1,"resistance":1,"gain":1},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2049,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":773,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Energy Buffers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Your research into energy has lead you to energy buffers - a single block that can store enormous amounts, and is also portable. Better than a battery, these devices can be configured to output 1-16A. Using a high-amp transformer, that means you can up tier 2 tiers with these devices. This HV energy buffer can power an HV machine for several hours, or an EV machine for almost an hour. Perfect for mining operations in far off dimensions."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":773,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]}]},{"questID":2050,"preRequisites":[227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockGreedyChest","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Greedy Chest","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Greedy Chest from Automagy looks to have some interesting uses. It also gates a pretty important device for a magician..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockGreedyChest","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2051,"preRequisites":[577],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Another way to Ethanol","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Using a fermenter with excess saplings or other garbage will give you Forestry biomass. Higher Sappiness trait on your trees will get you better results."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2052,"preRequisites":[2051],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Why no, this is not fit for human consumption","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Taking the biomass from the Fermenter and using it in a still will give you Ethanol. Not really worth it for power, but useful if you want to turn it into ethylene. You could set it up on an old steam setup with nothing better to do to get a more useful power source out of it, or use the Ethanol to power the setup and the forestry farm."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":6,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemFuelPlantBall","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2053,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":829,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Empty the oceans","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you stuck with fish for biodiesel this long, you can now make the Zhuhai Fishing Port to get cartloads of fish and other byproducts."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":829,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2054,"preRequisites":[1416],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":876,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Putting all those workers out of jobs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The large scale auto-assembler will put things together for you, in volume. It is an Assembler, Disassembler, and Autocrafter all in one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":876,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2055,"preRequisites":[2051],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:factory","Count":1,"Damage":5,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better fermenter outputs","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With a Squeezer you can boost the output from your fermenter, saving on Fertilzer or Mulch and getting more per sapling. There's a variety of crops you can use to make fruit juice, so have fun breeding."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:factory","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2056,"preRequisites":[1888],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lJacques Cousteau","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have a Scuba Helmet you can safely explore underwater for long periods of time. You just need some compressed air cells. I'll trade you some Tin ingots for a few compressed air cells.\n\nAs your air drops, the helmet will take a compressed air cell and give back an empty cell. Throw these cells into your compressor and you can easily gather clay from beneath rivers. You'll be able to make more cells later once you get an extruder or a plate bender."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemArmorHazmatHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":32,"Damage":11057,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemCellEmpty","Count":16,"Damage":5,"OreDict":""}]}]},{"questID":2057,"preRequisites":[1159,1807],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.steeleafPlate","Count":1,"tag":{"ench":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor II","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Steeleaf armor is the next level in Twilight Forest armor. It can be handy as a defense in the Nether."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":17339,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.steeleafHelm","Count":1,"tag":{"ench":[{"lvl":2,"id":4}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafPlate","Count":1,"tag":{"ench":[{"lvl":2,"id":3}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafLegs","Count":1,"tag":{"ench":[{"lvl":2,"id":1}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafBoots","Count":1,"tag":{"ench":[{"lvl":2,"id":2}]},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.steeleafAxe","Count":1,"tag":{"ench":[{"lvl":2,"id":32}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafPick","Count":1,"tag":{"ench":[{"lvl":2,"id":35}]},"Damage":0,"OreDict":""},{"id":"TwilightForest:item.steeleafShovel","Count":1,"tag":{"ench":[{"lvl":2,"id":32}]},"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2058,"preRequisites":[1951,2059],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"\"Oh magic\" armor III","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knightmetal is the top tier Twilight Forest armor. It doesn't come with any free enchants but it has high durability and high armor rating"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"TwilightForest:item.knightlyHelm","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyPlate","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyLegs","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyBoots","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TwilightForest:item.knightlySword","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyPick","Count":1,"Damage":0,"OreDict":""},{"id":"TwilightForest:item.knightlyAxe","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizard","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSmith","Count":25,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivor","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2059,"preRequisites":[1159],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TwilightForest:item.shardCluster","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Knightmetal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Knightmetal ingots are loot taken from Goblin Knight Strongholds. They can be made into Diamond-tier armor. You can take Armor Shards and turn them into Knightmetal ingots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"TwilightForest:item.armorShards","Count":9,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":2060,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:HoverHarness","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying like....Mary Poppins?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Thaumostatic Harness grants you flight, using up Potentia from a jar. The speed isn't great though, so perhaps further research will yield some results."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:HoverHarness","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2061,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ItemGirdleHover","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying with the greatest of ease","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ahh that's better. With this girdle you can really fly around like a true wizard. It does take a little extra potentia to use though, so keep an eye on your flying time."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemGirdleHover","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2062,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Baubles","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Working while flying? ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"With these devices you can now fly and work at the same time without penalty. They can be found in the Witching Gadgets tab of the book. You will need a Swiftness potion for this device."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Baubles","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""}]}]},{"questID":2063,"preRequisites":[2060],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:blockThaumostaticSpire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Long distance power delivery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No mage wants to be restricted to short flying times. With this spire from the Automagy discipline you can transmit magical energy directy to your flying harness. To get the correct Thaumium block, compress 9 ingots to get the GT Thaumium block and then chisel that block to get the correct type.\n\nThis multiblock requires centi-vis to operate. You can use 2-6 Thaumostatic Pylons, with additional pylons extending the range. Provide the construct Aer centi-vis to operate, and will accept Potentia essentia to transfer to flyers. The construct will also accept Aer and Volatus essentia to increase the range and rate of transfer, respectively. Right-click the sides of the controller to control which type of essentia each side will accept."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:blockThaumostaticPylon","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:blockThaumostaticPylon","Count":2,"Damage":0,"OreDict":""},{"id":"minecraft:quartz_block","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:blockCosmeticSolid","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":2064,"preRequisites":[275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"thaumicbases:nodeManipulator","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Healing your nodes","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many of the nodes of the wild have damage, and unjarring a captured node can also cause damage. The Node Manipulator can help you recover the nodes to full strength, and increase their recharge speed."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"thaumicbases:nodeManipulator","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"thaumicbases:nodeFoci","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2065,"preRequisites":[230],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:WG_WoodenDevice","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Clothes makes the magical woman or man","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Witching Gadgets Spinning Wheel will unlock plenty of useful materials and items. Hopefully without that creep Rumpelstiltskin! Make sure you get the WG Spinning Wheel and not the Witchery version."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:WG_WoodenDevice","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"WitchingGadgets:item.WG_Material","Count":4,"Damage":5,"OreDict":""}]}]},{"questID":2066,"preRequisites":[2065],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"WitchingGadgets:item.WG_Cloak","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Flying like a eagl - I mean raven","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This cloak will be a nice substitute for the Glider. There are plenty of other magical items worth a look in the Witching Gadgets tab."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"WitchingGadgets:item.WG_Cloak","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2067,"preRequisites":[1998],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicHorizons:lensFire","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Everything fuzzy? Try some lenses","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have Goggles of Revealing, Thaumic Horizons offers various lenses with handy uses. This one will grant night vision. Try out some of the others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicHorizons:lensFire","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ThaumicHorizons:lensCase","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2068,"preRequisites":[263],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"DraconicEvolution:dissEnchanter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Disenchanted ","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you found an item or book with a good enchantment - but also a bunch of garbage, you can strip the enchantments into separate books using a Disenchanter. Surround it with bookcases to reduce damage done to the item."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"DraconicEvolution:dissEnchanter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2069,"preRequisites":[81],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:GTPP.bauble.fireprotection.0.name","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§9§lHot hot hot!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Once you build your vacuum freezer, you are going to have to carry around hot ingots all the time. Your old gloves are falling apart, and take up both hands. I think there's a way you can glue them together so you can carry hot items with just one hand. Give these a try."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:GTPP.bauble.fireprotection.0.name","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":11367,"OreDict":""}]}]},{"questID":2070,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:SlowBuildingRing","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"So you want to go slower...wait, what?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sometimes you need to go slow so you don't fall off the top of your spire. Or you don't want to accidentally sprint in your fields and trample your crops. Maybe you don't want to have to hold sneak all the time. This bauble will weigh you down - keeping you from accidentally sprinting, and can be activated to enable/disable sneaking."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:SlowBuildingRing","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:potion","Count":1,"Damage":8269,"OreDict":""},{"id":"minecraft:gold_ingot","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2071,"preRequisites":[1490],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":100,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§c§lPanning for gold is for chumps","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have reached LuV you can make the god-tier prospector - The Electric Prospector. This handheld machine can provide detailed information on ores in the area, and return maps of how much fluid and what type is in each chunk."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.detrav.metatool.01","Count":1,"Damage":100,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2072,"preRequisites":[810],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"dreamcraft:item.SchematicsTier1","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Planetary Tears","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Indeed you will be crying over all the tiers you have to do for planets. Here is a handy reference.\n\nTier 1 - Needs Oxygen Gear\nMoon\n\nTier 2 - Requires Thermal Padding\nMars\nPhobos\nDeimos\n\nTier 3 - Requires Tier 2 Thermal Padding\nCeres\nAsteroids\nEuropa\nGanymeade\nCallisto\nRoss128b - Habitable Planet (need no Oxygen Gear/thermal padding)\n\nTier 4 - Need tier 2 thermal padding\nIo\nMercury\nVenus - Needs SpaceSuit\n\nTier 5 -Need tier 2 thermal padding\nEnceladus\nTitan\nMiranda\nOberon\n\nTier 6 -Need tier 2 thermal padding\nProteus\nTriton\n\nTier 7 -Need tier 2 thermal padding\nPluto\nHaumea\nMakemake\nKuiper Belt\n\nTier 8 -Need tier 2 thermal padding\nAlpha Centauri Bb - Requires SpaceSuit\nTau Ceti E - Habitable Planet (need no Oxygen Gear/thermal padding)\nVega B\nBarnarda C - Habitable Planet (need no Oxygen Gear/thermal padding)\nBarnarda E\nBarnarda F"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2073,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:ingredient","Count":1,"Damage":24,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Bat)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...Did you expect a raid boss of some kind? If you count the number of bats you'll encounter and kill, then probably yes."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":6,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.699999988079071,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":6,"BatFlags":0,"id":"Bat","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-7074487613494084000,"Health":6,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":4040540653557534000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":250,"taskID":"bq_standard:hunt","target":"Bat","subtypes":1},{"ignoreNBT":1,"index":1,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":5,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":1,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":5,"BatFlags":0,"id":"Thaumcraft.Firebat","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-6261044372789276000,"Health":5,"damBonus":0,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":4875998536939948000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"Thaumcraft.Firebat","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:spamcompressedsaltBlockalt","Count":8,"Damage":0,"OreDict":""},{"id":"minecraft:fish","Count":64,"Damage":3,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2074,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Dire Wolf)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These kinds of wolves do not take kindly to you marching close to them or offering them bones! Neutral at first, but extremely hostile upon approaching close to them and dangerous. They'll rip the bones right off ya! Found within snowy forest biomes."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.5,"Name":"generic.movementSpeed"},{"Base":40,"Name":"generic.followRange"},{"Base":10,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"enderzoo.DireWolf","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-9065909997462844000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-243949381481577630,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"enderzoo.DireWolf","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2075,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"witchery:wolfhead","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Hellhound)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aggressive and can apply fire, although not a fast enemy either. Recommendation, avoid melee combat and offerings of bones."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.30000001192092896,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":4,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"witchery.hellhound","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8351910570511150000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-1547927940807901200,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":15,"taskID":"bq_standard:hunt","target":"witchery.hellhound","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinSurvivorI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinAdventureI","Count":3,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianI","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2076,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:magma_cream","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Magma Cube)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now a Hell version of your slime! Always appears with Infernal status."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":1,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.20000000298023224,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":1,"id":"LavaSlime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-5097572486836440000,"Health":1,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-4758778065320197000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":20,"taskID":"bq_standard:hunt","target":"LavaSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2077,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:slime_ball","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Slime)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sticky and bouncy! Now in many variations. Say hello to my little friend, Lemon Slice!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":1,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":1,"id":"Slime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-7612310377822589000,"Health":1,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-239686335288032100,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":40,"taskID":"bq_standard:hunt","target":"Slime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithI","Count":5,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2078,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:trophy","Count":1,"tag":{"entity":"Silverfish"},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Time to kill (Silverfish)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Be wary, they like to disguise and clone themselves in stone-related blocks! (Applies to Vanilla blocks only) Can be found within dungeons. Can also be found in Drowning Creeper spawned cobblestone blocks."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":8,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.6000000238418579,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":1,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":8,"id":"Silverfish","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8975834499757947000,"Health":8,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-8086562575035774000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":15,"taskID":"bq_standard:hunt","target":"Silverfish","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"betterquesting:extra_life","Count":1,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinSmithII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2079,"preRequisites":[479],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BiomesOPlenty:hive","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":432000,"globalShare":1,"questLogic":"AND","name":"Hey is that a friendly bumblebee?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aieee, no it's not, it's a nether wasp, kill it kill it kill it!"}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":-2,"Name":"tc.mobmod"},{"Base":20,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"},{"Base":2.5,"Name":"generic.attackDamage"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":20,"id":"BiomesOPlenty.Wasp","Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8451188845710707000,"Health":20,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":1541882790712460300,"CustomName":"","Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":10,"taskID":"bq_standard:hunt","target":"BiomesOPlenty.Wasp","subtypes":1}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinBees","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2080,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:hiveFrame.cocoa","Count":8,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":864000,"globalShare":1,"questLogic":"AND","name":"Chocolate is bad for you...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"...but sure is great for production! Chocolate frames in apiaries and alvearies will boost output, but cause shortened life. This can be useful for the devious beekeeper..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"ExtraBees:hiveFrame.cocoa","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2081,"preRequisites":[507,2083,1953],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:misc","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Welcome to Biology Class!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Binnie's Genetics mod will allow you to pick and chose traits for bees, trees and Botany flowers. But not for free! Doing this comes at a price.\n\nIt is better to provide power to an Enderio capacitor and then power these machines with RF, instead of powering directly with GT EU."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:misc","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2082,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Making bees more comfortable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The acclimatiser is a key machine for breeding your bees. With lots of energy and the appropriate ingredients you can toughen your bees to thrive anywhere. However, even with climate hardiness your bees still won't produce special items unless they are in their favorite climate. Along with the bee, put in these items to adjust the bee's traits:\n\nsnowball - More temp tolerance\nsand - More dry tolerance\nwater - More wet tolerance\n\nFor water, it is best to use wax capsules made from beeswax, the acclimatiser doesn't return cells."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:snowball","Count":16,"Damage":0,"OreDict":""},{"id":"minecraft:sand","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:waxCapsuleWater","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2083,"preRequisites":[103,578],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:treealyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Such pretty leaves...","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you have entered MV you can begin breeding Forestry trees the smart way. Start by getting a Treealyzer, and scanning some common vanilla trees like oak, dark oak, spruce, birch, acacia, and jungle saplings. You will need to gather honey or honeydew drops from bee combs to power the Treealyzer. \n\nIf you want to bulk scan saplings, you can feed them through a GT scanner filled with honey.\n\nIf you have reached MV, you can try the Slice and Splice tab for information on Genetics."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:treealyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":2084,"preRequisites":[35],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:grafter","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Collecting the hybrids","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you got lucky and found some bees in a village, put them in their housings next to some trees. Over time the bees will slowly pollinate the leaves of the trees. Using a grafter you can break the leaf blocks to retrieve the sapling. You can trade with villagers to get proven grafters that have a longer lifetime. Also investigate magic, you have heard rumors of long lasting grafters available to magicians. \n\nGregTech also offers a really nice tool, the Branch Cutter."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:grafter","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""},{"id":"Forestry:grafterProven","Count":1,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""}]}]},{"questID":2085,"preRequisites":[36,2122],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Seeing the fruits of your labors","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"It can be difficult to see which leafy blocks are pollinated. Craft a pair of spectacles to get a better view."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:naturalistHelmet","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:grafterProven","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2086,"preRequisites":[145],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32722,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lGrinding heads are better than none","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the SAG mill will work with no grinding heads, flint heads only save a little power. If you want to exploit the true capability of the SAG mill, you want to use Diamond or Tungsten grinding heads. Craft me a Diamond and I'll give you a Tungsten as a reward."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32722,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32723,"OreDict":""}]}]},{"questID":2087,"preRequisites":[1987],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"StorageDrawers:upgradeLock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lKey to your heart","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Barrels by default allow locking the barrel to a specific item, even when empty. For drawers however you will need to make the Drawer Key to lock its content types."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"StorageDrawers:upgradeLock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"StorageDrawers:fullDrawers1","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2088,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Incubator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This is a crafting machine that heats items and liquids to a temperature that encourages bacterial growth. \n\nThe first step of incubation is the creation of Liquid Growth Medium, which is made from incubating Water and Growth Medium. This is subsequently incubated with Wheat to give Bacteria. This solution of bacteria can then be incubated a third time with Sugar to give Enzyme. This is an important compound used in other machines.\n\nThe best way to create enzyme is therefore to chain three incubators together, for each step of the process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":2,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:labMachine","Count":1,"Damage":2,"OreDict":""}]}]},{"questID":2089,"preRequisites":[1123,1493],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialApiary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Bees by the millions","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need endgame high speed bee production, industrial apiaries are the path to follow. Industrial Apiaries take upgrade frames that never break. Production frames can be stacked up to 8 high. It also has many options for emulation, more pollen retrieval, and others."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gendustry:IndustrialApiary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gendustry:UpgradeFrame","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":27,"OreDict":""}]}]},{"questID":2090,"preRequisites":[507],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:frameMutagenic","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fastest way to get there","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A GT++ Mutagenic frame will get your bees to their final destination faster than you can blink. Just remember to wear your rubber suit while making it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"miscutils:frameMutagenic","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":{}},{"questID":2091,"preRequisites":[1123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Upgrading the Alveary (tier 1)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These basic upgrades to the Alveary make it more powerful. \n\nFrame housing - Automation-enabled frames for the Alveary\nSwarmer - Creates additional Ignoble queens in hives around the Alveary\nHygroregulator - Controls for humidity, and to a lesser extent temperature. Will require lava or water.\nStabilizer - Prevents the princess or queen from changing species. Ideal for breeding traits into a line.\nSieve - Instead of the pollen from a bee fertilizing a nearby tree, it is stored here and can be manually applied. Requires manually placing woven silk in the inventory.\nRain shield - Keeps bees that are not rain tolerant dry and working.\nHatchery - Hatches larval bees for use in Genetics or to create additional drones."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":1,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":2,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":5,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":6,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":7,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":2,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:alveary","Count":8,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2092,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Busy Bees Buzzing Boldly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These upgrades can significantly increase your production rate by keeping your bees from stopping production.\nTransmission - Provides power to frame blocks that need it throughout the alveary.\nAlveary Fan - Cools your temperature a large amount.\nAlveary Heater - Warms your temperature a large amount.\nLighting - Provides light for bees that do not work at night."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":6,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":3,"OreDict":""},{"id":"Forestry:alveary","Count":1,"Damage":4,"OreDict":""},{"id":"ExtraBees:alveary","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:alveary","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2093,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A stim a day keeps the doctor awake","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Supporting circuit boards that can hold 4 electron tubes, the Electrical Stimulator provides a variety of functions. All numbers are in percent\n\nLV - Prod: 150 (Max 500) - Iron ET\nHV - Prod: 250 (Max 1000) - Diamantine ET\nBiotic - Poll: 150 (Max 500) - Apatine ET\nCharged - Life: 80 (Min 20) - Obsidian ET\nGentle - Life: 150 (Max 500) - Lapis ET\nMolten - Simulates the Nether - Blazing ET\nMutagenic - Muta: 150 (Max 500) - Golden ET\nInhibiting - Terr: 40 (Min 10) Prod: 90 (Min 50) - Tin ET\nAgitating - Terr: 150 (Max 500) - Bronze ET"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":4,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:thermionicTubes","Count":8,"Damage":3,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2094,"preRequisites":[2091],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:alveary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"X-Men, or should I say X-Bee?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Mutator can vastly accelerate genetic mutations, even allowing those ultra rare bees to be bred. Items inserted into the Mutator control how much mutation it causes.\n\nSoul Sand - 50 percent increase\nEnder Pearl - 100 percent increase\nEye of Ender - 300 percent increase\nNether star - 1000 percent increase"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:alveary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:soul_sand","Count":64,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2095,"preRequisites":[2088],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Genepool","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another important resource is Raw DNA. This can be obtained from any breedable organism such as bees, trees or flowers, and is created in the Genepool. The Genepool requires both Ethanol and Enzyme to digest the DNA, and will destroy the organism. Note this gives raw DNA, and does not preserve any genes or alleles present."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":1,"Damage":771,"OreDict":""}]}]},{"questID":2096,"preRequisites":[2095],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Isolator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Isolator acts in a similar way to the Genepool, but does not completely destroy genes. It instead allows the isolation of a single gene from an organism, without destroying it. The exact gene is random, and is written into an Blank Sequence. Until the sequence is analysed in an Analyser, it will be unknown what the gene is. It doesn't however need to be analysed before being sent to the Sequencer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":16,"Damage":5,"OreDict":""}]}]},{"questID":2097,"preRequisites":[2096],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sequencer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After obtaining a DNA Sequence with the gene that you wish, it must be placed in the Sequencer. This uses Fluorescent Dye to determine the correct sequence, and when completed logs the discovery. The important thing here is that the discovery goes to the person who placed the machine.\n\nGenes are sequenced faster if the sequence has been placed in a Polymeriser first to increase the strength."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""}]}]},{"questID":2098,"preRequisites":[2097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Polymeriser","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Serums and sequences can be placed in a Polymeriser to increase their strength and amount of DNA held within. Serums need to be polymerised at least once before being used in the inoculator. To polymerise, both Raw DNA and Polymerising Bacteria are required. Raw DNA is obtained from the Genepool, and Polymerising Bacteria is made from incubating bacteria with bonemeal. Gold nuggets can be used as a catalyst to speed up the process."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":8,"Damage":771,"OreDict":""}]}]},{"questID":2099,"preRequisites":[2097],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gene Database","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Discovered genes are logged into the Gene Database. This handheld device lists all genes by the type of organism they apply to. To add a gene to an Empty Serum Vial to allow inoculation, the desired gene can be clicked on while holding the vial. An Empty Serum Array can be used to hold more than one gene at once."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":8,"Damage":6,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":7,"OreDict":""}]}]},{"questID":2100,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:labMachine","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Lab Stand","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Lab Stand is a block on which an Apiarist Database, Arborist Database, Botanist Database or Gene Database can be placed by right clicking on the placed stand with the database, attaching it and allowing the database to be accessed by right clicking on the stand."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:labMachine","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""},{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""},{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2101,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Combined analyzers","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of carrying around seperate bee, tree, and butterfly analyzers? This combined tool will do all 3."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:analyst","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":2,"Damage":9,"OreDict":""}]}]},{"questID":2102,"preRequisites":[2099],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:registry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Registry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Registry combines the existing four databases into a new sleek browser to allow the properties, mutations and genes of all discovered bees, trees, butterflies and flowers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:registry","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":4,"Damage":7,"OreDict":""}]}]},{"questID":2103,"preRequisites":[2098],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:machine","Count":1,"Damage":3,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Inoculator","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The final step is inoculation. Currently the only machine capable of inserting genes is the Inoculator. This uses Bacteria Vector, created by incubating Bacteria and Blaze Powder, to transfer the gene into organisms.\n\nOnly the young stage of organisms can be injected, which are larvae (bees), pollen (trees and flowers) and caterpillars (butterflies). Bee larvae can be converted into drones by incubating with Liquid Growth Medium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:machine","Count":1,"Damage":3,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"BinnieCore:containerCylinder","Count":8,"Damage":772,"OreDict":""}]}]},{"questID":2104,"preRequisites":[2081],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:misc","Count":1,"Damage":6,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Tools for the Geneticist","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You'll need various tools and supplies before you start manipulating genetic material."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Genetics:misc","Count":16,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":5,"OreDict":""},{"id":"Genetics:misc","Count":2,"Damage":6,"OreDict":""},{"id":"Genetics:misc","Count":1,"Damage":7,"OreDict":""},{"id":"Genetics:misc","Count":4,"Damage":8,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:misc","Count":8,"Damage":7,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":1,"OreDict":""},{"id":"Genetics:misc","Count":16,"Damage":2,"OreDict":""},{"id":"EnderIO:itemPowerConduit","Count":8,"Damage":0,"OreDict":""}]}]},{"questID":2105,"preRequisites":[1956],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping track of your findings (Botany)","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This handy device will keep track of the flowers you have discovered so far, and their properties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Botany:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:diamond","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2106,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:flutterlyzer","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Figuring out Butterflies","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Butterflies don't do much, but this analyzer will give you details on their abilties."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:flutterlyzer","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32079,"OreDict":""}]}]},{"questID":2107,"preRequisites":[2083],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keeping track of trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This device will keep track of all the trees you have discovered."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:database","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitLemon","UID0":"forestry.fruitLemon","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""}]}]},{"questID":2108,"preRequisites":[504],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bee more knowledgeable","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This database keeps track of everything bee."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraBees:dictionary","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":20,"Mate":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]},"Health":20,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""}]}]},{"questID":2109,"preRequisites":[2106],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ExtraTrees:databaseMoth","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Fluttering Facts","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This database tracks all your knowledge of butterflies."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ExtraTrees:databaseMoth","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemPartCircuitAdv","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2110,"preRequisites":[1148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11101,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speeding up slow machines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Many mods don't have methods of speeding up their slow machines. For this, you'll need a GregTech World Accelerator. It guzzles amps though so your power infrastructure better be ready for it. The tooltip will list the performance boost provided. For block-based acceleration, the WA will do an area around it. For TileEntities like most machines, it will only accelerate the blocks directly touching the WA, and will need to be reconfigured with a screwdriver."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":11101,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30709,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30742,"OreDict":""}]}]},{"questID":2111,"preRequisites":[11],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:slime.gel","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Hail to the King","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you get lucky, you might find a King Slime in your travels. Kill it and I'll give you a really nice replacement head for one of your tools."}},"tasks":[{"ignoreNBT":1,"index":0,"targetNBT":{"ForgeData":{},"Size":0,"Attributes":[{"Base":0,"Name":"weapon.penetrateArmor"},{"Base":3,"Name":"weapon.daze"},{"Base":0,"Name":"weapon.attackSpeed"},{"Base":0,"Name":"weapon.mountedBonus"},{"Base":100,"Name":"generic.maxHealth"},{"Base":0,"Name":"generic.knockbackResistance"},{"Base":0.10000000149011612,"Name":"generic.movementSpeed"},{"Base":16,"Name":"generic.followRange"}],"Invulnerable":0,"PortalCooldown":0,"AbsorptionAmount":0,"FallDistance":0,"DeathTime":0,"DropChances":[0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967,0.08500000089406967],"PersistenceRequired":0,"HealF":100,"id":"TConstruct.KingSlime","ConversionTime":-1,"Motion":[0,0,0],"Leashed":0,"UUIDLeast":-8845708440277897000,"Health":100,"Dimension":0,"OnGround":0,"Air":0,"Rotation":[0,0],"CreatureInfusion":{"PlayerInfusions":[0,0,0,0,0,0,0,0,0,0,0,0],"tumorWarpTemp":0,"InfusionCosts":{"Aspects":{}},"Infusions":[0,0,0,0,0,0,0,0,0,0,0,0],"toggleClimb":0,"toggleInvisible":0,"tumorWarp":0,"tumorWarpPermanent":0,"sitting":0},"Equipment":[{},{},{},{},{}],"UUIDMost":-8369209673811083000,"CustomName":"","CanBreakDoors":0,"Pos":[0,0,0],"Fire":0,"CanPickUpLoot":0,"HurtTime":0,"oiltweak.inOil":0,"AttackTime":0,"CustomNameVisible":0},"damageType":"","required":1,"taskID":"bq_standard:hunt","target":"TConstruct.KingSlime","subtypes":1}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"TConstruct:hammerHead","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:excavatorHead","Count":1,"Damage":10,"OreDict":""},{"id":"TConstruct:broadAxeHead","Count":1,"Damage":10,"OreDict":""}]}]},{"questID":2112,"preRequisites":[103],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":0}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Sometimes life is scary and dark - Bring a backpack","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now that you are MV, you can make an Adventure Backpack. This very useful backpack can do many things. It can store 2 tools for quick access, has internal tanks for containing liquids - use the Hose to access them, a built in crafting table, and storage. When placed on your back, it can be accessed using a quick-access key, default is B. Check your controls for details. \nWhen placed on the ground, it can be accessed with a right-click. While on the ground, the bedroll can be deployed and used. \nThey can also be upgraded to add special abilities. For more special abilities than those featured here, check the Adventure Backpacks wiki."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":0}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:beefwellingtonItem","Count":64,"Damage":0,"OreDict":""},{"id":"adventurebackpack:backpackHose","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2113,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":2}},"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"See like a ... bat?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nightvision is a great backpack ability."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":2}},"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:rainbowcurryItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2114,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":62}},"Damage":62,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Swim like a .... squid?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you need to go deep or explore in the water, this is the backpack for you."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":62}},"Damage":62,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:meatfeastpizzaItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2115,"preRequisites":[2139],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":51}},"Damage":51,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walk through fire","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Pigman backpack will make the Nether ezpz with fire resistance. You'll have to figure out a way to get struck by lightning while wearing a Pig backpack to get it..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":51}},"Damage":51,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:supremepizzaItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2116,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":29}},"Damage":29,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Creeper Repellant","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An ocelot backpack will get those creepers running away from you. Nice protection against those drowning creepers! Don't get too close to them or else their repulsion will be overriden and they will blow up!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":29}},"Damage":29,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:fishandchipsItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2117,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":1}},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Milk without the cow?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Cow backpack will generate milk from wheat placed in its inventory. Great for a lazy farmer!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":1}},"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:wheat","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2118,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":22}},"Damage":22,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Here be dragons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Dragon backpack gives you Fire Resistance, Strength, Water Breathing, Night Vision and Regeneration."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":22}},"Damage":22,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"HardcoreEnderExpansion:music_disk","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":2119,"preRequisites":[184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":56,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Smart cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smart cables are better than glass or covered cables because you can visually see many channels are in use."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":56,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":56,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2120,"preRequisites":[2119],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:item.ItemMultiPart","Count":1,"Damage":76,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Dense cables","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dense cables are going to be your network backbones. They can transfer 32 channels and display the number of channels in use. Busses and flat interfaces cannot be placed directly on them."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":8,"Damage":76,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"appliedenergistics2:item.ItemMultiPart","Count":4,"Damage":76,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2121,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"Damage":30,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better Grafter through Technology","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The GT Branch Cutter is much better than the forestry grafters. It can have much higher durability based upon which material you use to create it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{}},"Damage":30,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:fruits","Count":64,"Damage":3,"OreDict":""}]}]},{"questID":2122,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"forestry.fruitApple","UID0":"forestry.fruitApple","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Speak for the trees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You'll need to find a bunch of vanilla trees to start your breeding program. To convert them directly to Forestry trees, you can use a Treealyzer - but you'll need a carpenter and aluminium from MV for that. Alternatively, you can just grow a bunch of vanilla trees and surround them by good pollination bees in bee housing. Spectacles will help you see the fertilized leaves to harvest with your Grafter or Branch Cutter.\n\nCompleting the quests will require scanned trees, but you can progress on breeding while waiting for your GT Scanner or Treealyzer to be made."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeOak","UID0":"forestry.treeOak","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeDarkOak","UID0":"forestry.treeDarkOak","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcaciaVanilla","UID0":"forestry.treeAcaciaVanilla","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBirch","UID0":"forestry.treeBirch","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeSpruce","UID0":"forestry.treeSpruce","Slot":0}]}},"Damage":0,"OreDict":""},{"id":"Forestry:sapling","Count":4,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeJungle","UID0":"forestry.treeJungle","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2123,"preRequisites":[2084],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:sapling","Count":1,"Damage":4,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Unlocking tree breeding lines","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"No Description"}},"tasks":{},"rewards":{}},{"questID":2124,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLime","UID0":"forestry.treeLime","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Silver Lime","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silver Lime, a basic tree breed. Breed it by mating Silver Birch with Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLime","UID0":"forestry.treeLime","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestryI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2125,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeTeak","UID0":"forestry.treeTeak","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Teak","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Teak is the first step to Cocobolo, a true giant. Breed it by mating Jungle and Dark Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeTeak","UID0":"forestry.treeTeak","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2126,"preRequisites":[2125,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBalsa","UID0":"forestry.treeBalsa","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarge","UID0":"forestry.heightLarge","Slot":2},{"UID1":"forestry.saplingsHigh","UID0":"forestry.saplingsHigh","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Balsa","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Balsa has some pretty wood. Breed it by mating Teak and Acacia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeBalsa","UID0":"forestry.treeBalsa","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2127,"preRequisites":[2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.beech","UID0":"extratrees.species.beech","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightAverage","UID0":"forestry.heightAverage","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.beechnut","UID0":"extratrees.fruit.beechnut","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Common Beech","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Common Beech gives you access to the Faster maturity attribute. Breed them from Silver Birch and Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.beech","UID0":"extratrees.species.beech","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2128,"preRequisites":[2124,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCherry","UID0":"forestry.treeCherry","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmaller","UID0":"forestry.heightSmaller","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"forestry.fruitCherry","UID0":"forestry.fruitCherry","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hill Cherry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hill Cherry is a key tree for breeding purposes. Breed it by mating Silver Lime with Apple Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCherry","UID0":"forestry.treeCherry","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2129,"preRequisites":[2123,2128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeWalnut","UID0":"forestry.treeWalnut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightAverage","UID0":"forestry.heightAverage","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitWalnut","UID0":"forestry.fruitWalnut","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLower","UID0":"forestry.sappinessLower","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i2d","UID0":"forestry.i2d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Common Walnut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Common Walnut is a mediocre choice for a seedoil tree, only producing 54L per nut. Breed it by mating Hill Cherry with Silver Lime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeWalnut","UID0":"forestry.treeWalnut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2130,"preRequisites":[2129,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.butternut","UID0":"extratrees.species.butternut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmaller","UID0":"forestry.heightSmaller","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.butternut","UID0":"extratrees.fruit.butternut","Slot":4},{"UID1":"forestry.yieldLow","UID0":"forestry.yieldLow","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i2d","UID0":"forestry.i2d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Butternut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Butternut tree is a pretty good seedoil producer at 180L per nut. Breed it by mating Hill Cherry with Common Walnut.\n\nIt's attributes aren't that great, but with a little crossbreeding you can get that 2x2 giant with fast production. For optimal fruit production speed, try breeding Fruity bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.butternut","UID0":"extratrees.species.butternut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2131,"preRequisites":[2123,2128],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitLemon","UID0":"forestry.fruitLemon","Slot":4},{"UID1":"forestry.yieldLower","UID0":"forestry.yieldLower","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lemon","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lemon trees are great for maximum fruit juice production. Breed it by mating Hill Cherry with Silver Lime."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeLemon","UID0":"forestry.treeLemon","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2132,"preRequisites":[2131,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treePlum","UID0":"forestry.treePlum","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmallest","UID0":"forestry.heightSmallest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitPlum","UID0":"forestry.fruitPlum","Slot":4},{"UID1":"forestry.yieldHigh","UID0":"forestry.yieldHigh","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessAverage","UID0":"forestry.sappinessAverage","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Plum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Plum is a great multipurpose tree. It has optimal yield and its fruit produces mulch with the highest chance. It also has decent sappiness for biomass production. Breed it by mating Hill Cherry with Lemon."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treePlum","UID0":"forestry.treePlum","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2133,"preRequisites":[2126,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcacia","UID0":"forestry.treeAcacia","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeDesert","UID0":"forestry.plantTypeDesert","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Desert Acacia","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Desert Acacia. Another step on the road. Breed it by mating Teak with Balsa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeAcacia","UID0":"forestry.treeAcacia","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2134,"preRequisites":[2133,2123],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCocobolo","UID0":"forestry.treeCocobolo","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLargest","UID0":"forestry.heightLargest","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationAverage","UID0":"forestry.maturationAverage","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Cocobolo","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Cocobolo is a nice tall tree, perfect for mating into your Plum or Butternut to maximize their yield. Breed it by mating Desert Acacia with Dark Oak."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeCocobolo","UID0":"forestry.treeCocobolo","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2135,"preRequisites":[2123,2133],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"forestry.treeMahoe","UID0":"forestry.treeMahoe","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightSmall","UID0":"forestry.heightSmall","Slot":2},{"UID1":"forestry.saplingsLower","UID0":"forestry.saplingsLower","Slot":3},{"UID1":"forestry.fruitNone","UID0":"forestry.fruitNone","Slot":4},{"UID1":"forestry.yieldLowest","UID0":"forestry.yieldLowest","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessHigh","UID0":"forestry.sappinessHigh","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationSlowest","UID0":"forestry.maturationSlowest","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blue Mahoe","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Blue Mahoe has the most sappiness of any tree. It will vastly increase the efficiency of your biomass production with Fermenters. Breed it by mating Balsa with Desert Acacia."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.treeMahoe","UID0":"forestry.treeMahoe","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":30,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2136,"preRequisites":[1296],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockEnergyAcceptor","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Energy Acceptor","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Energy Acceptor is an alternative place to inject energy into your AE2 network. Generally, you want to inject energy at the controller because if it cannot see an EA within the first 8 parts, the network will not form anyways.\n\nYou can form a \"dumb\" network with just an EA, but for real capability, you'll want a Controller."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockEnergyAcceptor","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":2,"Damage":7,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2137,"preRequisites":[183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"appliedenergistics2:tile.BlockController","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"ME Controller","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The heart of your ME network. Inject energy into here as well to power your network."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"appliedenergistics2:tile.BlockController","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"appliedenergistics2:item.ItemMultiMaterial","Count":8,"Damage":8,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":37,"OreDict":""}]}]},{"questID":2138,"preRequisites":[97],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32402,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Making Sense of Spaghetti","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nobody likes an untidy base. You can craft a spray can and fill it with Chemical Dye made from sulfuric acid to color coordinate your carpets, cables, wires, and machines."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32402,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32432,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32452,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32438,"OreDict":""}]}]},{"questID":2139,"preRequisites":[2112],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":53}},"Damage":53,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Oink!","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"While the Pig backpack is useless on its own, it can be turned into a pretty powerful tool with the right...motivation."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"adventurebackpack:adventureBackpack","Count":1,"tag":{"wearableData":{"type":53}},"Damage":53,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"harvestcraft:bbqpulledporkItem","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2140,"preRequisites":[495],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Diamond","MaxDamage":128000,"SecondaryMaterial":"Wood","Damage":24770}},"Damage":12,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lA Fool Fit for a King","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Only the craziest fool would use diamonds to make a tool! Or is it crazy like a fox?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metatool.01","Count":1,"tag":{"GT.ToolStats":{"PrimaryMaterial":"Diamond","MaxDamage":128000,"SecondaryMaterial":"Wood"}},"Damage":12,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.02","Count":1,"Damage":29500,"OreDict":""}]}]},{"questID":2141,"preRequisites":[1867],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30686,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lWelcome to the Church of Benzene","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you made it to MV using steam, you're probably wondering how to survive going further. One option is to switch to Light Fuel, discussed in LV. Another option is to use Benzene. Benzene is made from Wood Tar. There are a couple of pathways for that. Both start with logs from trees. \n\nOne path is to use Coke ovens or Advanced Coke Ovens to make charcoal, and fluid-extract Wood Tar from it (use LV fluid extractors for maximum EU efficiency). Then distill the Wood Tar to make Benzene. This method produces no pollution.\n\nThe second path is to use the Pyrolyze Oven multiblock and Nitrogen gas to extract Wood Tar and Charcoal. Fluid Extract the Charcoal for addtional Wood Tar. Then proceed as above. This method will create pollution from the Pyrolyze, but will provide more Benzene per log.\n\nExcess wood tar can also be turned into Toluene, a key ingredient for explosives that you will need later on."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":30686,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2142,"preRequisites":[91,576],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"BuildCraft|Factory:autoWorkbenchBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lAutomated Crafting","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Auto Workbench is a simple automated crafting system. You select the recipe in the grid, and place components in the inventory. They will slowly be converted into the crafted item. While not fast, it does support automation - only items acceptable to the recipe is allowed in the inventory."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"BuildCraft|Factory:autoWorkbenchBlock","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":4,"OreDict":""}]}]},{"questID":2143,"preRequisites":[88],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"BiblioCraft:BiblioLamp","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§5§lChoices, choices","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Need a map on fuel choices? Well, we don't have that but we have suggestions. You can run Steam from burning up to EV, but beyond MV it gets pretty painful. \n\nIn LV you can start refining oil for either Light Fuel or Refinery Gas, which will be good for you to EV. \n\nOnce you hit MV you can switch from Steam to renewable Benzene from your logs if you decided to hold out. Other renewable alternatives are Fishoil or Seedoil based Biodiesel. Seedoil can be sourced from Pam's peanuts, IC2 Rape crop or Forestry tree nuts.\n\nAlso at MV you can upgrade your Light Fuel with Heavy Fuel to get Diesel.\n\nWhen you reach HV turn Diesel or Biodiesel into Cetane Boosted Diesel.\n\nAfter reaching the Moon, Wind and Water Kinetics are available.\n\nEV introduces the Large Gas Turbine and Large Combustion Engine, along with granting access to Nukes.\n\nFor low usage operations, or dedicated players willing to setup automation systems, you can begin using Solar Panels at MV."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2144,"preRequisites":[940],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12635,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lDon't put a finger in that socket","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want to pass multiple amps through your cleanroom walls, use a one-way Diode. Also handy to limit power when branching off a main power line to trunk lines that normally will not use as many amps, but you want to prevent catching fire while filling buffers."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12635,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":4,"Damage":2037,"OreDict":""}]}]},{"questID":2145,"preRequisites":[0],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:ArcaneDoorKey","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§1§lE_TOO_MANY_KEYS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"ERROR: Too many keys to fit a 104 key keyboard. You will need to redefine your keymap so that you can use things effectively. Here is a list of keys you should deconflict.\n\nAdventure Backpacks\nB - Inventory\nV - Toggle\nBackpacks\nG - Open Backpack (sneak-G to wear/remove backpack and set filtering)\nDark Steel Armor\nApostrophe - Night Vision\nGameplay\nR - Draw Weapons\nZ - Special (cycle arrows on M&B quiver)\nNONE - Drop Item (Who wants to throw a backpack into lava?)\nIC2\nC - Side Invetory Key\nJourneymap\nHome - Make Waypoint\nJ - Open Map\n= - Zoom In (works on minimap too)\n- - Zoom Out (same)\nMisc\nH - Toggle Hover Harness\nF - Toggle Wand Focus\nTC Node Tracker\nI - Node List (must be scanned, goggles allow compass)\nX - Zoom key (handy for checking on distant ores on a mountain)\nTinker's Construct\nDelete - Traveller's Belt Swap Hotbar"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2146,"preRequisites":[241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"BRRRRAAAAAAAIIIIIIINNNNNNNSSSSS","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Automagy is a little subtle about what the \"smort\" mage needs to do next. Make some crystalline brains and scan them to unlock the next stage. You'll want to use the zombie brains you've been collecting from dangerous Furious zombies found at Eerie nodes."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:ItemZombieBrain","Count":6,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":3,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":4,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":5,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Automagy:crystalBrain","Count":1,"Damage":0,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":1,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":2,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":3,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":4,"OreDict":""},{"id":"Automagy:crystalBrain","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2147,"preRequisites":[2146],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Automagy:avaricePearl","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Gimme gimme gimme","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Avarice Pearl is the next object Automagy requires you to interact with in order to unlock the next section. Make an Avarice Pearl , throw some stuff on the ground, and throw Avarice Pearls at them by right-clicking quickly over and over to get a Shathered (ha ha) Pearl to unlock a few more research items."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Automagy:avaricePearl","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"Automagy:horizontal","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2148,"preRequisites":[1677],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§k§n§r§b§lEngraved Lapotrons","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"IV tier batteries require a large investment. First, you will need to laser engrave 8 Lapotrons. Make sure to do this in a cleanroom.\n\n§4They're also used for some advanced AE2 chips."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemBatLamaCrystal","Count":8,"Damage":26,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":32714,"OreDict":""}]}]},{"questID":2149,"preRequisites":[2148],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32597,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lLapotronic Energy Orb","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Lapotronic Energy Orb is the IV tier battery item. It can store 100M EU. Don't charge it until you have verified it for the quest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.03","Count":1,"Damage":32103,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":4,"Damage":32051,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":24,"Damage":32714,"OreDict":""},{"id":"gregtech:gt.metaitem.03","Count":2,"Damage":32055,"OreDict":""},{"id":"gregtech:gt.metaitem.02","Count":16,"Damage":19085,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":8,"Damage":17085,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32597,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.03","Count":16,"Damage":32103,"OreDict":""}]}]},{"questID":2150,"preRequisites":[2149],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"AFSU:AFSU","Count":1,"tag":{"energy":0},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§lOne BILLION EU","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you want a stationary battery, you can make an AFSU capable of storing up to 1 billion EU and charging items. You can pick it up with a wrench, but you'll lose a percentage of the stored EU. Make sure you right-click, not left-click. Left-clicking will cause it to lose all stored EU.\n\nAs an alternative, if you can afford them, try the GT++ Energy Buffers. They are more expensive and cannot charge items, but store more, don't lose any EU, and can be configured from 1-16A. See the GT++ tab for details."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"AFSU:ALC","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"AFSU:AFSU","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemBatLamaCrystal","Count":4,"Damage":26,"OreDict":""}]}]},{"questID":2151,"preRequisites":[29],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8538,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Can't spell Lignite without Ignite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Truly the fuel of the gods!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"minecraft:coal","Count":64,"Damage":0,"OreDict":""},{"id":"IC2:itemDust","Count":64,"Damage":2,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":64,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.blockores","Count":64,"Damage":538,"OreDict":""}]}]},{"questID":2152,"preRequisites":[29],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:coal","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":6000,"globalShare":1,"questLogic":"AND","name":"Who would use this garbage??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Truly the fuel of idiots!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":8538,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":2538,"OreDict":""},{"id":"dreamcraft:item.CoinAdventure","Count":65,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"minecraft:coal_ore","Count":64,"Damage":0,"OreDict":""}]}]},{"questID":2153,"preRequisites":[2155,2154,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fruit","UID0":"extrabees.species.fruit","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sugar","UID0":"extrabees.flower.sugar","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.bonemeal_fruit","UID0":"extrabees.effect.bonemeal_fruit","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fruity bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Fruity bees will make your Forestry trees ripen their fruit faster. Breed them using a Sweetened and Thriving."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fruit","UID0":"extrabees.species.fruit"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2154,"preRequisites":[2156,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.sweet","UID0":"extrabees.species.sweet","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sugar","UID0":"extrabees.flower.sugar","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sweetened","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sweetened bees can make you sugar. Breed them from Valiant and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.sweet","UID0":"extrabees.species.sweet"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2155,"preRequisites":[2157,2158,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.thriving","UID0":"extrabees.species.thriving","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.leaves","UID0":"extrabees.flower.leaves","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thriving","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thriving bees don't have an effect, but are a necessary step for Fruity. Breed them from Growing and Unweary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.thriving","UID0":"extrabees.species.thriving"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2156,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDiligent","UID0":"forestry.speciesDiligent","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Diligent","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Diligent bees are a core breeding stock bee. Breed them from Common and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDiligent","UID0":"forestry.speciesDiligent"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2157,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesUnweary","UID0":"forestry.speciesUnweary","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Unweary","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Unweary bees are key to a couple of breeding lines. Breed them with Diligent and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesUnweary","UID0":"forestry.speciesUnweary"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2158,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.growing","UID0":"extrabees.species.growing","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.leaves","UID0":"extrabees.flower.leaves","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Growing","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Growing bees are the start of the Fruity specific breeding tree. Breed them from Forest and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.growing","UID0":"extrabees.species.growing"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2159,"preRequisites":[405,1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:nether_star","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Bees Template - change to OR when copying, back to AND to hide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Get the princess bee and reward bag in NEI first. \nDo Advanced and set the icon to the bee.\nDo Task, and select the stone, and replace it with the princess.\nBefore closing, select the ... next to the bee name and press Raw NBT\nGo into Tag, Genome, Chromosomes. The first one is the name and must stay. \nGo inside there and delete the first entry, keep both of the species so players\nmust have purebreeds.\nDelete the rest of the chromosomes.\nDelete the rest of the entries for Genome.\nRemove the Infinity unlock requirement."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"minecraft:stone","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2160,"preRequisites":[36],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"CarpentersBlocks:blockCarpentersBlock","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Carpenter's Blocks","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Yet another custom block system! Carpenter's blocks are crafted blank and placed in-world, and then plain block textures applied to them. The blocks must not be Tile Entities, so Botany blocks don't work correctly with them, but GT Stones like Red Granite, and any colored clay or vanilla glass block will work. Some Chisel glass types will work, and Ztones blocks and Tinted Glass also work.\n\nThe Garage Door requires a block at the top to hang \"down\" from, but can pretty much be any length. A redstone signal on any block next to the Garage Door blocks will open or close the door. The open/close will propagate across multiple vertical doors, so you can setup non-square doors. Sneaking and right-clicking with an empty hand will change the door's polarity.\n\nThe pressure plates are player-only activation, making them great for doors into your base.\n\nThe hatches must be clicked on the side of a block to place. They can be handy for protecting you from crucible...byproducts.\n \nThere is a lot more block shapes possible, check NEI for \"Carpenter's\" to see the options.\n\nThe Chisel allows you to chisel blocks while attached to a Carpenter's block.\n\nThe Hammer allows various functions.\n\nHammer on door - changes door shape type\nSneak Hammer on door - Changes from iron to wooden behavior\nSneak Hammer on lever - Changes polarity (which direction is on/off)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersBlock","Count":16,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"CarpentersBlocks:blockCarpentersButton","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersLever","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersPressurePlate","Count":2,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:blockCarpentersGarageDoor","Count":10,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"CarpentersBlocks:itemCarpentersHammer","Count":1,"Damage":0,"OreDict":""},{"id":"CarpentersBlocks:itemCarpentersChisel","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2161,"preRequisites":[70],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"chisel:warningSign","Count":1,"Damage":7,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§3§lSafety first","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For those new to GregTech, here are some tips and warnings about electricity. \n\nMachines don't like being out in the rain, and will start fires nearby. Fires next to a machine have a random chance of an explosion. Also, sending too high voltage to a machine will cause a near-instant explosion.\n\nSending too high a voltage or too many amps down a cable will cause the cable to burn up and start fires, which may then cause machine explosions. Make sure the number of amps provided by generators and buffers to a wire does not exceed the amps it is capable of carrying.\n\nA generator that supplys 1A can possibly feed multiple machines, if their recipes require less than full voltage. For example, macerators doing ore only need 2 EU/t, so you could run 4 or 5 off of a single 1A generator, as long as the wires aren't too long. But be careful! Sometimes a recipe needs a lot more EU than you expect, like a macerator sand -> quartz dust recipe.\n\nA single block machine starved of EU will restart progress but not lose the recipe items. A multiblock machine will lose the items."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"miscutils:itemHatTinFoil","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2162,"preRequisites":[1788,2163],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCopper","UID0":"gregtech.bee.speciesCopper","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Copper","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Copper bee is the first of the metal lines. There are too many metal breeding lines to cover here, but by now you should be able to use NEI to figure out how to breed more bee types. Copper bees require a copper block beneath the bee housing. Breed them from Majestic and Clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCopper","UID0":"gregtech.bee.speciesCopper"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2163,"preRequisites":[1788,2164],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Clay bee","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To breed a Clay bee you must put a Clay block beneath the housing. Clay bees are the bedrock of many important bee lines. Breed them from Industrious and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesClay","UID0":"gregtech.bee.speciesClay"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2164,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesIndustrious","UID0":"forestry.speciesIndustrious","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Industrious","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Industrious bees produce pollen clusters, a key ingredient to the Alveary. They're also used for breeding many other bees. Their pollination speed is Fast, better than most bees. Breed them from Diligent and Unweary."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesIndustrious","UID0":"forestry.speciesIndustrious"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2165,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSlimeball","UID0":"gregtech.bee.speciesSlimeball","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Slimeball","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Slimeballs aren't super useful, but you can easily breed this bee to make them. It's a necessary step on the way to Oil though. You will need a Congealed Slime Block beneath the bee housing. Breed them from Clay and Marshy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSlimeball","UID0":"gregtech.bee.speciesSlimeball"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2166,"preRequisites":[1788,2165],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesStickyresin","UID0":"gregtech.bee.speciesStickyresin","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Stickyresin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Never having to use a treetap again? Sign me up! You'll need to put a Rubber Wood log beneath the bee housing. Breed them from Slimeball and Peat."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesStickyresin","UID0":"gregtech.bee.speciesStickyresin"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2167,"preRequisites":[1788,2168,2166],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOil","UID0":"gregtech.bee.speciesOil","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Oil","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, Black Gold. The Oil bee, with proper...encouragement...can take care of all your power and chemical needs for quite some time. An alternate bee, Distilled, provides slightly more oil but has a longer breeding chain. It is below the Magical bees. Breed them from Coal and Stickyresin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOil","UID0":"gregtech.bee.speciesOil"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2168,"preRequisites":[1788,2169],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCoal","UID0":"gregtech.bee.speciesCoal","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectCreeper","UID0":"forestry.effectCreeper","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Coal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah yes, Coal is King indeed. A great bee, giving you Coal to use to power your industry. Will require a Coal Block under your bee housing. This bee will also have the first really dangerous effect - it will apply a creeper explosion to you if you are not wearing your Apiarist suit. Breed them from Peat and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCoal","UID0":"gregtech.bee.speciesCoal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2169,"preRequisites":[1788,2170],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPeat","UID0":"gregtech.bee.speciesPeat","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Peat","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Peat from these bees can be used in furnaces and boilers. Free fuel is free, right? Breed them from Rural and Clay."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPeat","UID0":"gregtech.bee.speciesPeat"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2170,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesRural","UID0":"forestry.speciesRural","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rural","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rural bees like to live out in the country - you'll have to relocate to a Plains-type biome for these. Breed them from Diligent and Meadows."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesRural","UID0":"forestry.speciesRural"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2171,"preRequisites":[1788,2155],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.blooming","UID0":"extrabees.species.blooming","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.sapling","UID0":"extrabees.flower.sapling","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.bonemeal_sapling","UID0":"extrabees.effect.bonemeal_sapling","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blooming","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A Blooming bee will bonemeal nearby saplings. This can definitely help your log and sapling production rate. They also provide the fastest pollination. Breed them from Industrious and Thriving."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.blooming","UID0":"extrabees.species.blooming"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2172,"preRequisites":[1788,2173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesDiamond","UID0":"gregtech.bee.speciesDiamond","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Diamond","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah finally, a girl..I mean Queen's best friend. Will require a block of Diamond. Breed from Certus and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesDiamond","UID0":"gregtech.bee.speciesDiamond"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2173,"preRequisites":[1788,2174,2175],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCertus","UID0":"gregtech.bee.speciesCertus","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Certus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Certus Quartz bee. Hmm, does it have any breeding requirements? I can't see to remember. Maybe try a block of Certus Quartz? Breed it from Lapis and Hermitic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesCertus","UID0":"gregtech.bee.speciesCertus"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2174,"preRequisites":[1788,2176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLapis","UID0":"gregtech.bee.speciesLapis","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lapis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, a bee with some real promise. The Lapis bee will require a block of lapis to breed. Breed them from Demonic and Imperial."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLapis","UID0":"gregtech.bee.speciesLapis"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2175,"preRequisites":[1788,2179],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHermitic","UID0":"forestry.speciesHermitic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectRepulsion","UID0":"forestry.effectRepulsion","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hermitic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hermitic bees have the same no-entities requirement as Secluded, but they solve that problem themselves. They are so repugnant they repel mobs near them. Breed them from Secluded and Monastic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHermitic","UID0":"forestry.speciesHermitic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2176,"preRequisites":[1788,2177,2178],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDemonic","UID0":"forestry.speciesDemonic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Demonic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Better be careful with this one! It will set you on fire. In addition to combs, this bee can produce Glowstone Dust. It will require Nether to breed. Breed them from Sinister and Fiendish."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesDemonic","UID0":"forestry.speciesDemonic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2177,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSinister","UID0":"forestry.speciesSinister","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sinister","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sinister bees will hurt nearby mobs and players. Make sure to wear your suit. They will require breeding in the Nether. Breed them from Modest and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSinister","UID0":"forestry.speciesSinister"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2178,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFiendish","UID0":"forestry.speciesFiendish","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fiendish","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just like Sinister, Fiendish requires the Nether and a protective bee suit. Breed them from Sinister and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFiendish","UID0":"forestry.speciesFiendish"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2179,"preRequisites":[1788,2180,2185],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSecluded","UID0":"forestry.speciesSecluded","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Secluded","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Secluded bees are real loners. There must not be any entities within their territory for them to produce their combs. The Mellow combs can produce Nether quartz. Breed them from Monastic and Austere."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSecluded","UID0":"forestry.speciesSecluded"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2180,"preRequisites":[1788,2181],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAustere","UID0":"forestry.speciesAustere","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectCreeper","UID0":"forestry.effectCreeper","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Austere","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another bee that requires an attentive beekeeper. Without an Apiarist suit, this bee will inflict creeper explosions on you. Watch you. It will require a hot or hellish biome with Arid humidity. Breed them from Modest and Frugal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAustere","UID0":"forestry.speciesAustere"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2181,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFrugal","UID0":"forestry.speciesFrugal","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Frugal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Frugal bee doesn't have much direct use, but is part of many breeding lines. It will require a hot or hellish biome and arid humidity. Breed them from Modest and Sinister."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFrugal","UID0":"forestry.speciesFrugal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2182,"preRequisites":[1788,2183],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstonealloy","UID0":"gregtech.bee.speciesRedstonealloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Redstone Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Obviously, a block of Redstone Alloy is required, right? Breed them from Red Alloy and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstonealloy","UID0":"gregtech.bee.speciesRedstonealloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2183,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedalloy","UID0":"gregtech.bee.speciesRedalloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Red Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Red Alloy princess will require a block of Red Alloy. Breed them from Redstone and Copper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedalloy","UID0":"gregtech.bee.speciesRedalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2184,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstone","UID0":"gregtech.bee.speciesRedstone","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Redstone","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Redstone princess will require a block of Redstone. Breed them from Industrious and Demonic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRedstone","UID0":"gregtech.bee.speciesRedstone"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2185,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beeDroneGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMonastic","UID0":"forestry.speciesMonastic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Monastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Monastic bees aren't found in hives or bred. Instead you will need to find a Beekeeper villager and trade with them for it. There are various ways to make more villagers, so do some research. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beeDroneGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMonastic","UID0":"forestry.speciesMonastic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2186,"preRequisites":[1788,2188,2187],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesVibrantalloy","UID0":"gregtech.bee.speciesVibrantalloy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vibrant Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally. It was a long, hazardous road, but you can now get Vibrant Alloy directly from a bee. Great job. You'll need a Block of Vibrant Alloy. Breed them from Energetic Alloy and Phantasmal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesVibrantalloy","UID0":"gregtech.bee.speciesVibrantalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2187,"preRequisites":[1788,2182],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":10,"Health":10,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergeticalloy","UID0":"gregtech.bee.speciesEnergeticalloy","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShortest","UID0":"forestry.lifespanShortest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Energetic Alloy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Energetic Alloy will require a block of Energetic Alloy, of course. Breed them from Redstone Alloy and Demonic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergeticalloy","UID0":"gregtech.bee.speciesEnergeticalloy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2188,"preRequisites":[1788,2189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesPhantasmal","UID0":"forestry.speciesPhantasmal","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectResurrection","UID0":"forestry.effectResurrection","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Phantasmal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Phantasmal bees are similar to Spectral, except they cause the other drops to reanimate, like ghasts, spiders, creepers, endermen, or even Ender Dragons if their drops are lying around. Breed them from Spectral and Ender."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesPhantasmal","UID0":"forestry.speciesPhantasmal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2189,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSpectral","UID0":"forestry.speciesSpectral","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectReanimation","UID0":"forestry.effectReanimation","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spectral","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Spectral bees will require Ender bees to breed. This will test the ability of even the toughest beekeeper - don't forget your apiarist suit. To work in a bee housing, there must be a Dragon Egg nearby. Don't drop any bones, blazerods or rotten meat! This bee will cause those to come back to life! Perhaps you can find a use for this ability. Breed them from Ender and Hermitic. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesSpectral","UID0":"forestry.speciesSpectral"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2190,"preRequisites":[1788,2184,2174],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFluix","UID0":"gregtech.bee.speciesFluix","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fluix","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you go deep into AE2, you'll want cheap sources of Fluix from these bees. Breeding will require a block of Fluix. Breed them from Lapis and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFluix","UID0":"gregtech.bee.speciesFluix"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2191,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRuby","UID0":"gregtech.bee.speciesRuby","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ruby","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For early Chrome, a Ruby bee is a great source. It will require a block of Ruby. Breed them from Redstone and Diamond."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesRuby","UID0":"gregtech.bee.speciesRuby"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2192,"preRequisites":[1788,2163],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTin","UID0":"gregtech.bee.speciesTin","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Tin","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tin is a great early bee to get, saving your time looking for Cassiterite Sand. You'll need a Tin block. Breed them from Clay and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTin","UID0":"gregtech.bee.speciesTin"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2193,"preRequisites":[1788,2162,2192],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesIron","UID0":"gregtech.bee.speciesIron","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Iron","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Iron bees as a resource isn't that big a deal, so much stuff makes iron anyways, but they are a key breeding species. They will need an Iron block. Breed them from Copper and Tin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesIron","UID0":"gregtech.bee.speciesIron"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2194,"preRequisites":[1788,2162,2193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesNickel","UID0":"gregtech.bee.speciesNickel","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Nickel","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nickel bees provide a pretty useful resource. You'll need a block of Nickel. Breed them from Iron and Copper."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesNickel","UID0":"gregtech.bee.speciesNickel"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2195,"preRequisites":[1788,2193],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesZinc","UID0":"gregtech.bee.speciesZinc","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Zinc","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Zinc makes great early game item pipes when mixed into brass. Also, these bees have a small change of producing Gallium combs, which is very useful for players needing to make circuits or SMD devices. These bees will require a Zinc block. Breed them from Tin and Iron."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesZinc","UID0":"gregtech.bee.speciesZinc"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2196,"preRequisites":[1788,2168,2162],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLead","UID0":"gregtech.bee.speciesLead","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Lead","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lead will be necessary in large quantities once you start making nuclear reactors. You'll need a block of Lead for these. Breed them from Copper and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesLead","UID0":"gregtech.bee.speciesLead"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2197,"preRequisites":[1788,2196],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSilver","UID0":"gregtech.bee.speciesSilver","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Silver","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Silver is key metal at HV and up with the amount of Electrum you will need. Requires a block of Silver. Breed them from Lead and Tin."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSilver","UID0":"gregtech.bee.speciesSilver"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2198,"preRequisites":[1788,2194,2195],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAluminium","UID0":"gregtech.bee.speciesAluminium","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aluminium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aluminium isn't necessary until MV, but when you want it, you'll want lots. Requires block of Aluminium. Breed them from Nickel and Zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAluminium","UID0":"gregtech.bee.speciesAluminium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2199,"preRequisites":[1788,2173],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOlivine","UID0":"gregtech.bee.speciesOlivine","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Olivine","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"An otherwise mostly useless bee, Olivine is required for breeding better bees. I guess if you need Magnesium? Breed them from Ender and Certus."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesOlivine","UID0":"gregtech.bee.speciesOlivine"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2200,"preRequisites":[1788,2199,2172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEmerald","UID0":"gregtech.bee.speciesEmerald","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Emerald","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah yes, a very useful bee. Emeralds are used for many upgrades, and trading with villagers. Will require a block of Emerald. Breed them from Olivine and Diamond."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEmerald","UID0":"gregtech.bee.speciesEmerald"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2201,"preRequisites":[1788,2184],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTitanium","UID0":"gregtech.bee.speciesTitanium","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Titanium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Titanium from bees will make getting those LCRs and distillation towers a breeze. Hey, I rhymed! You'll need a block of Titanium for this bee. Breed them from Aluminium and Redstone."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesTitanium","UID0":"gregtech.bee.speciesTitanium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2202,"preRequisites":[1788,2201],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesChrome","UID0":"gregtech.bee.speciesChrome","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Chrome","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chrome, a necessary ingredient for Stainless Steel. Better to get it directly instead of having to deal with Rubies or Garnets. This bee will require a block of Chrome to breed. Breed them from Titanium and Ruby."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesChrome","UID0":"gregtech.bee.speciesChrome"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2203,"preRequisites":[1788,2202,2172],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlatinum","UID0":"gregtech.bee.speciesPlatinum","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringFast","UID0":"forestry.floweringFast","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Platinum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Platinum. Precious metal for the ages. You'll need a block of Platinum obviously. Breed them from Diamond and Chrome."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlatinum","UID0":"gregtech.bee.speciesPlatinum"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2204,"preRequisites":[1788,2206],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesUranium","UID0":"gregtech.bee.speciesUranium","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Uranium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"All that hatred had a purpose - to create this bee, capable of producing enormous power. As before, keep away from everything. This bee will require a block of Uranium. Breed them from Avenging and Platinum."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesUranium","UID0":"gregtech.bee.speciesUranium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2205,"preRequisites":[1788,2204],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlutonium","UID0":"gregtech.bee.speciesPlutonium","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Plutonium","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A metal that represents the epitome of technology. Never existing in the universe before man. Destroying everything around it. This bee will require a block of Plutonium. Breed them from Uranium and Emerald."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesPlutonium","UID0":"gregtech.bee.speciesPlutonium"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2206,"preRequisites":[1788,2208,2207],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAvenging","UID0":"forestry.speciesAvenging","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Avenging","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hatred distilled into its most violent form. Keep away from everything. Breed them from Vengeful and Vindictive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAvenging","UID0":"forestry.speciesAvenging"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2207,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVengeful","UID0":"forestry.speciesVengeful","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vengeful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hatred. Of all things, living and solid. Keep bee housing away from anything valuable, or even not valuable. Breed them from Monastic and Vindictive."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVengeful","UID0":"forestry.speciesVengeful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2208,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVindictive","UID0":"forestry.speciesVindictive","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"forestry.effectRadioactive","UID0":"forestry.effectRadioactive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vindictive","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Beware. These bees not only hate everything, they even hate blocks. Put their bee housing far away from everything. Breed them from Demonic and Monastic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesVindictive","UID0":"forestry.speciesVindictive"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2209,"preRequisites":[500],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Moron's Guide to Breeding Better Bees","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First off, don't be scared by the massive amounts of bees you see here once you unlock the breeding trees. There's even more that aren't included and you'll need NEI to find!\n\nHa ha, just kidding - don't panic! Once you unlock the bee breeding lines, look around and pick and choose which bees really interest you. The way the breeding is done is mostly left to right, and top down. Some of the lines at the bottom might look simple, but they will require bees further up to complete first. Many of the basic bees have multiple breeding options, only one is shown here.\n\nBees have two sets of traits, one active that has effects on how the bee lives, and one Inactive but can be used for breeding. When getting newly bred princesses and drones, check both sets in case you got the target bee. You can breed the bees with inactive traits to try and make them active in later crosses. You can't see the passive traits using a Field Kit, you'll need a Beealyzer. For lots of bees, you can scan them first using a GT scanner, but you'll still need a Beealyzer to see passive traits.\n\nWhen breeding bees, a good idea is to settle upon a master template bee. A bee that has little or no crossbreeding potential, but has all the traits you prefer - short life, nocturnal, cavedwelling, rain tolerant, humidity, temperature, high fertility, etc. Once you have that bee, breed a bunch of pure princesses with those traits as both active and inactive. These will be your breeding stock.\n\nWhen you are trying for a new bee, what you are wanting is a drone - this way you can use your \"breeding stock\" princess for easy breeding, but the drone to get the new species without the annoying effects or limitations. Poor crossed princesses can be returned to normal by crossing with breeding stock drones, or just thrown out if they now have annoying restrictions. Make sure you keep the trait and species you want, and slowly merge the good traits from your breeding stock. You don't have to do this part in an Apiary, you can use a Bee House to swap around traits. Ignoble bees are good for this, since they're mostly disposable - they have a chance to die after 100 breeding cycles - frames can let them live longer. Once you solidify your species, create a pool of drones. You can use those to convert pristine princesses to the new species. Pristine princesses will not die. Rocky bees are a great source - all their princesses are always pristine.\n\nOnce you get a new species, it will replace all of one of the two sets of traits of the bee. For example when you get a Cultivated, either the Active or Inactive column will have all the default Cultivated traits. Mix it a few times and you'll eventually get purebred versions. Just watch out that you don't lose a key trait, like Fast Worker for Cultivated! All the quests will require purebred species. \n\nGenerally all traits can be bred into any bee species, including effects or flower preference. Species generally require their preferred biome to produce their special drops.\n\nAdvanced frames can provide useful boosts to mutation chances, or to lifespan reduction for faster breeding cycles. However excessive multipliers will increase genetic decay, giving a chance for that pristine princess to become ignoble!\n\nIt looks complex, because it is! But it also a lot of dangerous and useful fun!"}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2210,"preRequisites":[189],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:milk_bucket","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lDealing with Radiation","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nuclear materials cause two types of radiation effects. One is a large number of standard debuffs. These can be removed the normal ways, with milk or terra wart or other methods that imitate them. \n\nThe other effect is a special Radiation unique debuff. This gets applied the longer you hold onto the radioactive item. Severely radioactive items can apply minutes of this deadly debuff. Regeneration might delay the inevitable death, but most regneration sources aren't fast enough or long enough to keep you alive. You can try using an Amulet of Remedium to get rid of the effects. You should have one from your Moon trip, if not you'll have to dive into Thaumcraft to make one."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2211,"preRequisites":[2209],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"minecraft:book","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Basic Bee Stats","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"There are a couple of basic bees that have good stats you will want to breed into your breeding stock.\n\nCave Dwelling - Rocky - This lets you put the bee housing underneath or inside. Handy for putting a chest on top for products.\n\nNocturnal - Rocky - This keeps your bees working all night long, and in the dark.\n\nRain Tolerant - Water - Keep producing even when it is raining.\n\nHigh Fertility - Wintry - For breeding purposes, you want the maximum number of drones produced."}},"tasks":[{"index":0,"taskID":"bq_standard:checkbox"}],"rewards":{}},{"questID":2212,"preRequisites":[1788,2218,2217],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesArcane","UID0":"magicbees.speciesArcane","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Arcane","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanting drops from Arcane bees are used to create Aromatic Lumps for use in the Swarmer. It has a higher chance of success than normal Royal Jelly. These bees are the other bedrock of the Magic Bees branch. Breed them from Esoteric and Mysterious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesArcane","UID0":"magicbees.speciesArcane"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2213,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEldritch","UID0":"magicbees.speciesEldritch","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Eldritch","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Eldritch are the start of the magic bee family. Breed them from Mystical and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEldritch","UID0":"magicbees.speciesEldritch"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2214,"preRequisites":[1788,2215,2216],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSupernatural","UID0":"magicbees.speciesSupernatural","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Supernatural","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What have those two brothers gotten into now? The Supernatural bee is a keystone of the Magical branch of bees. Check NEI for details on the best lunar phase for breeding. Breed it from Charmed and Enchanted."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSupernatural","UID0":"magicbees.speciesSupernatural"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2215,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEnchanted","UID0":"magicbees.speciesEnchanted","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Enchanted","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Enchanted is the next step in the progression. Breed them from Charmed and Eldritch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEnchanted","UID0":"magicbees.speciesEnchanted"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2216,"preRequisites":[1788,2213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesCharmed","UID0":"magicbees.speciesCharmed","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Charmed","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The power of three! Charmed bees are your next step up the magic bee tree. Breed them from Eldritch and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesCharmed","UID0":"magicbees.speciesCharmed"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2217,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesMysterious","UID0":"magicbees.speciesMysterious","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Mysterious","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Just your mysterious stranger... Breed them from Eldritch and Esoteric."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesMysterious","UID0":"magicbees.speciesMysterious"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2218,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEsoteric","UID0":"magicbees.speciesEsoteric","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Esoteric","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Another basic Magic branch bee. Breed them from Eldritch and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEsoteric","UID0":"magicbees.speciesEsoteric"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2219,"preRequisites":[1788,2212,2214],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEthereal","UID0":"magicbees.speciesEthereal","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ethereal","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ethereal bees are critical for all the magical aspect bees. Breed them from Arcane and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEthereal","UID0":"magicbees.speciesEthereal"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2220,"preRequisites":[1788,2227],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCWater","UID0":"magicbees.speciesTCWater","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"magicbees.effectCurative","UID0":"magicbees.effectCurative","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aqua","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aqua requires a Water Crystal Cluster. It will produce Water infused dust. Staying nearby will clear potion effects, like drinking a bucket of milk. Might be useful for the clever industrial engineer! Breed them from two Watery."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCWater","UID0":"magicbees.speciesTCWater"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2221,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesFirey","UID0":"magicbees.speciesFirey","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersCacti","UID0":"forestry.flowersCacti","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Firey","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Firey bees must be bred on top of Lava. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesFirey","UID0":"magicbees.speciesFirey"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2222,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEarthen","UID0":"magicbees.speciesEarthen","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Earthen","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Earthen bees must be bred on top of Bricks. Breed them from Supernatural and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesEarthen","UID0":"magicbees.speciesEarthen"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2223,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWindy","UID0":"magicbees.speciesWindy","Slot":0},{"UID1":"forestry.speedFaster","UID0":"forestry.speedFaster","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Windy","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Windy bees must be bred on top of Oak leaves. Breed them using Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWindy","UID0":"magicbees.speciesWindy"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2224,"preRequisites":[1788,2223],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCAir","UID0":"magicbees.speciesTCAir","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringMaximum","UID0":"forestry.floweringMaximum","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"magicbees.effectMoveSpeed","UID0":"magicbees.effectMoveSpeed","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For Aer bees to appear, you must put an Air Crystal Cluster beneath the bee housing. They will produce Aer infused dust for you. Being nearby will grant a Swiftness buff. Breed them from two Windy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCAir","UID0":"magicbees.speciesTCAir"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2225,"preRequisites":[1788,2222],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEarth","UID0":"magicbees.speciesTCEarth","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceDown1","UID0":"forestry.toleranceDown1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringFastest","UID0":"forestry.floweringFastest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectDigSpeed","UID0":"magicbees.effectDigSpeed","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Solum","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Solum bees require Earth Crystal Clusters. They can produce Earth infused dust. It will also give you a mining speed boost. Breed them from two Earthen."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEarth","UID0":"magicbees.speciesTCEarth"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2226,"preRequisites":[1788,2221],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCFire","UID0":"magicbees.speciesTCFire","Slot":0},{"UID1":"forestry.speedFaster","UID0":"forestry.speedFaster","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceDown3","UID0":"forestry.toleranceDown3","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ignis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ignis bees require Fire Crystal Clusters beneath the bee housing. They will produce Fire infused dust. Watch out! They will set nearby entities on fire! Breed them from two Firey."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCFire","UID0":"magicbees.speciesTCFire"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2227,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWatery","UID0":"magicbees.speciesWatery","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersSnow","UID0":"forestry.flowersSnow","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Watery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watery bees must be bred over Water. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWatery","UID0":"magicbees.speciesWatery"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2228,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAware","UID0":"magicbees.speciesAware","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Aware","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Not much to say about this bee. Breed them from Ethereal and Attuned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAware","UID0":"magicbees.speciesAware"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2229,"preRequisites":[1788,2228],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":35,"Health":35,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpirit","UID0":"magicbees.speciesSpirit","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShortened","UID0":"forestry.lifespanShortened","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spirit","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Spirit bee is the first bee to give you Soul Combs, necessary for Soulful Wax, used in many magical frames. Breed them from Ethereal and Aware."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpirit","UID0":"magicbees.speciesSpirit"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2230,"preRequisites":[1788,2229],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSoul","UID0":"magicbees.speciesSoul","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Soul","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Soul bee has the highest chance of making Soul Combs, 20 percent. Breed them from Aware and Spirit."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSoul","UID0":"magicbees.speciesSoul","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2231,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCChaos","UID0":"magicbees.speciesTCChaos","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Chaotic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Chaotic bees require an Entropic Crystal Cluster. They will produce Entropy Infused Dust. Breed them from Ethereal and Supernatural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCChaos","UID0":"magicbees.speciesTCChaos"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2232,"preRequisites":[1788,2219,2212],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCOrder","UID0":"magicbees.speciesTCOrder","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerThaumcraftPlant","UID0":"magicbees.flowerThaumcraftPlant","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ordered","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ordered bees require Ordered Crystal Clusters. They can produce Order Infused Dust. Breed them from Arcane and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCOrder","UID0":"magicbees.speciesTCOrder"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2233,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCVis","UID0":"magicbees.speciesTCVis","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Vis","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Vis bees lead to some of the most powerful bees in the whole pack. They require a node within 75m of the bee housing. Make sure the lunar phase matches the requirments. Breed them from Ethereal and Eldritch."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCVis","UID0":"magicbees.speciesTCVis"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2234,"preRequisites":[1788,2233],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCRejuvenating","UID0":"magicbees.speciesTCRejuvenating","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectVisRecharge","UID0":"magicbees.effectVisRecharge","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Rejuvenating","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rejuvenating bees must be bred within 25m of a node. They will slowly charge the nearest node. Breed them from Vis and Attuned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCRejuvenating","UID0":"magicbees.speciesTCRejuvenating"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2235,"preRequisites":[1788,2234],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEmpowering","UID0":"magicbees.speciesTCEmpowering","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"magicbees.flowerAuraNode","UID0":"magicbees.flowerAuraNode","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectNodeEmpower","UID0":"magicbees.effectNodeEmpower","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Empowering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Empowering bee will randomly add aspects to nearby nodes, allowing enormous power to build up. The best chance to breed them is during the Full moon. Breed them from Rejuvenating and Vis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCEmpowering","UID0":"magicbees.speciesTCEmpowering"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2236,"preRequisites":[1788,2237],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesEdenic","UID0":"forestry.speciesEdenic","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectExploration","UID0":"forestry.effectExploration","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Edenic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Edenic bee has the remarkable effect of giving experience points to players nearby. Breed it from Exotic and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesEdenic","UID0":"forestry.speciesEdenic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2237,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesExotic","UID0":"forestry.speciesExotic","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Exotic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watch out, just like its parent the Exotic bee will poison you. But it is also a source of silk wisps. Breed them from Austere and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesExotic","UID0":"forestry.speciesExotic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2238,"preRequisites":[1788,2236,2226],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumdust","UID0":"gregtech.bee.speciesThaumiumdust","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectExploration","UID0":"forestry.effectExploration","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thaumium Dust","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Thaumium is pretty easy to make, but with this bee you can automate and get enormous quantities. It requires a block of Thaumium. Breed them from Edenic and Ignis."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumdust","UID0":"gregtech.bee.speciesThaumiumdust"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2239,"preRequisites":[1788,2213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSkulking","UID0":"magicbees.speciesSkulking","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Skulking","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Skulking bees are the core of the various mob bees. Check out the rest of the recipes in NEI, there are too many to show here. Breed them using Eldritch and Modest."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSkulking","UID0":"magicbees.speciesSkulking"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2240,"preRequisites":[1788,2239],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpidery","UID0":"magicbees.speciesSpidery","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"magicbees.effectSpidery","UID0":"magicbees.effectSpidery","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spidery","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Watch out, the effect from this bee will attract spiders. But it has one nice trait - a large working area. Perfect for breeding into your fast pollinators or for providing useful effects. Breed it from Skulking and Tropical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpidery","UID0":"magicbees.speciesSpidery"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2241,"preRequisites":[1788,2238,2220],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumshard","UID0":"gregtech.bee.speciesThaumiumshard","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersSnow","UID0":"forestry.flowersSnow","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectGlacial","UID0":"forestry.effectGlacial","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Thaumic Shards","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Thaumic Shards bee has a chance of giving you any shard propolis. It will require a Magical Forest biome. Breed them from Thaumium Dust and Aqua."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesThaumiumshard","UID0":"gregtech.bee.speciesThaumiumshard"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2242,"preRequisites":[1788,2241],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSalismundus","UID0":"gregtech.bee.speciesSalismundus","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceUp1","UID0":"forestry.toleranceUp1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMiasmic","UID0":"forestry.effectMiasmic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Salis Mundus","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of all the effort it takes to make Salis Mundus? After hours of breeding you can now do magic trouble free with this bee making all the Salis Mundus you need. It requires a Magical Forest Biome. Breed them from Thaumic Shards and Thaumium Dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSalismundus","UID0":"gregtech.bee.speciesSalismundus"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2243,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHeroic","UID0":"forestry.speciesHeroic","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectHeroic","UID0":"forestry.effectHeroic","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Heroic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This one takes a little luck. You'll have to find Steadfast bees in a dungeon chest. Their useful effect is causing damage to hostile mobs. Breed them from Steadfast and Valiant."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesHeroic","UID0":"forestry.speciesHeroic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2244,"preRequisites":[1788,2219],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesNameless","UID0":"magicbees.speciesNameless","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityHigh","UID0":"forestry.fertilityHigh","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Nameless","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Oblivion bees can be purchased with coins, or found in the End. Nameless is required to get Draconic bees. Nameless are also where you can get Amnesiac Wax. Breed them from Oblivion and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesNameless","UID0":"magicbees.speciesNameless"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2245,"preRequisites":[1788,2244],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAbandoned","UID0":"magicbees.speciesAbandoned","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectRepulsion","UID0":"forestry.effectRepulsion","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Abandoned","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Abandoned are the next step up. Breed them from Oblivion and Nameless."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesAbandoned","UID0":"magicbees.speciesAbandoned"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2246,"preRequisites":[1788,2245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":70,"Health":70,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesDraconic","UID0":"magicbees.speciesDraconic","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanLongest","UID0":"forestry.lifespanLongest","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceUp2","UID0":"forestry.toleranceUp2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersEnd","UID0":"forestry.flowersEnd","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Draconic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Draconic bee is required in order to get the dusts needed to recreate the Dragon Egg using magic. It must be bred in the End. Breed them from Imperial and Abandoned."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesDraconic","UID0":"magicbees.speciesDraconic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2247,"preRequisites":[1788,2246,2248],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSparkeling","UID0":"gregtech.bee.speciesSparkeling","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectAggressive","UID0":"forestry.effectAggressive","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Wither","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Wither bee will let you generate Wither skulls and small amounts of Nether star dust. It requires a block of Nether Star, and must be bred in the End. Breed them from Withering and Draconic."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSparkeling","UID0":"gregtech.bee.speciesSparkeling"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2248,"preRequisites":[1788,2249],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWithering","UID0":"magicbees.speciesWithering","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLargest","UID0":"forestry.territoryLargest","Slot":12},{"UID1":"magicbees.effectWithering","UID0":"magicbees.effectWithering","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Withering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Inflicts Withering all those who come near. Must be bred in the Nether. Chances are going to be low, so now would be the time to look for frames that increase mutation rates. Breed them from Demonic and Spiteful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesWithering","UID0":"magicbees.speciesWithering"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2249,"preRequisites":[1788,2250],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpiteful","UID0":"magicbees.speciesSpiteful","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Spiteful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The sheer disdain this bee shows you is awe inspiring. Must be bred in the Nether. Don't walk around it without proper protection, it seems to laugh when you think about that. Breed them from Hateful and Infernal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSpiteful","UID0":"magicbees.speciesSpiteful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2250,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesHateful","UID0":"magicbees.speciesHateful","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryLarger","UID0":"forestry.territoryLarger","Slot":12},{"UID1":"forestry.effectMisanthrope","UID0":"forestry.effectMisanthrope","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Hateful","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You can feel the waves of hate radiating out of her eyes. Don't even think about getting close without an Apiarist Suit. Must be bred in the Nether. Breed them from Eldritch and Infernal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesHateful","UID0":"magicbees.speciesHateful"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""}]}]},{"questID":2251,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.excited","UID0":"extrabees.species.excited","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"extrabees.flower.redstone","UID0":"extrabees.flower.redstone","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.lightning","UID0":"extrabees.effect.lightning","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Excited","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You might be thinking to yourself, huh this sure is an easy bee to give redstone....well, it also gives destructive lightning strikes. You might want to place them far from you. Or set them up in a Creeper spawner to make charged creepers for...experiments. Breed them from Valiant and Cultivated."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.excited","UID0":"extrabees.species.excited"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2252,"preRequisites":[1788,2251],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.celebratory","UID0":"extrabees.species.celebratory","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.fireworks","UID0":"extrabees.effect.fireworks","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Celebratory","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"\nThis fun bee doesn't have any useful products, but it does produce a fun effect - constant fireworks! You can breed the effect into other lines, and the color of the fireworks will match the bee. Make the bees require sky and you can disable the effects by covering them up with a piston. Great for a celebration! Breed them from Austere and Excited."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.celebratory","UID0":"extrabees.species.celebratory"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":4,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2253,"preRequisites":[1093],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12726,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§6§lToo much Mercury?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"After a couple of hours..days..weeks..of processing redstone for Ruby you'll have a massive stockpile of Mercury and not know what to do with it. You can store it all in supertanks, but really, how much hypochlorous acid does one need? Instead you can build an Acid Generator and at least get a little power out of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12726,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":5,"OreDict":""},{"id":"dreamcraft:item.CoinChemist","Count":25,"Damage":0,"OreDict":""}]}]},{"questID":2254,"preRequisites":[1788,2197],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesArsenic","UID0":"gregtech.bee.speciesArsenic","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersJungle","UID0":"forestry.flowersJungle","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Arsenic Princess","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"This deadly little princess will get you Arsenic, perfect for use in your circuits. Requires a Block of Arsenic. Breed them from Silver and Zinc."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesArsenic","UID0":"gregtech.bee.speciesArsenic"}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2255,"preRequisites":[1513],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:frameGentle","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Keep calm and bee on","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The gentle frame can help protect your bees from the damaging effects of high productivity or mutation rates."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:frameGentle","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Forestry:apiculture","Count":8,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesII","Count":2,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":26,"OreDict":""}]}]},{"questID":2256,"preRequisites":[2123,2127],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.brazilnut","UID0":"extratrees.species.brazilnut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarger","UID0":"forestry.heightLarger","Slot":2},{"UID1":"forestry.saplingsAverage","UID0":"forestry.saplingsAverage","Slot":3},{"UID1":"extratrees.fruit.brazilnut","UID0":"extratrees.fruit.brazilnut","Slot":4},{"UID1":"forestry.yieldLow","UID0":"forestry.yieldLow","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLow","UID0":"forestry.sappinessLow","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFaster","UID0":"forestry.maturationFaster","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Brazil Nut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Brazil Nuts don't give you much in the way of important attributes. Breed them from Common Beech and Jungle."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.brazilnut","UID0":"extratrees.species.brazilnut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":19,"OreDict":""}]}]},{"questID":2257,"preRequisites":[2123,2126,2256],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.coconut","UID0":"extratrees.species.coconut","Slot":0},{"UID1":"forestry.growthLightlevel","UID0":"forestry.growthLightlevel","Slot":1},{"UID1":"forestry.heightLarger","UID0":"forestry.heightLarger","Slot":2},{"UID1":"forestry.saplingsLow","UID0":"forestry.saplingsLow","Slot":3},{"UID1":"extratrees.fruit.coconut","UID0":"extratrees.fruit.coconut","Slot":4},{"UID1":"forestry.yieldAverage","UID0":"forestry.yieldAverage","Slot":5},{"UID1":"forestry.plantTypeNone","UID0":"forestry.plantTypeNone","Slot":6},{"UID1":"forestry.sappinessLowest","UID0":"forestry.sappinessLowest","Slot":7},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":8},{"UID1":"forestry.leavesNone","UID0":"forestry.leavesNone","Slot":9},{"UID1":"forestry.maturationFast","UID0":"forestry.maturationFast","Slot":10},{"UID1":"forestry.i1d","UID0":"forestry.i1d","Slot":11},{"UID1":"forestry.fireproofFalse","UID0":"forestry.fireproofFalse","Slot":12}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Coconut","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Coconut is King for seedoil production - 300L per nut. Breed them from Brazil Nut and Balsa."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:sapling","Count":1,"tag":{"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extratrees.species.coconut","UID0":"extratrees.species.coconut","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinForestry","Count":15,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2258,"preRequisites":[1122,2164],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"MagicBees:miscResources","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Aromatic Lump","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aromatic Lumps are twice as effective as Royal Jelly in an Alveary Swarmer. You'll need Enchanting Drops from Arcane bees and Pollen Clusters from Industrious bees."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"MagicBees:miscResources","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":26,"OreDict":""},{"id":"Forestry:frameImpregnated","Count":16,"Damage":0,"OreDict":""},{"id":"Forestry:honeyDrop","Count":64,"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinBeesI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2259,"preRequisites":[238],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"ThaumicTinkerer:magnet","Count":1,"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Infinite bats! Wait, what??","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Tired of the constant chirping from the thousands of bats drawn to your world-bending activities? Use this handy device to attract them to a central location where they can be...disposed. The Corporeal Attractor can be configured to attract or repel mobs, and the redstone strength applied divided by two determines the range.\n\nYou can use Soul Moulds to filter the mobs the Attractor draws in or pushes away. This gives you some idea for automating..."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"ThaumicTinkerer:magnet","Count":1,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":9,"OreDict":""},{"id":"ThaumicTinkerer:soulMould","Count":1,"tag":{},"Damage":0,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2260,"preRequisites":[1997],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:ElectricBootsTraveller","Count":1,"tag":{"charge":100000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Better boots with a little pizzazz","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"These Electric Boots of the Traveller will give a 2 percent vis discount along with the benefits of the normal Boots."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:ElectricBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinDarkWizardI","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":3,"Damage":9,"OreDict":""}]}]},{"questID":2261,"preRequisites":[2260],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:NanoBootsTraveller","Count":1,"tag":{"charge":1000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walk all over you","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Nanosuit boots will give the nanosuit benefits along with a massive speed boost, higher jump, and better vis discount. Great boots for the master magical engineer."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:NanoBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":11,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2262,"preRequisites":[2261],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"EMT:QuantumBootsTraveller","Count":1,"tag":{"charge":10000000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Walking across the stars","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Quantum boots of the traveller, for when you really need to run as fast as the wind. Might cause you some problems standing still! "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"EMT:QuantumBootsTraveller","Count":1,"Damage":27,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":11,"OreDict":""},{"id":"dreamcraft:item.CoinDarkWizardII","Count":2,"Damage":0,"OreDict":""}]}]},{"questID":2263,"preRequisites":[2121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gendustry:IndustrialGrafter","Count":1,"tag":{"charge":375000},"Damage":1,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Industrial Grafter","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"If you're tired of constantly replacing branchcutters, this Industrial Grafter is rechargeable."}},"tasks":{},"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":3,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":19,"OreDict":""}]}]},{"questID":2264,"preRequisites":[1603],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"TConstruct:oreBerries","Count":1,"Damage":2,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Do you taste metal?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Metal oreberries are a great source of new seeds. You can breed some or buy some from the Coins shop. I need some Copper myself, so give me some berries please."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"TConstruct:oreBerries","Count":8,"Damage":2,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Copper Oreberry","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2265,"preRequisites":[2264],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8503,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Deep blue sea of sapphires","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Sapphirum are pretty easy to get from Copper Oreberries. You'll need a block of Sapphire beneath them to get them to maturity. They are a good source of aluminium and oxygen in LV."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"gregtech","name":"Sapphirum","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2266,"preRequisites":[2265],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":8527,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Red touch yellow","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Garnets are actually more valuable than Sapphires. They're an early source of Chrome and Manganese, which you'll need for HV machines. To reach maturity, you will need a block of Garnet beneath these crops. You can get Garnets from the HV macerator and Spessartine Ore, or you can use an Implosion Compressor to turn Garnet Sands into crystals to make blocks."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"IC2:itemCropSeed","Count":1,"tag":{"owner":"berriespp","name":"Garnydinia","scan":4},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":51,"OreDict":""}]}]},{"questID":2267,"preRequisites":[292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Thaumcraft:TrunkSpawner","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"A travel companion","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Lonely? The Traveling Trunk is a simple companion, giving you some extra space. With upgrades (one per trunk) it can offer you some nice advantages. Like other golems, you can pick it up with the Golemancer's Bell. It's brain is pretty small though, so it can easily get stuck. You can order it to stay in one spot via the GUI. It will attempt to teleport to you, as long as the chunk is still loaded. It can also follow you into different dimensions.\n\nThey will heal slowly on their own, or faster if you right-click on them with any food, including rotten meat. Keep away from lava.\n\nGolem upgrade effects:\nAer: Moves faster\nEarth: 1 more row of item slots\nFire: Attacks hostile mobs, setting them on fire\nWater: Nearly invulnerable. In SMP, can only be opened or picked up by player who placed it.\nEntropy: Sucks in loose items nearby if it has room\nOrder: Can be picked up with its contents, and nested in other inventories. Don't be stupid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Thaumcraft:TrunkSpawner","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Thaumcraft:ItemLootBag","Count":1,"Damage":1,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2268,"preRequisites":[262],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"OpenBlocks:luggage","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Who needs friends?","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Luggage is better than a dumb old traveling trunk. It automatically picks up dropped items, saving you time while mining. It's near-invulnerable, including in lava. It will follow you like an eager puppy, to the ends of the earth - but you probably should pick her up before changing dimensions. A lightning strike can provide more room. Shift right-clicking will turn it back into an item without losing its contents. Look for her in the GTNH tab of the Thaumonomicon"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"OpenBlocks:luggage","Count":1,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":10,"OreDict":""}]},{"rewardID":"bq_standard:choice","index":1,"choices":[{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":0,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":1,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":2,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":3,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""},{"id":"Thaumcraft:ItemGolemUpgrade","Count":1,"Damage":5,"OreDict":""}]}]},{"questID":2269,"preRequisites":[1788,2270,2273],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.magenta","UID0":"gendustry.bee.magenta","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceBoth3","UID0":"forestry.toleranceBoth3","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Magenta","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Magenta bees are also Fastest production, but come with +- 3 Climate. Breed them from Pink and Blue."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.magenta","UID0":"gendustry.bee.magenta","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2270,"preRequisites":[1788,2271,2272],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.pink","UID0":"gendustry.bee.pink","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth3","UID0":"forestry.toleranceBoth3","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Pink","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Pink princesses provide pink dye. They also have Fastest production and +-3 Humidity. Breed them from Red and White."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.pink","UID0":"gendustry.bee.pink","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2271,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.white","UID0":"gendustry.bee.white","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"White","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"White bees provide white dye. Breed them from Wintry and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.white","UID0":"gendustry.bee.white","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2272,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.red","UID0":"gendustry.bee.red","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Red","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dye bees obviously provide dyes, but some of them are also useful for their traits. There are many dye bees, these are just a sample. They can be useful for the hard to find dye colors from flowers. Breed Red from Common and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.red","UID0":"gendustry.bee.red","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2273,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":30,"Health":30,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.blue","UID0":"gendustry.bee.blue","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShort","UID0":"forestry.lifespanShort","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Blue","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Blue princesses will provide a handy source of blue dye. Breed them from Forest and Diligent."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gendustry.bee.blue","UID0":"gendustry.bee.blue","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2274,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCBatty","UID0":"magicbees.speciesTCBatty","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"magicbees.effectBatty","UID0":"magicbees.effectBatty","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Batty","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Batty bees will spawn firebats. So prepare for battle. Their specialty is Gunpowder. Breed them from Skulking and Windy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesTCBatty","UID0":"magicbees.speciesTCBatty","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2275,"preRequisites":[1788,2274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesGhastly","UID0":"magicbees.speciesGhastly","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityLow","UID0":"forestry.fertilityLow","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectGhastly","UID0":"magicbees.effectGhastly","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ghastly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ghastly bees will spawn Ghasts, so beeee careful. Their specialty is Ghast Tears. They only have 1 fertility so you want to make sure you breed the drones with your master template princess. Breed them from Batty and Ethereal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesGhastly","UID0":"magicbees.speciesGhastly","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2276,"preRequisites":[1788,2275],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSmouldering","UID0":"magicbees.speciesSmouldering","Slot":0},{"UID1":"forestry.speedFast","UID0":"forestry.speedFast","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"magicbees.effectAblaze","UID0":"magicbees.effectAblaze","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Smouldering","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Smouldering drones will spawn blazes, and make Blaze Rods as their specialty. Breed the drones with your template princesses so you can prevent the harmful effects from destroying your base. Also, their Hellish temperature and Normal humidity requirements are interesting - use a Climate Acclimator or other methods to adjust the biome. Must be bred in the Nether. Breed them from Ghastly and Hateful."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"magicbees.speciesSmouldering","UID0":"magicbees.speciesSmouldering","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2277,"preRequisites":[1788,2278],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fuel","UID0":"extrabees.species.fuel","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Refined","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ah, here it is. This bee has been known to power whole civilizations. Placed in a top tier bee housing like an Alveary or Industrial Apiary, with appropriate frames, it can produce oil faster than some wells. In addition, you will get small amounts of Diesel fuel as well! Breed them from Oily and Distilled."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.fuel","UID0":"extrabees.species.fuel","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2278,"preRequisites":[1788,2279],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.distilled","UID0":"extrabees.species.distilled","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Distilled","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What's this? A step back you say! Yes, the Distilled bee doesn't make anything of use, but the potential is there. Breed them from Oily and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.distilled","UID0":"extrabees.species.distilled","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2279,"preRequisites":[1788,2280,2282],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.oil","UID0":"extrabees.species.oil","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Oily","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally, the Oily bee! Its combs produce the most oil, but its output isn't that thrilling...yet. Breed them from Primeval and Ocean. As an alternative, you can breed them from Primeval and Frugal if you can't find an Ocean biome or used up all your Beekeeper coins."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.oil","UID0":"extrabees.species.oil","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2280,"preRequisites":[1788,2281],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":50,"Health":50,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.primeval","UID0":"extrabees.species.primeval","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLong","UID0":"forestry.lifespanLong","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Primeval","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Primeval. The next step. Breed them from Ancient and Secluded."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.primeval","UID0":"extrabees.species.primeval","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2281,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":45,"Health":45,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ancient","UID0":"extrabees.species.ancient","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanElongated","UID0":"forestry.lifespanElongated","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ancient","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ancient bees are the first step to the best oil bees in the game. Breed them from Diligent and Noble."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ancient","UID0":"extrabees.species.ancient","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2282,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.water","UID0":"extrabees.flower.water","Slot":10},{"UID1":"forestry.floweringSlowest","UID0":"forestry.floweringSlowest","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"extrabees.effect.water","UID0":"extrabees.effect.water","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ocean","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Ocean bee can be hard to breed since some servers use a worldgen that prevents ocean biomes from appearing. You might have luck trying in a Twilight Forest lake - you'll know you are in the right biome if you see Water Creepers! If you have trouble locating an appropriate spot, you can also purchase Ocean bees from the Coins tab. Breed them from Diligent and Water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.ocean","UID0":"extrabees.species.ocean","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2283,"preRequisites":[1788,2284,2280],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.resin","UID0":"extrabees.species.resin","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Resinous","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well at least you can get a couple of Sticky Resin from this otherwise boring bee. Breed them from Miry and Primeval."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.resin","UID0":"extrabees.species.resin","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2284,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMiry","UID0":"forestry.speciesMiry","Slot":0},{"UID1":"forestry.speedSlowest","UID0":"forestry.speedSlowest","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityMaximum","UID0":"forestry.fertilityMaximum","Slot":3},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersMushrooms","UID0":"forestry.flowersMushrooms","Slot":10},{"UID1":"forestry.floweringSlower","UID0":"forestry.floweringSlower","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Miry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Miry bees aren't too useful yet. They'll open up the Boggy branch for you. You'll need to find a biome with Warm/Damp to breed them. Use your Nature's Compass and Habitat Locator to find them. An easy one to find is Rainforest. Breed them from Marshy and Noble. "}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesMiry","UID0":"forestry.speciesMiry","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2285,"preRequisites":[1788,2278,2283],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":40,"Health":40,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"extrabees.species.latex","UID0":"extrabees.species.latex","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanNormal","UID0":"forestry.lifespanNormal","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersVanilla","UID0":"forestry.flowersVanilla","Slot":10},{"UID1":"forestry.floweringSlow","UID0":"forestry.floweringSlow","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Elastic","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Finally! A useful bee from the Boggy branch. The Elastic bee will actually produce rubber bars for you! No more smelly Sulfur! Breed them from Distilled and Resinous."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"extrabees.species.latex","UID0":"extrabees.species.latex","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2286,"preRequisites":[1121],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Genetics:masterRegistry","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"Master registry","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The master beekeeper needs a master registry. Make sure you don't get any tears in your apiaries as you collect all the requirements!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":1,"requiredItems":[{"id":"Forestry:beeCombs","Count":64,"Damage":15,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":4,"OreDict":""},{"id":"Forestry:beeCombs","Count":64,"Damage":6,"OreDict":""},{"id":"MagicBees:comb","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":1,"requiredItems":[{"id":"Forestry:beeCombs","Count":64,"Damage":7,"OreDict":""},{"id":"MagicBees:comb","Count":64,"Damage":1,"OreDict":""},{"id":"ExtraBees:honeyComb","Count":64,"Damage":6,"OreDict":""},{"id":"Forestry:beeCombs","Count":128,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":1,"requiredItems":[{"id":"Forestry:royalJelly","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":64,"Damage":0,"OreDict":""},{"id":"Forestry:pollen","Count":64,"Damage":1,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"Genetics:masterRegistry","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2287,"preRequisites":[1788,2288],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAgrarian","UID0":"forestry.speciesAgrarian","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectFertile","UID0":"forestry.effectFertile","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Agrarian","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Agrarian bees are supposed to help crops nearby grow. The effect isn't really that noticeable, is it? You'll have to be in a Plains-like biome for these to appear. Breed them from Farmerly and Industrious."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesAgrarian","UID0":"forestry.speciesAgrarian","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2288,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFarmerly","UID0":"forestry.speciesFarmerly","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Farmerly","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Like most farmers, these bees seem to spend all their time complaining about the neighbors or the weather instead of actually doing much. They'll need a Plains-like biome. Breed them from Unweary and Rural."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"forestry.speciesFarmerly","UID0":"forestry.speciesFarmerly","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2289,"preRequisites":[1788,2287,2274],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSandwich","UID0":"gregtech.bee.speciesSandwich","Slot":0},{"UID1":"forestry.speedSlow","UID0":"forestry.speedSlow","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectFertile","UID0":"forestry.effectFertile","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Sandwich","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"sudo make me a sandwich. Or a bee that makes sandwich parts anyways. Breed them from Batty and Agrarian."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesSandwich","UID0":"gregtech.bee.speciesSandwich","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2290,"preRequisites":[1788,2291],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFertilizer","UID0":"gregtech.bee.speciesFertilizer","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Fertilizer","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Fertilizer bee will make your crop empire purr. Or grow anyways. They are a good source of Fastest production and Faster pollination as well. Breed them from Apatite and Ash."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesFertilizer","UID0":"gregtech.bee.speciesFertilizer","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2291,"preRequisites":[1788,2292],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Health":60,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesApatite","UID0":"gregtech.bee.speciesApatite","Slot":0},{"UID1":"forestry.speedFastest","UID0":"forestry.speedFastest","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"extrabees.flower.rock","UID0":"extrabees.flower.rock","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Apatite","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Apatite bee requires an Apatite Block beneath it to breed. Its Seedy comb will make seedoil as well. Breed them from Ash and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesApatite","UID0":"gregtech.bee.speciesApatite","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2292,"preRequisites":[1788],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":20,"Health":20,"IsAnalyzed":1,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAsh","UID0":"gregtech.bee.speciesAsh","Slot":0},{"UID1":"forestry.speedNormal","UID0":"forestry.speedNormal","Slot":1},{"UID1":"forestry.lifespanShorter","UID0":"forestry.lifespanShorter","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceNone","UID0":"forestry.toleranceNone","Slot":4},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":5},{"UID1":"forestry.toleranceBoth2","UID0":"forestry.toleranceBoth2","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersWheat","UID0":"forestry.flowersWheat","Slot":10},{"UID1":"forestry.floweringFaster","UID0":"forestry.floweringFaster","Slot":11},{"UID1":"forestry.territoryLarge","UID0":"forestry.territoryLarge","Slot":12},{"UID1":"forestry.effectNone","UID0":"forestry.effectNone","Slot":13}]}},"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"OR","name":"Ash","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"A bee to make ashes? What insanity is this? At least you can get Large territory from them. You'll need to pay the Nether a visit. Breed them from Clay and Coal."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"Forestry:beePrincessGE","Count":1,"tag":{"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesAsh","UID0":"gregtech.bee.speciesAsh","Slot":0}]}},"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":25,"OreDict":""}]}]},{"questID":2293,"preRequisites":[851],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"miscutils:NitrogenTetroxide","Count":1,"Damage":0,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§b§a§9§lNitrogen Tetroxide","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To make Nitrogen Tetroxide you need to combine some copper dust and nitric acid in a Chemical Dehydrator."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":20,"Damage":2035,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30653,"OreDict":""}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"miscutils:NitrogenTetroxide","Count":2,"Damage":0,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30653,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":6,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinChemistI","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2294,"preRequisites":[147,1245],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":793,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":1,"questLogic":"AND","name":"§a§lRocket Engine EV","isGlobal":0,"lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Rocket Engine is a very dirty device which generate power out of rocket fuels at 60% efficiency.\n200 to 2000 polution each sec."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":793,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"miscutils:RocketFuelMixB","Count":16,"Damage":0,"OreDict":""},{"id":"miscutils:RocketFuelMixA","Count":4,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":7,"OreDict":""}]},{"rewardID":"bq_standard:item","index":1,"rewards":[{"id":"dreamcraft:item.CoinTechnicianII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2295,"preRequisites":[1598],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":9085,"OreDict":"nuggetPlatinum"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§l§6§lGetting your first Platinum","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Efficient Platinum processing is quite complicated. But for now, we can just smelt it directly into nuggets. This might not be the most efficient route to take, but it is enough for what we want to do next."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":27,"Damage":47,"OreDict":"dustPlatinumMetallicPowder"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":9085,"OreDict":"nuggetPlatinum"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":9,"Damage":47,"OreDict":"dustPlatinumMetallicPowder"},{"id":"gregtech:gt.metaitem.01","Count":5,"Damage":9085,"OreDict":"nuggetPlatinum"}]}]},{"questID":2296,"preRequisites":[2297],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2085,"OreDict":"dustPlatinum"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§a§lPlatinum Processing, Step 4","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Platinum Cloride? You promised Pure Platinum Metal at a much higher efficiency than just smelting it! No worries, just react the Platinum Cloride with Calcium and you are done. The calcium and clorine can be recycled aswell!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":2,"Damage":51,"OreDict":"dustReprecipitatedPlatinum"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2026,"OreDict":"dustCalcium"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2085,"OreDict":"dustPlatinum"},{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":63,"OreDict":"dustCalciumChloride"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TConstruct:frypan","Count":1,"tag":{"InfiTool":{"BaseDurability":168,"Head":1515,"BaseAttack":6,"ToolEXP":0,"Built":1,"HarvestLevel":6,"Attack":6,"RenderHead":1515,"ModDurability":0,"Handle":1515,"Broken":0,"Shoddy":0,"RenderHandle":1515,"MiningSpeed":1200,"ToolLevel":1,"Unbreaking":0,"Damage":0,"BonusDurability":0,"TotalDurability":168,"Modifiers":0},"display":{"Name":"§fPlatinum Frying Pan"}},"Damage":0,"OreDict":""}]}]},{"questID":2297,"preRequisites":[2301,2299],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":51,"OreDict":"dustReprecipitatedPlatinum"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§a§lPlatinum Processing, Step 3","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hooray! All my Platinum Metal is now a fluid.... Time to add the second chemical to re-crystallise the dust. You will also get Palladium Enriched Ammonia and Platinum Salt. Don't void these Byproducts! You will need them later on!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":20,"Damage":44,"OreDict":"cellPlatinumConcentrate"},{"id":"bartworks:gt.bwMetaGeneratedcell","Count":2,"Damage":50,"OreDict":"cellAmmoniumChloride"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddustTiny","Count":160,"Damage":45,"OreDict":"dustTinyPlatinumSalt"},{"id":"bartworks:gt.bwMetaGenerateddustTiny","Count":20,"Damage":51,"OreDict":""},{"id":"bartworks:gt.bwMetaGeneratedcell","Count":2,"Damage":52,"OreDict":"cellPalladiumEnrichedAmmonia"},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30640,"OreDict":"cellDilutedSulfuricAcid"},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30717,"OreDict":"cellNitrogenDioxide"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2298,"preRequisites":[2297],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":45,"OreDict":"dustPlatinumSalt"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§a§lPlatinum Salt Recycling","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"What, recycling? That is Stupid. I just wanna void this stuff! - That is what you might think right now, but be aware that Platinum Salt still holds a high concentration of Platinum. We must recycle it to gain the maximum amount of Platinum out of it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":45,"OreDict":"dustPlatinumSalt"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":46,"OreDict":"dustRefinedPlatinumSalt"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"IC2:itemScrapbox","Count":3,"Damage":0,"OreDict":""}]}]},{"questID":2299,"preRequisites":[2300],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":44,"OreDict":"cellPlatinumConcentrate"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§a§lPlatinum Processing, Step 2b","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now, you got all the Chemicals you need, for now. So start with dissolving all the Platinum Metal into the Aqua Regia. You will also gain some Platinum Residue Dust. This highly concentrated dust contains a lot of even Rarer Metals, like Iridium, Osmium, Rhodium and Ruthenium. You will need this at IV and higher, so stockpile it!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":20,"Damage":47,"OreDict":"dustPlatinumMetallicPowder"},{"id":"bartworks:gt.bwMetaGeneratedcell","Count":20,"Damage":48,"OreDict":"cellAquaRegia"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":20,"Damage":44,"OreDict":"cellPlatinumConcentrate"},{"id":"bartworks:gt.bwMetaGenerateddustTiny","Count":20,"Damage":49,"OreDict":"dustTinyPlatinumResidue"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":2,"Damage":0,"OreDict":""},{"id":"bartworks:gt.bwMetaGeneratedcell","Count":5,"Damage":44,"OreDict":"cellPlatinumConcentrate"}]}]},{"questID":2300,"preRequisites":[176],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":48,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§a§lPlatinum Processing, Step 1","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Aqua Regia, the water of the Kings, is a chemical that will melt down Platinum. The perfect solvent for Platinum processing. Get a few Cells of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30640,"OreDict":"cellDilutedSulfuricAcid"},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30653,"OreDict":"cellNitricAcid"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":20,"Damage":48,"OreDict":"cellAquaRegia"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2301,"preRequisites":[2300],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":50,"OreDict":"cellAmmoniumChloride"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§a§lPlatinum Processing, Step 2a","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ammonium Chloride is a Chemical that is used to fall out the dissolved Platinum in a purer Form, you will need some of this."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30683,"OreDict":"cellHydrochloricAcid_GT5U"},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30659,"OreDict":"cellAmmonia"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":10,"Damage":50,"OreDict":"cellAmmoniumChloride"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":5,"Damage":50,"OreDict":"cellAmmoniumChloride"},{"id":"dreamcraft:item.CoinChemistII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2302,"preRequisites":[2298,2300],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":46,"OreDict":"dustRefinedPlatinumSalt"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§a§lBack to Step 1","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The refined Platinum Salt can be heated to evaporate the last remaining Impurities. Now you are left with Platinum Metalic Poweder again, which you can dissolve again."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":46,"OreDict":"dustRefinedPlatinumSalt"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":47,"OreDict":"dustPlatinumMetallicPowder"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":32477,"OreDict":""}]}]},{"questID":2303,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":52,"OreDict":"cellPalladiumEnrichedAmmonia"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lPalladium Processing","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Palladium is a rather usefull Platinum Group Metal, which can be made easily. But, you will need quite a lot of it, so this Quest will help you figuring out how to process it propperly.\nFirst, you will need to process half of your Palladium Enriched Ammonia to Palladium Salt Dust."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":32,"Damage":52,"OreDict":"cellPalladiumEnrichedAmmonia"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":16,"Damage":55,"OreDict":"dustPalladiumSalt"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TGregworks:tGregToolPartLargeSwordBlade","Count":1,"tag":{"material":"Palladium"},"Damage":1514,"OreDict":""}]}]},{"questID":2304,"preRequisites":[1696],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcellMolten","Count":1,"Damage":59,"OreDict":"cellMoltenPotassiumDisulfate"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lPlatin Group Processing - All the other Metals","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since you have processed Platinum in a better way until now, you should have a lot of Sludge Dust laying around. We are here to process it and gain all the different products from it. But to do so, we will need some chemicals, so gather a bit of molten Potassium Disulfate."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcellMolten","Count":36,"Damage":59,"OreDict":"cellMoltenPotassiumDisulfate"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2305,"preRequisites":[2304],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":61,"OreDict":"cellRhodiumSulfate"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lFirst Seperaton - Rhodium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Platinum Group processing is a step wise processing. All byproducts will be achived with this chain, that's why crafting on demand is not recommended, but rather having a processing factory running all the time.\nAs a first step, we will spit apart the Rhodium from the other metals, it will evaporate into a Gas Compound, that you can gather from your EBF. (NOTE: USE AN OUTPUT HATCH AT THE §l§nBOTTOM!§r)"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":100,"Damage":49,"OreDict":"dustPlatinumResidue"},{"id":"bartworks:gt.bwMetaGeneratedcellMolten","Count":36,"Damage":59,"OreDict":"cellMoltenPotassiumDisulfate"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":100,"Damage":60,"OreDict":"dustLeachResidue"},{"id":"bartworks:gt.bwMetaGeneratedcell","Count":36,"Damage":61,"OreDict":"cellRhodiumSulfate"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""},{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2306,"preRequisites":[2305],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":65,"OreDict":"dustSodiumRuthenate"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lSecond Seperation - Ruthenium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"For the next Step in the Process, we will split up the Ruthenium from our Sludge. That process is a bit more complicated than you might think, you will need quite a lot of Saltpeter for this chemical recipe."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":100,"Damage":60,"OreDict":"dustLeachResidue"},{"id":"gregtech:gt.metaitem.01","Count":100,"Damage":2836,"OreDict":"dustSaltpeter"},{"id":"gregtech:gt.metaitem.01","Count":10,"Damage":30692,"OreDict":"cellSaltWater"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":30,"Damage":65,"OreDict":"dustSodiumRuthenate"},{"id":"bartworks:gt.bwMetaGenerateddust","Count":60,"Damage":69,"OreDict":"dustRarestMetalResidue"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"gregtech:gt.metaitem.01","Count":100,"Damage":2836,"OreDict":"dustSaltpeter"},{"id":"enhancedlootbags:lootbag","Count":2,"Damage":8,"OreDict":""}]}]},{"questID":2307,"preRequisites":[2326],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":86,"OreDict":"cellRhodiumFilterCakeSolution"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lRe-Solving the purity issue","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hmm the Sifiting did well, you lost a lot of impurities, but also, new ones from the sifiting grates are there... Time to filter them out with water."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":85,"OreDict":"dustRhodiumFilterCake"},{"id":"IC2:itemCellEmpty","Count":1,"Damage":1,"OreDict":"cellWater"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":86,"OreDict":"cellRhodiumFilterCakeSolution"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2308,"preRequisites":[2303],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":55,"OreDict":"dustPalladiumSalt"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lSalty Metals are the worst!","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Now, you got your Palladium Salt, but a Salt wont help you much, so you need to mechanically sift it out into metal piles, on which the Palladiumnitrate can grab on and crystallise."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":8,"Damage":53,"OreDict":"dustPalladiumMetallicPowder"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TGregworks:tGregToolPartToughRod","Count":1,"tag":{"material":"Palladium"},"Damage":1514,"OreDict":""}]}]},{"questID":2309,"preRequisites":[2303],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":58,"OreDict":"cellFormicAcid"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lAnother Acid to worry about!","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Formic Acid, also known as methanoic acid, is a rather simple organic acid. We will need it for the Palladium process, so, dont be shy make tons of it! The Sodium Sulfate can be recycled."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30674,"OreDict":"cellCarbonMonoxide"},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":2685,"OreDict":"dustSodiumHydroxide_GT5U"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":16,"Damage":56,"OreDict":"cellSodiumFormate"},{"id":"gregtech:gt.metaitem.01","Count":16,"Damage":30720,"OreDict":"cellSulfuricAcid"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":2,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":16,"Damage":58,"OreDict":"cellFormicAcid"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistII","Count":5,"Damage":0,"OreDict":""},{"id":"IC2:itemCellEmpty","Count":16,"Damage":0,"OreDict":"cellEmpty"}]}]},{"questID":2310,"preRequisites":[2309,2308,2303],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2052,"OreDict":"dustPalladium"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lPalladium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First, you need to recrystallise the Palladium Metalic Power with Palladium Enriched Ammonia, to Palladiumnitrate, also known as Reprecipated Palladium. Then you add Formic Acid to that mixture and recive your pure Palladium. You can either use it for Tinker Weapons or you keep it for later."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":2,"Damage":54,"OreDict":"dustReprecipitatedPalladium"},{"id":"bartworks:gt.bwMetaGeneratedcell","Count":4,"Damage":58,"OreDict":"cellFormicAcid"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":2,"Damage":2052,"OreDict":"dustPalladium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"TGregworks:tGregToolPartLargePlate","Count":2,"tag":{"material":"Palladium"},"Damage":1514,"OreDict":""}]}]},{"questID":2311,"preRequisites":[215],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:bw.blockores.01","Count":1,"Damage":8,"OreDict":"oreVanadio-Oxy-Dravite"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lRoss128b Trip","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Ross128b is a lovely Planet, that does not contain Monsters. It offers a lot of new Veins and rumors say, there would be ruins of ancient civilisations that left a few Machines there. You can find this Planet in the bottom of your Galacticraft Map."}},"tasks":[{"posX":0,"posY":0,"posZ":0,"visible":0,"invert":0,"name":"Ross128b","range":-1,"index":0,"dimension":64,"taxiCabDist":0,"taskID":"bq_standard:location","hideInfo":0}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinSpaceII","Count":5,"Damage":0,"OreDict":""}]}]},{"questID":2312,"preRequisites":[2306],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":72,"OreDict":"cellAcidicOsmiumSolution"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lThird Seperation - Osmium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Osmium extraction is quite tricky. You will need heat and a Strong Acid to extract it from the residue, but we are almost finished. The next seperation is the final one."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":15,"Damage":30683,"OreDict":"cellHydrochloricAcid_GT5U"},{"id":"bartworks:gt.bwMetaGenerateddust","Count":60,"Damage":69,"OreDict":"dustRarestMetalResidue"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":30,"Damage":70,"OreDict":"dustIridiumMetalResidue"},{"id":"bartworks:gt.bwMetaGeneratedcell","Count":30,"Damage":72,"OreDict":"cellAcidicOsmiumSolution"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":25083,"OreDict":"roundOsmium"},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2313,"preRequisites":[2312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":73,"OreDict":"dustIridiumDioxide"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lFinal Seperation - Iridium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Seperating Iridium from the rather useless Materials is quite easy. Just heat it in the Blast Furnace and you're done with this step. The Sludge can be centrifuged into Gold and SiO2."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":30,"Damage":70,"OreDict":"dustIridiumMetalResidue"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":30,"Damage":73,"OreDict":"dustIridiumDioxide"},{"id":"bartworks:gt.bwMetaGenerateddust","Count":30,"Damage":71,"OreDict":"dustSludgeDustResidue"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":64,"Damage":32008,"OreDict":""}]}]},{"questID":2314,"preRequisites":[2306],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":67,"OreDict":"cellHotRutheniumTetroxideSolution"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lPossibly the Longest Quest in the Platinum Chain","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"As the title states it, this quest might be the longest solo Quest. But fear not, child! All you need to do, is dissolving the Sodium Ruthenate in chlorine, heat up the sollution and distill it into Ruthenium Tetroxide. You can either use the Fluid Heater, or the Oil Cracker for the heat up step. The Oil Cracker is more efficient to use, but its also larger and slower. Then place the Ruthenium Tetroxide in a Fluid Solifier to yield the dust. Comprende? Good."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":28,"Damage":66,"OreDict":"dustRutheniumTetroxide"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":2315,"preRequisites":[2312],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":74,"OreDict":"cellOsmiumSolution"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lClass, Concentrate!","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"You Acidic Osmium sollution is way too weak to fell out Osmium. Go and distill it, so you gain a more concentrated variant of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":30,"Damage":72,"OreDict":"cellAcidicOsmiumSolution"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":3,"Damage":74,"OreDict":"cellOsmiumSolution"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2316,"preRequisites":[2313],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":75,"OreDict":"cellAcidicIridiumSolution"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lDissolve Ir","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Dissolving impure Iridium yields you with some rather intresting chemical."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":73,"OreDict":"dustIridiumDioxide"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30683,"OreDict":"cellHydrochloricAcid_GT5U"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":75,"OreDict":"cellAcidicIridiumSolution"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2317,"preRequisites":[2315],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2083,"OreDict":"dustOsmium"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lFinally Osmium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Since you have concentrated your sollution, its now time to gather the solid Osmium from it. Go Ahead and mix it with Hydrochloric Acid."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":3,"Damage":74,"OreDict":"cellOsmiumSolution"},{"id":"gregtech:gt.metaitem.01","Count":18,"Damage":30683,"OreDict":"cellHydrochloricAcid_GT5U"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2083,"OreDict":"dustOsmium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2318,"preRequisites":[2314],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":64,"OreDict":"dustRuthenium"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lRuthenium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To gather Ruthenium from your dust, simply let it react with Hydrochloric Acid and you are done."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":64,"OreDict":"dustRuthenium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2319,"preRequisites":[2316],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":76,"OreDict":"dustIridiumChloride"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lEven more Chlorine needed","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"By combining your Acidic Iridium Concentrate with Ammonia Chloride you will get some Iridium Chloride, which is rather easy to process into Iridium. You almost made it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":75,"OreDict":"cellAcidicIridiumSolution"},{"id":"bartworks:gt.bwMetaGeneratedcell","Count":3,"Damage":50,"OreDict":"cellAmmoniumChloride"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":76,"OreDict":"dustIridiumChloride"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2320,"preRequisites":[213],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":0,"simultaneous":0,"icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12738,"OreDict":""},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§6§lTower of Babylon","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Well what might happen if you combine 64 Distillation Tower in one...? You know... you get a 61 Blocks tall Multiblock\n\nThis can handle up to 256 Recipes at once."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":1,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.blockmachines","Count":1,"Damage":12738,"OreDict":""}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2321,"preRequisites":[2319],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2084,"OreDict":"dustIridium"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lIridium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Splitting off the Chlorine from the Iridium Chloride is rather easy. Make a bit of Iridium."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":76,"OreDict":""},{"id":"gregtech:gt.metaitem.01","Count":3,"Damage":2026,"OreDict":"dustCalcium"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2084,"OreDict":"dustIridium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2084,"OreDict":"dustIridium"}]}]},{"questID":2322,"preRequisites":[2305],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":62,"OreDict":"cellRhodiumSulfateSolution"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lFluid from Sulfur Gas","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"The Rhodium Sulfate you got there... its quite impure... you need to dissolve it in Water to achive a higher purity grade, also you can regain some of the inputs that way."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":11,"Damage":61,"OreDict":"cellRhodiumSulfate"},{"id":"IC2:itemCellEmpty","Count":10,"Damage":1,"OreDict":"cellWater"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":11,"Damage":62,"OreDict":"cellRhodiumSulfateSolution"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2323,"preRequisites":[2322],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":79,"OreDict":"dustCrudeRhodiumMetal"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§a§b§lBut.. this is expensive!","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Gathering Zinc might not have been a pleasant task in the past, but here, its just used as a Catalyst, so you will regain all of it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":62,"OreDict":"cellRhodiumSulfateSolution"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2036,"OreDict":"dustZinc"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":79,"OreDict":"dustCrudeRhodiumMetal"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:choice","index":0,"choices":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""},{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2324,"preRequisites":[2323],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":80,"OreDict":"dustRhodiumSalt"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lAnother one bites the Salt","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Hey why you are looking at me §othat§r way? You aint finished yet. Get more Chlorine and Salt, to process your Rhodium"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":79,"OreDict":"dustCrudeRhodiumMetal"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":2817,"OreDict":"dustSalt"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30023,"OreDict":"cellChlorine"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":3,"Damage":80,"OreDict":"dustRhodiumSalt"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]},{"questID":2325,"preRequisites":[2324],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":83,"OreDict":"dustRhodiumNitrate"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lSalt can't be stored in Water?","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"First, dissolve the Rhodium Salt in Water in a mixer, then react the sollutio."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":5,"Damage":80,"OreDict":"dustRhodiumSalt"},{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":82,"OreDict":"dustSodiumNitrate"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":83,"OreDict":"dustRhodiumNitrate"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2326,"preRequisites":[2325],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":85,"OreDict":"dustRhodiumFilterCake"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lSift it goooood","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"To Gather a purer form of Rhodium sludge, you need to Sift the Nitrate. This will be a bit lossy."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":83,"OreDict":"dustRhodiumNitrate"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":85,"OreDict":"dustRhodiumFilterCake"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2327,"preRequisites":[2307],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":87,"OreDict":"dustReprecipitatedRhodium"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lAlmost done with Rhodium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Place your sollution in your Chemical reactor to heat it while it spins. That way you get a dust out of your Sollution, 100% lump free!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedcell","Count":1,"Damage":86,"OreDict":"cellRhodiumFilterCakeSolution"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":87,"OreDict":"dustReprecipitatedRhodium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"dreamcraft:item.CoinChemistIII","Count":1,"Damage":0,"OreDict":""}]}]},{"questID":2328,"preRequisites":[2327],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":78,"OreDict":"dustRhodium"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lRhodium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rhodium is the most processing intensive, but also one of the most common elements in the Platinum Sludge. Get a lot of it, you will need it."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":87,"OreDict":"dustReprecipitatedRhodium"},{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":30683,"OreDict":"cellHydrochloricAcid_GT5U"}],"taskID":"bq_standard:retrieval"},{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":1,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGenerateddust","Count":1,"Damage":78,"OreDict":"dustRhodium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":2329,"preRequisites":[2328,2310],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedingot","Count":1,"Damage":88,"OreDict":"ingotRhodium-PlatedPalladium"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lRhodium-Plated Palladium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Rhodium Plated Palladium is the LuV Tier Hull Material. You will basically use it, like you do Tungstensteel now. Why its called plated if it's clearly an alloy you ask? I don't know either!"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedingot","Count":64,"Damage":88,"OreDict":"ingotRhodium-PlatedPalladium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":2330,"preRequisites":[2318,2321],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"bartworks:gt.bwMetaGeneratedingot","Count":1,"Damage":90,"OreDict":"ingotRuridit"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"§b§lRuri... Ruridididi?","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Combining Ruthenium with Iridium yields a very special Metal, that is needed for higher Tier components. It's propperties are strange, and there havent been much research regarding this alloy. So why dont you just craft a bounch of it?"}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"bartworks:gt.bwMetaGeneratedingot","Count":64,"Damage":90,"OreDict":"ingotRuridit"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":2,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":8,"OreDict":""}]}]},{"questID":2331,"preRequisites":[2317,2321],"properties":{"betterquesting":{"snd_complete":"minecraft:entity.player.levelup","taskLogic":"AND","partySingleReward":0,"visibility":"NORMAL","isMain":1,"simultaneous":0,"icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11317,"OreDict":"ingotOsmiridium"},"snd_update":"minecraft:entity.player.levelup","repeatTime":-1,"globalShare":0,"questLogic":"AND","name":"Osmiridium","lockedProgress":0,"autoClaim":0,"isSilent":0,"desc":"Osmiridium is an quite expensive Alloy. You'll need it for Thaumcraft and in ZPM+ Voltages."}},"tasks":[{"partialMatch":1,"autoConsume":0,"groupDetect":0,"ignoreNBT":0,"index":0,"consume":0,"requiredItems":[{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":11317,"OreDict":"ingotOsmiridium"}],"taskID":"bq_standard:retrieval"}],"rewards":[{"rewardID":"bq_standard:item","index":0,"rewards":[{"id":"enhancedlootbags:lootbag","Count":1,"Damage":8,"OreDict":""}]}]}],"questLines":[{"quests":[{"sizeX":72,"x":0,"y":36,"id":0,"sizeY":72},{"sizeX":24,"x":120,"y":60,"id":1,"sizeY":24},{"sizeX":24,"x":84,"y":60,"id":2,"sizeY":24},{"sizeX":48,"x":252,"y":48,"id":3,"sizeY":48},{"sizeX":24,"x":216,"y":60,"id":4,"sizeY":24},{"sizeX":48,"x":324,"y":48,"id":5,"sizeY":48},{"sizeX":24,"x":408,"y":60,"id":6,"sizeY":24},{"sizeX":48,"x":480,"y":48,"id":7,"sizeY":48},{"sizeX":48,"x":324,"y":120,"id":8,"sizeY":48},{"sizeX":48,"x":324,"y":192,"id":9,"sizeY":48},{"sizeX":48,"x":204,"y":264,"id":10,"sizeY":48},{"sizeX":48,"x":252,"y":156,"id":11,"sizeY":48},{"sizeX":48,"x":300,"y":264,"id":12,"sizeY":48},{"sizeX":72,"x":468,"y":312,"id":13,"sizeY":72},{"sizeX":48,"x":12,"y":324,"id":14,"sizeY":48},{"sizeX":24,"x":216,"y":96,"id":440,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":442,"sizeY":24},{"sizeX":48,"x":396,"y":192,"id":444,"sizeY":48},{"sizeX":24,"x":204,"y":168,"id":446,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":448,"sizeY":24},{"sizeX":24,"x":204,"y":132,"id":450,"sizeY":24},{"sizeX":24,"x":408,"y":108,"id":469,"sizeY":24},{"sizeX":24,"x":444,"y":108,"id":470,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":471,"sizeY":24},{"sizeX":24,"x":408,"y":12,"id":484,"sizeY":24},{"sizeX":24,"x":240,"y":12,"id":865,"sizeY":24},{"sizeX":24,"x":288,"y":12,"id":946,"sizeY":24},{"sizeX":48,"x":156,"y":48,"id":1204,"sizeY":48},{"sizeX":24,"x":168,"y":276,"id":1475,"sizeY":24},{"sizeX":24,"x":168,"y":132,"id":1495,"sizeY":24},{"sizeX":24,"x":24,"y":120,"id":1500,"sizeY":24},{"sizeX":24,"x":24,"y":156,"id":1501,"sizeY":24},{"sizeX":24,"x":24,"y":0,"id":1834,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1841,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1842,"sizeY":24},{"sizeX":24,"x":132,"y":216,"id":1843,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":1844,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":1845,"sizeY":24},{"sizeX":24,"x":336,"y":12,"id":1849,"sizeY":24},{"sizeX":24,"x":408,"y":144,"id":1856,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":2145,"sizeY":24}],"lineID":0,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 0 - It begins","icon":{"id":"minecraft:bed","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The very first tier, tier zero. This chapter will introduce you to the basic mechanics of this modpack. Mods covered: Vanilla, Pam's Harvestcraft."}},"order":0},{"quests":[{"sizeX":72,"x":660,"y":144,"id":15,"sizeY":72},{"sizeX":48,"x":756,"y":156,"id":17,"sizeY":48},{"sizeX":48,"x":588,"y":156,"id":18,"sizeY":48},{"sizeX":24,"x":600,"y":228,"id":19,"sizeY":24},{"sizeX":24,"x":744,"y":120,"id":20,"sizeY":24},{"sizeX":24,"x":684,"y":228,"id":21,"sizeY":24},{"sizeX":24,"x":600,"y":264,"id":22,"sizeY":24},{"sizeX":24,"x":636,"y":264,"id":23,"sizeY":24},{"sizeX":48,"x":756,"y":252,"id":24,"sizeY":48},{"sizeX":24,"x":684,"y":264,"id":25,"sizeY":24},{"sizeX":24,"x":684,"y":300,"id":26,"sizeY":24},{"sizeX":48,"x":756,"y":492,"id":27,"sizeY":48},{"sizeX":24,"x":432,"y":504,"id":28,"sizeY":24},{"sizeX":24,"x":288,"y":504,"id":29,"sizeY":24},{"sizeX":48,"x":384,"y":336,"id":30,"sizeY":48},{"sizeX":48,"x":456,"y":336,"id":31,"sizeY":48},{"sizeX":24,"x":636,"y":300,"id":32,"sizeY":24},{"sizeX":48,"x":624,"y":336,"id":33,"sizeY":48},{"sizeX":24,"x":312,"y":384,"id":34,"sizeY":24},{"sizeX":48,"x":420,"y":156,"id":35,"sizeY":48},{"sizeX":48,"x":204,"y":168,"id":36,"sizeY":48},{"sizeX":48,"x":204,"y":408,"id":37,"sizeY":48},{"sizeX":24,"x":336,"y":264,"id":38,"sizeY":24},{"sizeX":24,"x":192,"y":240,"id":39,"sizeY":24},{"sizeX":72,"x":312,"y":0,"id":40,"sizeY":72},{"sizeX":48,"x":516,"y":156,"id":41,"sizeY":48},{"sizeX":48,"x":516,"y":336,"id":42,"sizeY":48},{"sizeX":24,"x":528,"y":264,"id":43,"sizeY":24},{"sizeX":48,"x":624,"y":408,"id":472,"sizeY":48},{"sizeX":24,"x":300,"y":264,"id":473,"sizeY":24},{"sizeX":48,"x":420,"y":408,"id":474,"sizeY":48},{"sizeX":24,"x":360,"y":504,"id":480,"sizeY":24},{"sizeX":24,"x":816,"y":288,"id":481,"sizeY":24},{"sizeX":24,"x":0,"y":156,"id":482,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":483,"sizeY":24},{"sizeX":24,"x":816,"y":240,"id":485,"sizeY":24},{"sizeX":24,"x":276,"y":180,"id":486,"sizeY":24},{"sizeX":24,"x":336,"y":132,"id":487,"sizeY":24},{"sizeX":24,"x":372,"y":132,"id":488,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":489,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":491,"sizeY":24},{"sizeX":24,"x":72,"y":156,"id":492,"sizeY":24},{"sizeX":24,"x":288,"y":468,"id":494,"sizeY":24},{"sizeX":24,"x":240,"y":240,"id":498,"sizeY":24},{"sizeX":24,"x":252,"y":468,"id":535,"sizeY":24},{"sizeX":24,"x":72,"y":228,"id":656,"sizeY":24},{"sizeX":24,"x":120,"y":228,"id":657,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":693,"sizeY":24},{"sizeX":24,"x":180,"y":84,"id":718,"sizeY":24},{"sizeX":24,"x":156,"y":240,"id":727,"sizeY":24},{"sizeX":24,"x":120,"y":276,"id":728,"sizeY":24},{"sizeX":24,"x":156,"y":276,"id":729,"sizeY":24},{"sizeX":24,"x":324,"y":504,"id":825,"sizeY":24},{"sizeX":24,"x":396,"y":504,"id":826,"sizeY":24},{"sizeX":24,"x":696,"y":348,"id":862,"sizeY":24},{"sizeX":24,"x":372,"y":264,"id":863,"sizeY":24},{"sizeX":24,"x":696,"y":420,"id":864,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":945,"sizeY":24},{"sizeX":24,"x":564,"y":264,"id":947,"sizeY":24},{"sizeX":24,"x":144,"y":84,"id":1085,"sizeY":24},{"sizeX":24,"x":144,"y":48,"id":1095,"sizeY":24},{"sizeX":24,"x":252,"y":504,"id":1129,"sizeY":24},{"sizeX":48,"x":420,"y":0,"id":1146,"sizeY":48},{"sizeX":24,"x":36,"y":156,"id":1476,"sizeY":24},{"sizeX":24,"x":432,"y":540,"id":1496,"sizeY":24},{"sizeX":24,"x":396,"y":540,"id":1497,"sizeY":24},{"sizeX":24,"x":360,"y":540,"id":1498,"sizeY":24},{"sizeX":24,"x":216,"y":84,"id":1504,"sizeY":24},{"sizeX":24,"x":684,"y":108,"id":1505,"sizeY":24},{"sizeX":24,"x":684,"y":72,"id":1506,"sizeY":24},{"sizeX":24,"x":108,"y":84,"id":1508,"sizeY":24},{"sizeX":24,"x":216,"y":48,"id":1546,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":1738,"sizeY":24},{"sizeX":24,"x":168,"y":420,"id":1790,"sizeY":24},{"sizeX":24,"x":72,"y":120,"id":1831,"sizeY":24},{"sizeX":24,"x":72,"y":84,"id":1851,"sizeY":24},{"sizeX":24,"x":0,"y":84,"id":1852,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1864,"sizeY":24},{"sizeX":24,"x":336,"y":348,"id":1866,"sizeY":24},{"sizeX":24,"x":276,"y":216,"id":1926,"sizeY":24}],"lineID":1,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 0.5 - Stone Age","icon":{"id":"IC2:itemToolBronzePickaxe","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Basically the \"Tier 0\" of all your progression. This set helps you through the first tier until you can build your first steam machine"}},"order":1},{"quests":[{"sizeX":24,"x":192,"y":648,"id":16,"sizeY":24},{"sizeX":72,"x":48,"y":72,"id":44,"sizeY":72},{"sizeX":48,"x":144,"y":84,"id":46,"sizeY":48},{"sizeX":24,"x":156,"y":48,"id":47,"sizeY":24},{"sizeX":48,"x":252,"y":84,"id":48,"sizeY":48},{"sizeX":48,"x":480,"y":84,"id":49,"sizeY":48},{"sizeX":48,"x":564,"y":84,"id":50,"sizeY":48},{"sizeX":48,"x":564,"y":336,"id":51,"sizeY":48},{"sizeX":48,"x":564,"y":216,"id":52,"sizeY":48},{"sizeX":48,"x":408,"y":432,"id":53,"sizeY":48},{"sizeX":48,"x":408,"y":240,"id":54,"sizeY":48},{"sizeX":24,"x":384,"y":180,"id":55,"sizeY":24},{"sizeX":24,"x":468,"y":444,"id":56,"sizeY":24},{"sizeX":24,"x":624,"y":372,"id":57,"sizeY":24},{"sizeX":24,"x":624,"y":72,"id":58,"sizeY":24},{"sizeX":24,"x":108,"y":156,"id":59,"sizeY":24},{"sizeX":24,"x":144,"y":192,"id":60,"sizeY":24},{"sizeX":24,"x":144,"y":156,"id":61,"sizeY":24},{"sizeX":24,"x":108,"y":192,"id":62,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":63,"sizeY":24},{"sizeX":24,"x":0,"y":60,"id":64,"sizeY":24},{"sizeX":48,"x":60,"y":540,"id":65,"sizeY":48},{"sizeX":48,"x":324,"y":648,"id":66,"sizeY":48},{"sizeX":48,"x":408,"y":648,"id":67,"sizeY":48},{"sizeX":48,"x":324,"y":720,"id":68,"sizeY":48},{"sizeX":48,"x":564,"y":648,"id":69,"sizeY":48},{"sizeX":72,"x":396,"y":792,"id":70,"sizeY":72},{"sizeX":48,"x":564,"y":804,"id":71,"sizeY":48},{"sizeX":48,"x":132,"y":804,"id":72,"sizeY":48},{"sizeX":48,"x":132,"y":648,"id":73,"sizeY":48},{"sizeX":24,"x":228,"y":648,"id":84,"sizeY":24},{"sizeX":24,"x":12,"y":552,"id":119,"sizeY":24},{"sizeX":48,"x":408,"y":540,"id":478,"sizeY":48},{"sizeX":48,"x":480,"y":540,"id":479,"sizeY":48},{"sizeX":48,"x":360,"y":84,"id":493,"sizeY":48},{"sizeX":24,"x":492,"y":180,"id":495,"sizeY":24},{"sizeX":48,"x":564,"y":540,"id":496,"sizeY":48},{"sizeX":24,"x":420,"y":504,"id":497,"sizeY":24},{"sizeX":24,"x":408,"y":612,"id":534,"sizeY":24},{"sizeX":24,"x":624,"y":660,"id":536,"sizeY":24},{"sizeX":24,"x":96,"y":648,"id":558,"sizeY":24},{"sizeX":48,"x":480,"y":336,"id":563,"sizeY":48},{"sizeX":24,"x":48,"y":480,"id":596,"sizeY":24},{"sizeX":24,"x":228,"y":684,"id":625,"sizeY":24},{"sizeX":24,"x":12,"y":600,"id":658,"sizeY":24},{"sizeX":48,"x":408,"y":336,"id":694,"sizeY":48},{"sizeX":24,"x":12,"y":516,"id":705,"sizeY":24},{"sizeX":48,"x":144,"y":312,"id":741,"sizeY":48},{"sizeX":24,"x":204,"y":360,"id":742,"sizeY":24},{"sizeX":24,"x":108,"y":360,"id":743,"sizeY":24},{"sizeX":24,"x":108,"y":324,"id":744,"sizeY":24},{"sizeX":48,"x":228,"y":720,"id":834,"sizeY":48},{"sizeX":48,"x":408,"y":720,"id":835,"sizeY":48},{"sizeX":24,"x":576,"y":144,"id":867,"sizeY":24},{"sizeX":24,"x":624,"y":120,"id":868,"sizeY":24},{"sizeX":24,"x":228,"y":612,"id":871,"sizeY":24},{"sizeX":24,"x":624,"y":528,"id":875,"sizeY":24},{"sizeX":24,"x":192,"y":684,"id":890,"sizeY":24},{"sizeX":24,"x":660,"y":660,"id":942,"sizeY":24},{"sizeX":24,"x":348,"y":252,"id":948,"sizeY":24},{"sizeX":24,"x":348,"y":288,"id":1008,"sizeY":24},{"sizeX":24,"x":348,"y":216,"id":1107,"sizeY":24},{"sizeX":24,"x":348,"y":180,"id":1108,"sizeY":24},{"sizeX":24,"x":468,"y":252,"id":1124,"sizeY":24},{"sizeX":24,"x":468,"y":216,"id":1125,"sizeY":24},{"sizeX":48,"x":144,"y":432,"id":1126,"sizeY":48},{"sizeX":24,"x":12,"y":480,"id":1127,"sizeY":24},{"sizeX":24,"x":576,"y":180,"id":1128,"sizeY":24},{"sizeX":24,"x":492,"y":288,"id":1130,"sizeY":24},{"sizeX":24,"x":468,"y":504,"id":1132,"sizeY":24},{"sizeX":24,"x":96,"y":480,"id":1133,"sizeY":24},{"sizeX":24,"x":624,"y":696,"id":1147,"sizeY":24},{"sizeX":24,"x":204,"y":324,"id":1151,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1156,"sizeY":24},{"sizeX":24,"x":660,"y":696,"id":1157,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1205,"sizeY":24},{"sizeX":24,"x":420,"y":180,"id":1507,"sizeY":24},{"sizeX":24,"x":624,"y":228,"id":1536,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":1735,"sizeY":24},{"sizeX":24,"x":624,"y":576,"id":1741,"sizeY":24},{"sizeX":24,"x":72,"y":684,"id":1789,"sizeY":24},{"sizeX":24,"x":456,"y":612,"id":1888,"sizeY":24},{"sizeX":24,"x":516,"y":504,"id":1908,"sizeY":24},{"sizeX":24,"x":624,"y":324,"id":1915,"sizeY":24},{"sizeX":24,"x":372,"y":444,"id":1919,"sizeY":24},{"sizeX":24,"x":48,"y":648,"id":1987,"sizeY":24},{"sizeX":24,"x":12,"y":648,"id":1988,"sizeY":24},{"sizeX":24,"x":348,"y":324,"id":2026,"sizeY":24},{"sizeX":24,"x":504,"y":612,"id":2056,"sizeY":24},{"sizeX":24,"x":12,"y":684,"id":2087,"sizeY":24},{"sizeX":24,"x":528,"y":216,"id":2140,"sizeY":24},{"sizeX":24,"x":420,"y":876,"id":2161,"sizeY":24}],"lineID":2,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 1 - Steam","icon":{"id":"minecraft:flint_and_steel","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Quest set for all steam-based machines."}},"order":2},{"quests":[{"sizeX":72,"x":324,"y":120,"id":88,"sizeY":72},{"sizeX":48,"x":336,"y":0,"id":90,"sizeY":48},{"sizeX":48,"x":240,"y":288,"id":91,"sizeY":48},{"sizeX":48,"x":516,"y":432,"id":92,"sizeY":48},{"sizeX":48,"x":336,"y":288,"id":93,"sizeY":48},{"sizeX":48,"x":540,"y":288,"id":94,"sizeY":48},{"sizeX":48,"x":432,"y":288,"id":95,"sizeY":48},{"sizeX":48,"x":264,"y":0,"id":96,"sizeY":48},{"sizeX":72,"x":504,"y":588,"id":97,"sizeY":72},{"sizeX":48,"x":432,"y":1020,"id":98,"sizeY":48},{"sizeX":24,"x":444,"y":252,"id":100,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":101,"sizeY":24},{"sizeX":48,"x":84,"y":1020,"id":102,"sizeY":48},{"sizeX":72,"x":96,"y":120,"id":103,"sizeY":72},{"sizeX":48,"x":24,"y":132,"id":104,"sizeY":48},{"sizeX":48,"x":432,"y":840,"id":105,"sizeY":48},{"sizeX":24,"x":432,"y":96,"id":113,"sizeY":24},{"sizeX":24,"x":468,"y":48,"id":114,"sizeY":24},{"sizeX":24,"x":432,"y":48,"id":115,"sizeY":24},{"sizeX":24,"x":384,"y":84,"id":116,"sizeY":24},{"sizeX":24,"x":588,"y":540,"id":117,"sizeY":24},{"sizeX":24,"x":468,"y":504,"id":118,"sizeY":24},{"sizeX":24,"x":588,"y":48,"id":120,"sizeY":24},{"sizeX":24,"x":588,"y":96,"id":121,"sizeY":24},{"sizeX":24,"x":636,"y":48,"id":122,"sizeY":24},{"sizeX":24,"x":636,"y":96,"id":123,"sizeY":24},{"sizeX":24,"x":684,"y":48,"id":124,"sizeY":24},{"sizeX":24,"x":684,"y":96,"id":125,"sizeY":24},{"sizeX":48,"x":600,"y":432,"id":529,"sizeY":48},{"sizeX":48,"x":684,"y":432,"id":530,"sizeY":48},{"sizeX":24,"x":660,"y":612,"id":531,"sizeY":24},{"sizeX":24,"x":528,"y":348,"id":532,"sizeY":24},{"sizeX":24,"x":528,"y":252,"id":533,"sizeY":24},{"sizeX":24,"x":348,"y":384,"id":538,"sizeY":24},{"sizeX":48,"x":360,"y":756,"id":539,"sizeY":48},{"sizeX":48,"x":0,"y":1020,"id":540,"sizeY":48},{"sizeX":48,"x":0,"y":288,"id":541,"sizeY":48},{"sizeX":48,"x":768,"y":132,"id":542,"sizeY":48},{"sizeX":72,"x":276,"y":744,"id":543,"sizeY":72},{"sizeX":24,"x":480,"y":348,"id":544,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":545,"sizeY":24},{"sizeX":24,"x":96,"y":492,"id":546,"sizeY":24},{"sizeX":48,"x":84,"y":600,"id":547,"sizeY":48},{"sizeX":24,"x":192,"y":612,"id":548,"sizeY":24},{"sizeX":24,"x":192,"y":648,"id":549,"sizeY":24},{"sizeX":48,"x":288,"y":840,"id":550,"sizeY":48},{"sizeX":24,"x":144,"y":900,"id":551,"sizeY":24},{"sizeX":24,"x":180,"y":900,"id":552,"sizeY":24},{"sizeX":48,"x":264,"y":72,"id":554,"sizeY":48},{"sizeX":24,"x":372,"y":816,"id":555,"sizeY":24},{"sizeX":48,"x":372,"y":468,"id":579,"sizeY":48},{"sizeX":48,"x":180,"y":0,"id":587,"sizeY":48},{"sizeX":48,"x":516,"y":996,"id":597,"sizeY":48},{"sizeX":48,"x":516,"y":924,"id":598,"sizeY":48},{"sizeX":24,"x":828,"y":828,"id":599,"sizeY":24},{"sizeX":48,"x":516,"y":840,"id":608,"sizeY":48},{"sizeX":48,"x":612,"y":924,"id":609,"sizeY":48},{"sizeX":24,"x":732,"y":1104,"id":611,"sizeY":24},{"sizeX":24,"x":732,"y":1140,"id":612,"sizeY":24},{"sizeX":24,"x":864,"y":1068,"id":613,"sizeY":24},{"sizeX":24,"x":828,"y":1068,"id":614,"sizeY":24},{"sizeX":48,"x":924,"y":1056,"id":615,"sizeY":48},{"sizeX":24,"x":624,"y":1068,"id":616,"sizeY":24},{"sizeX":24,"x":624,"y":1140,"id":617,"sizeY":24},{"sizeX":24,"x":732,"y":1068,"id":618,"sizeY":24},{"sizeX":48,"x":852,"y":1128,"id":619,"sizeY":48},{"sizeX":24,"x":660,"y":1008,"id":620,"sizeY":24},{"sizeX":24,"x":744,"y":1008,"id":621,"sizeY":24},{"sizeX":48,"x":768,"y":924,"id":622,"sizeY":48},{"sizeX":24,"x":780,"y":1044,"id":623,"sizeY":24},{"sizeX":48,"x":852,"y":996,"id":624,"sizeY":48},{"sizeX":24,"x":264,"y":1032,"id":626,"sizeY":24},{"sizeX":24,"x":156,"y":648,"id":639,"sizeY":24},{"sizeX":24,"x":168,"y":852,"id":640,"sizeY":24},{"sizeX":24,"x":204,"y":720,"id":641,"sizeY":24},{"sizeX":24,"x":120,"y":936,"id":642,"sizeY":24},{"sizeX":24,"x":204,"y":936,"id":643,"sizeY":24},{"sizeX":24,"x":300,"y":936,"id":644,"sizeY":24},{"sizeX":24,"x":588,"y":1008,"id":646,"sizeY":24},{"sizeX":24,"x":468,"y":576,"id":661,"sizeY":24},{"sizeX":48,"x":996,"y":1128,"id":662,"sizeY":48},{"sizeX":24,"x":1056,"y":1140,"id":663,"sizeY":24},{"sizeX":48,"x":924,"y":1128,"id":664,"sizeY":48},{"sizeX":48,"x":300,"y":468,"id":673,"sizeY":48},{"sizeX":48,"x":636,"y":252,"id":716,"sizeY":48},{"sizeX":72,"x":600,"y":744,"id":717,"sizeY":72},{"sizeX":24,"x":264,"y":708,"id":726,"sizeY":24},{"sizeX":48,"x":444,"y":756,"id":745,"sizeY":48},{"sizeX":48,"x":612,"y":840,"id":747,"sizeY":48},{"sizeX":48,"x":516,"y":756,"id":748,"sizeY":48},{"sizeX":24,"x":252,"y":348,"id":771,"sizeY":24},{"sizeX":48,"x":696,"y":756,"id":795,"sizeY":48},{"sizeX":48,"x":768,"y":840,"id":836,"sizeY":48},{"sizeX":24,"x":204,"y":852,"id":840,"sizeY":24},{"sizeX":24,"x":480,"y":252,"id":869,"sizeY":24},{"sizeX":24,"x":276,"y":384,"id":891,"sizeY":24},{"sizeX":24,"x":276,"y":420,"id":892,"sizeY":24},{"sizeX":24,"x":312,"y":384,"id":898,"sizeY":24},{"sizeX":24,"x":744,"y":444,"id":930,"sizeY":24},{"sizeX":24,"x":444,"y":1104,"id":962,"sizeY":24},{"sizeX":24,"x":492,"y":1104,"id":1035,"sizeY":24},{"sizeX":48,"x":24,"y":600,"id":1084,"sizeY":48},{"sizeX":24,"x":144,"y":492,"id":1090,"sizeY":24},{"sizeX":24,"x":120,"y":1104,"id":1091,"sizeY":24},{"sizeX":24,"x":192,"y":492,"id":1092,"sizeY":24},{"sizeX":24,"x":156,"y":1104,"id":1094,"sizeY":24},{"sizeX":24,"x":588,"y":504,"id":1131,"sizeY":24},{"sizeX":24,"x":576,"y":852,"id":1134,"sizeY":24},{"sizeX":24,"x":312,"y":420,"id":1135,"sizeY":24},{"sizeX":24,"x":468,"y":540,"id":1136,"sizeY":24},{"sizeX":24,"x":264,"y":480,"id":1149,"sizeY":24},{"sizeX":24,"x":264,"y":528,"id":1150,"sizeY":24},{"sizeX":24,"x":216,"y":528,"id":1152,"sizeY":24},{"sizeX":24,"x":216,"y":576,"id":1153,"sizeY":24},{"sizeX":24,"x":300,"y":528,"id":1154,"sizeY":24},{"sizeX":48,"x":288,"y":564,"id":1155,"sizeY":48},{"sizeX":24,"x":372,"y":888,"id":1160,"sizeY":24},{"sizeX":24,"x":648,"y":216,"id":1166,"sizeY":24},{"sizeX":48,"x":852,"y":924,"id":1167,"sizeY":48},{"sizeX":24,"x":780,"y":1008,"id":1168,"sizeY":24},{"sizeX":48,"x":996,"y":1056,"id":1172,"sizeY":48},{"sizeX":48,"x":108,"y":60,"id":1266,"sizeY":48},{"sizeX":24,"x":348,"y":348,"id":1273,"sizeY":24},{"sizeX":24,"x":384,"y":348,"id":1274,"sizeY":24},{"sizeX":24,"x":396,"y":1104,"id":1285,"sizeY":24},{"sizeX":24,"x":264,"y":660,"id":1485,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1499,"sizeY":24},{"sizeX":24,"x":588,"y":576,"id":1510,"sizeY":24},{"sizeX":24,"x":372,"y":852,"id":1519,"sizeY":24},{"sizeX":24,"x":48,"y":1104,"id":1528,"sizeY":24},{"sizeX":24,"x":408,"y":720,"id":1540,"sizeY":24},{"sizeX":48,"x":516,"y":672,"id":1549,"sizeY":48},{"sizeX":24,"x":504,"y":48,"id":1599,"sizeY":24},{"sizeX":24,"x":408,"y":684,"id":1613,"sizeY":24},{"sizeX":24,"x":84,"y":1104,"id":1653,"sizeY":24},{"sizeX":24,"x":408,"y":648,"id":1791,"sizeY":24},{"sizeX":24,"x":624,"y":576,"id":1792,"sizeY":24},{"sizeX":24,"x":828,"y":876,"id":1796,"sizeY":24},{"sizeX":24,"x":672,"y":888,"id":1821,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1846,"sizeY":24},{"sizeX":24,"x":384,"y":528,"id":1863,"sizeY":24},{"sizeX":24,"x":456,"y":612,"id":1865,"sizeY":24},{"sizeX":24,"x":444,"y":216,"id":1887,"sizeY":24},{"sizeX":24,"x":576,"y":684,"id":1918,"sizeY":24},{"sizeX":24,"x":252,"y":252,"id":2142,"sizeY":24},{"sizeX":48,"x":240,"y":192,"id":2143,"sizeY":48}],"lineID":3,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 2 - 32 EU (LV)","icon":{"id":"gregtech:gt.metaitem.01","Count":1,"Damage":17019,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The first \"voltage\" tier of this pack. Things are getting easier...\nBTW, if you can't see any quests, click in the quest window or use the mousewheel to zoom in and out. "}},"order":3},{"quests":[{"sizeX":24,"x":528,"y":204,"id":89,"sizeY":24},{"sizeX":48,"x":228,"y":420,"id":126,"sizeY":48},{"sizeX":24,"x":672,"y":348,"id":128,"sizeY":24},{"sizeX":24,"x":792,"y":312,"id":129,"sizeY":24},{"sizeX":24,"x":792,"y":264,"id":130,"sizeY":24},{"sizeX":24,"x":744,"y":264,"id":131,"sizeY":24},{"sizeX":24,"x":792,"y":228,"id":132,"sizeY":24},{"sizeX":24,"x":828,"y":312,"id":134,"sizeY":24},{"sizeX":24,"x":864,"y":312,"id":135,"sizeY":24},{"sizeX":24,"x":864,"y":264,"id":136,"sizeY":24},{"sizeX":24,"x":828,"y":264,"id":137,"sizeY":24},{"sizeX":24,"x":672,"y":228,"id":138,"sizeY":24},{"sizeX":24,"x":636,"y":192,"id":140,"sizeY":24},{"sizeX":24,"x":792,"y":192,"id":142,"sizeY":24},{"sizeX":24,"x":744,"y":228,"id":143,"sizeY":24},{"sizeX":24,"x":744,"y":192,"id":145,"sizeY":24},{"sizeX":24,"x":828,"y":156,"id":148,"sizeY":24},{"sizeX":24,"x":792,"y":156,"id":149,"sizeY":24},{"sizeX":24,"x":828,"y":192,"id":150,"sizeY":24},{"sizeX":24,"x":828,"y":120,"id":151,"sizeY":24},{"sizeX":24,"x":828,"y":84,"id":152,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":153,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":154,"sizeY":24},{"sizeX":24,"x":228,"y":192,"id":155,"sizeY":24},{"sizeX":24,"x":264,"y":192,"id":156,"sizeY":24},{"sizeX":24,"x":300,"y":192,"id":157,"sizeY":24},{"sizeX":24,"x":300,"y":228,"id":158,"sizeY":24},{"sizeX":24,"x":300,"y":156,"id":159,"sizeY":24},{"sizeX":24,"x":540,"y":600,"id":553,"sizeY":24},{"sizeX":24,"x":744,"y":312,"id":604,"sizeY":24},{"sizeX":24,"x":552,"y":492,"id":659,"sizeY":24},{"sizeX":24,"x":564,"y":540,"id":660,"sizeY":24},{"sizeX":24,"x":36,"y":348,"id":730,"sizeY":24},{"sizeX":24,"x":36,"y":384,"id":731,"sizeY":24},{"sizeX":24,"x":36,"y":444,"id":732,"sizeY":24},{"sizeX":24,"x":36,"y":528,"id":733,"sizeY":24},{"sizeX":24,"x":72,"y":528,"id":734,"sizeY":24},{"sizeX":24,"x":0,"y":528,"id":735,"sizeY":24},{"sizeX":24,"x":36,"y":600,"id":736,"sizeY":24},{"sizeX":48,"x":588,"y":480,"id":740,"sizeY":48},{"sizeX":48,"x":228,"y":924,"id":746,"sizeY":48},{"sizeX":48,"x":408,"y":516,"id":749,"sizeY":48},{"sizeX":72,"x":288,"y":660,"id":750,"sizeY":72},{"sizeX":48,"x":480,"y":588,"id":751,"sizeY":48},{"sizeX":48,"x":480,"y":924,"id":752,"sizeY":48},{"sizeX":72,"x":468,"y":660,"id":753,"sizeY":72},{"sizeX":48,"x":480,"y":516,"id":754,"sizeY":48},{"sizeX":24,"x":288,"y":468,"id":757,"sizeY":24},{"sizeX":24,"x":240,"y":372,"id":758,"sizeY":24},{"sizeX":48,"x":228,"y":672,"id":759,"sizeY":48},{"sizeX":48,"x":144,"y":180,"id":760,"sizeY":48},{"sizeX":24,"x":192,"y":684,"id":773,"sizeY":24},{"sizeX":24,"x":0,"y":408,"id":774,"sizeY":24},{"sizeX":24,"x":156,"y":684,"id":778,"sizeY":24},{"sizeX":24,"x":0,"y":444,"id":780,"sizeY":24},{"sizeX":48,"x":144,"y":84,"id":782,"sizeY":48},{"sizeX":48,"x":648,"y":924,"id":785,"sizeY":48},{"sizeX":48,"x":144,"y":0,"id":791,"sizeY":48},{"sizeX":48,"x":372,"y":84,"id":792,"sizeY":48},{"sizeX":48,"x":876,"y":0,"id":793,"sizeY":48},{"sizeX":48,"x":600,"y":0,"id":794,"sizeY":48},{"sizeX":48,"x":372,"y":0,"id":837,"sizeY":48},{"sizeX":72,"x":864,"y":912,"id":838,"sizeY":72},{"sizeX":24,"x":924,"y":876,"id":839,"sizeY":24},{"sizeX":24,"x":0,"y":600,"id":842,"sizeY":24},{"sizeX":24,"x":72,"y":636,"id":843,"sizeY":24},{"sizeX":24,"x":36,"y":636,"id":844,"sizeY":24},{"sizeX":24,"x":36,"y":684,"id":845,"sizeY":24},{"sizeX":48,"x":168,"y":504,"id":846,"sizeY":48},{"sizeX":48,"x":228,"y":588,"id":847,"sizeY":48},{"sizeX":24,"x":36,"y":732,"id":848,"sizeY":24},{"sizeX":24,"x":96,"y":684,"id":849,"sizeY":24},{"sizeX":24,"x":324,"y":516,"id":850,"sizeY":24},{"sizeX":24,"x":288,"y":516,"id":852,"sizeY":24},{"sizeX":48,"x":372,"y":420,"id":893,"sizeY":48},{"sizeX":24,"x":336,"y":432,"id":894,"sizeY":24},{"sizeX":48,"x":480,"y":420,"id":895,"sizeY":48},{"sizeX":48,"x":588,"y":420,"id":896,"sizeY":48},{"sizeX":48,"x":744,"y":420,"id":897,"sizeY":48},{"sizeX":24,"x":636,"y":384,"id":931,"sizeY":24},{"sizeX":24,"x":468,"y":120,"id":933,"sizeY":24},{"sizeX":24,"x":504,"y":120,"id":934,"sizeY":24},{"sizeX":24,"x":468,"y":156,"id":935,"sizeY":24},{"sizeX":24,"x":492,"y":756,"id":938,"sizeY":24},{"sizeX":24,"x":456,"y":756,"id":939,"sizeY":24},{"sizeX":24,"x":336,"y":468,"id":944,"sizeY":24},{"sizeX":48,"x":372,"y":672,"id":951,"sizeY":48},{"sizeX":24,"x":432,"y":636,"id":952,"sizeY":24},{"sizeX":24,"x":576,"y":684,"id":953,"sizeY":24},{"sizeX":48,"x":384,"y":792,"id":1013,"sizeY":48},{"sizeX":48,"x":384,"y":864,"id":1015,"sizeY":48},{"sizeX":48,"x":300,"y":864,"id":1020,"sizeY":48},{"sizeX":48,"x":300,"y":792,"id":1021,"sizeY":48},{"sizeX":48,"x":648,"y":480,"id":1081,"sizeY":48},{"sizeX":24,"x":312,"y":372,"id":1082,"sizeY":24},{"sizeX":24,"x":276,"y":372,"id":1083,"sizeY":24},{"sizeX":24,"x":108,"y":480,"id":1093,"sizeY":24},{"sizeX":72,"x":132,"y":324,"id":1148,"sizeY":72},{"sizeX":24,"x":660,"y":540,"id":1180,"sizeY":24},{"sizeX":24,"x":0,"y":684,"id":1226,"sizeY":24},{"sizeX":24,"x":312,"y":756,"id":1227,"sizeY":24},{"sizeX":24,"x":204,"y":288,"id":1267,"sizeY":24},{"sizeX":24,"x":240,"y":288,"id":1268,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":1269,"sizeY":24},{"sizeX":24,"x":672,"y":384,"id":1279,"sizeY":24},{"sizeX":24,"x":72,"y":408,"id":1320,"sizeY":24},{"sizeX":24,"x":0,"y":480,"id":1321,"sizeY":24},{"sizeX":24,"x":72,"y":480,"id":1322,"sizeY":24},{"sizeX":24,"x":36,"y":564,"id":1323,"sizeY":24},{"sizeX":24,"x":36,"y":780,"id":1324,"sizeY":24},{"sizeX":24,"x":576,"y":756,"id":1417,"sizeY":24},{"sizeX":48,"x":456,"y":228,"id":1477,"sizeY":48},{"sizeX":48,"x":372,"y":228,"id":1478,"sizeY":48},{"sizeX":24,"x":468,"y":192,"id":1482,"sizeY":24},{"sizeX":24,"x":540,"y":756,"id":1494,"sizeY":24},{"sizeX":24,"x":636,"y":228,"id":1518,"sizeY":24},{"sizeX":24,"x":660,"y":852,"id":1520,"sizeY":24},{"sizeX":24,"x":432,"y":684,"id":1524,"sizeY":24},{"sizeX":24,"x":672,"y":192,"id":1527,"sizeY":24},{"sizeX":24,"x":552,"y":636,"id":1537,"sizeY":24},{"sizeX":24,"x":132,"y":780,"id":1544,"sizeY":24},{"sizeX":24,"x":600,"y":384,"id":1547,"sizeY":24},{"sizeX":48,"x":648,"y":792,"id":1598,"sizeY":48},{"sizeX":24,"x":804,"y":432,"id":1614,"sizeY":24},{"sizeX":24,"x":636,"y":156,"id":1643,"sizeY":24},{"sizeX":24,"x":540,"y":432,"id":1736,"sizeY":24},{"sizeX":48,"x":228,"y":504,"id":1744,"sizeY":48},{"sizeX":24,"x":444,"y":876,"id":1819,"sizeY":24},{"sizeX":24,"x":852,"y":876,"id":1823,"sizeY":24},{"sizeX":24,"x":744,"y":348,"id":1835,"sizeY":24},{"sizeX":24,"x":528,"y":312,"id":1850,"sizeY":24},{"sizeX":48,"x":420,"y":336,"id":1867,"sizeY":48},{"sizeX":48,"x":600,"y":84,"id":1868,"sizeY":48},{"sizeX":24,"x":528,"y":240,"id":1869,"sizeY":24},{"sizeX":24,"x":564,"y":384,"id":1870,"sizeY":24},{"sizeX":24,"x":288,"y":600,"id":1872,"sizeY":24},{"sizeX":24,"x":324,"y":600,"id":1873,"sizeY":24},{"sizeX":24,"x":360,"y":600,"id":1874,"sizeY":24},{"sizeX":24,"x":708,"y":492,"id":1907,"sizeY":24},{"sizeX":24,"x":600,"y":540,"id":1910,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1911,"sizeY":24},{"sizeX":24,"x":372,"y":312,"id":1913,"sizeY":24},{"sizeX":24,"x":336,"y":312,"id":1914,"sizeY":24},{"sizeX":24,"x":384,"y":192,"id":1916,"sizeY":24},{"sizeX":24,"x":384,"y":156,"id":1917,"sizeY":24},{"sizeX":24,"x":696,"y":540,"id":2014,"sizeY":24},{"sizeX":24,"x":288,"y":432,"id":2043,"sizeY":24},{"sizeX":24,"x":708,"y":804,"id":2047,"sizeY":24},{"sizeX":24,"x":744,"y":156,"id":2086,"sizeY":24},{"sizeX":24,"x":528,"y":276,"id":2141,"sizeY":24},{"sizeX":24,"x":108,"y":444,"id":2253,"sizeY":24},{"sizeX":48,"x":516,"y":792,"id":2295,"sizeY":48}],"lineID":4,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 3 - 128 EU (MV)","icon":{"id":"IC2:itemPartCircuitAdv","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Your second voltage tier. Don't mix different voltage levels, or you will be punished in a hard way. Start thinking about how to expand your base. \nAgain, use mousewheel to zoom out to see quests."}},"order":4},{"quests":[{"sizeX":24,"x":420,"y":348,"id":133,"sizeY":24},{"sizeX":24,"x":744,"y":180,"id":141,"sizeY":24},{"sizeX":24,"x":648,"y":228,"id":144,"sizeY":24},{"sizeX":24,"x":648,"y":264,"id":146,"sizeY":24},{"sizeX":24,"x":444,"y":876,"id":147,"sizeY":24},{"sizeX":72,"x":456,"y":156,"id":160,"sizeY":72},{"sizeX":48,"x":552,"y":564,"id":162,"sizeY":48},{"sizeX":24,"x":780,"y":264,"id":163,"sizeY":24},{"sizeX":24,"x":696,"y":264,"id":165,"sizeY":24},{"sizeX":24,"x":612,"y":264,"id":166,"sizeY":24},{"sizeX":24,"x":504,"y":276,"id":167,"sizeY":24},{"sizeX":24,"x":696,"y":228,"id":168,"sizeY":24},{"sizeX":24,"x":744,"y":264,"id":169,"sizeY":24},{"sizeX":24,"x":780,"y":132,"id":170,"sizeY":24},{"sizeX":24,"x":360,"y":132,"id":171,"sizeY":24},{"sizeX":24,"x":312,"y":132,"id":172,"sizeY":24},{"sizeX":24,"x":264,"y":132,"id":173,"sizeY":24},{"sizeX":24,"x":228,"y":132,"id":174,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":175,"sizeY":24},{"sizeX":24,"x":360,"y":912,"id":557,"sizeY":24},{"sizeX":48,"x":300,"y":324,"id":769,"sizeY":48},{"sizeX":48,"x":300,"y":408,"id":770,"sizeY":48},{"sizeX":48,"x":216,"y":324,"id":772,"sizeY":48},{"sizeX":24,"x":312,"y":288,"id":789,"sizeY":24},{"sizeX":24,"x":312,"y":252,"id":790,"sizeY":24},{"sizeX":48,"x":432,"y":48,"id":808,"sizeY":48},{"sizeX":24,"x":360,"y":876,"id":841,"sizeY":24},{"sizeX":24,"x":324,"y":876,"id":851,"sizeY":24},{"sizeX":24,"x":360,"y":828,"id":853,"sizeY":24},{"sizeX":24,"x":252,"y":828,"id":854,"sizeY":24},{"sizeX":24,"x":312,"y":828,"id":855,"sizeY":24},{"sizeX":24,"x":444,"y":948,"id":856,"sizeY":24},{"sizeX":24,"x":360,"y":792,"id":857,"sizeY":24},{"sizeX":24,"x":252,"y":984,"id":858,"sizeY":24},{"sizeX":24,"x":480,"y":984,"id":859,"sizeY":24},{"sizeX":72,"x":732,"y":636,"id":860,"sizeY":72},{"sizeX":24,"x":504,"y":348,"id":932,"sizeY":24},{"sizeX":48,"x":300,"y":720,"id":943,"sizeY":48},{"sizeX":24,"x":744,"y":336,"id":987,"sizeY":24},{"sizeX":24,"x":816,"y":180,"id":988,"sizeY":24},{"sizeX":24,"x":648,"y":180,"id":989,"sizeY":24},{"sizeX":24,"x":744,"y":300,"id":990,"sizeY":24},{"sizeX":24,"x":744,"y":132,"id":998,"sizeY":24},{"sizeX":24,"x":744,"y":96,"id":999,"sizeY":24},{"sizeX":24,"x":648,"y":132,"id":1000,"sizeY":24},{"sizeX":24,"x":696,"y":132,"id":1001,"sizeY":24},{"sizeX":48,"x":648,"y":564,"id":1011,"sizeY":48},{"sizeX":48,"x":744,"y":564,"id":1012,"sizeY":48},{"sizeX":72,"x":48,"y":312,"id":1014,"sizeY":72},{"sizeX":48,"x":60,"y":564,"id":1016,"sizeY":48},{"sizeX":48,"x":60,"y":408,"id":1017,"sizeY":48},{"sizeX":48,"x":216,"y":564,"id":1018,"sizeY":48},{"sizeX":48,"x":60,"y":492,"id":1019,"sizeY":48},{"sizeX":24,"x":564,"y":72,"id":1137,"sizeY":24},{"sizeX":24,"x":564,"y":36,"id":1138,"sizeY":24},{"sizeX":24,"x":600,"y":72,"id":1139,"sizeY":24},{"sizeX":24,"x":600,"y":36,"id":1140,"sizeY":24},{"sizeX":24,"x":564,"y":0,"id":1141,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":1142,"sizeY":24},{"sizeX":24,"x":360,"y":72,"id":1143,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":1144,"sizeY":24},{"sizeX":24,"x":600,"y":0,"id":1145,"sizeY":24},{"sizeX":48,"x":552,"y":480,"id":1164,"sizeY":48},{"sizeX":48,"x":144,"y":564,"id":1221,"sizeY":48},{"sizeX":48,"x":60,"y":240,"id":1222,"sizeY":48},{"sizeX":48,"x":60,"y":168,"id":1225,"sizeY":48},{"sizeX":72,"x":456,"y":396,"id":1231,"sizeY":72},{"sizeX":72,"x":288,"y":552,"id":1232,"sizeY":72},{"sizeX":48,"x":300,"y":648,"id":1233,"sizeY":48},{"sizeX":24,"x":156,"y":624,"id":1235,"sizeY":24},{"sizeX":48,"x":144,"y":408,"id":1236,"sizeY":48},{"sizeX":48,"x":216,"y":168,"id":1237,"sizeY":48},{"sizeX":48,"x":216,"y":252,"id":1238,"sizeY":48},{"sizeX":48,"x":144,"y":324,"id":1239,"sizeY":48},{"sizeX":48,"x":144,"y":168,"id":1240,"sizeY":48},{"sizeX":24,"x":540,"y":348,"id":1271,"sizeY":24},{"sizeX":24,"x":420,"y":444,"id":1289,"sizeY":24},{"sizeX":24,"x":396,"y":72,"id":1403,"sizeY":24},{"sizeX":24,"x":540,"y":276,"id":1404,"sizeY":24},{"sizeX":24,"x":816,"y":660,"id":1405,"sizeY":24},{"sizeX":24,"x":288,"y":876,"id":1411,"sizeY":24},{"sizeX":24,"x":612,"y":492,"id":1420,"sizeY":24},{"sizeX":48,"x":648,"y":648,"id":1424,"sizeY":48},{"sizeX":24,"x":612,"y":228,"id":1502,"sizeY":24},{"sizeX":24,"x":816,"y":216,"id":1509,"sizeY":24},{"sizeX":24,"x":504,"y":312,"id":1517,"sizeY":24},{"sizeX":24,"x":612,"y":420,"id":1521,"sizeY":24},{"sizeX":24,"x":780,"y":300,"id":1526,"sizeY":24},{"sizeX":24,"x":360,"y":384,"id":1529,"sizeY":24},{"sizeX":72,"x":540,"y":636,"id":1612,"sizeY":72},{"sizeX":24,"x":240,"y":732,"id":1615,"sizeY":24},{"sizeX":24,"x":180,"y":732,"id":1617,"sizeY":24},{"sizeX":24,"x":120,"y":780,"id":1620,"sizeY":24},{"sizeX":24,"x":120,"y":732,"id":1621,"sizeY":24},{"sizeX":24,"x":120,"y":828,"id":1622,"sizeY":24},{"sizeX":24,"x":264,"y":660,"id":1655,"sizeY":24},{"sizeX":24,"x":120,"y":876,"id":1660,"sizeY":24},{"sizeX":24,"x":216,"y":780,"id":1661,"sizeY":24},{"sizeX":24,"x":168,"y":780,"id":1662,"sizeY":24},{"sizeX":24,"x":168,"y":828,"id":1663,"sizeY":24},{"sizeX":24,"x":168,"y":876,"id":1664,"sizeY":24},{"sizeX":24,"x":108,"y":624,"id":1713,"sizeY":24},{"sizeX":24,"x":60,"y":624,"id":1714,"sizeY":24},{"sizeX":24,"x":648,"y":312,"id":1739,"sizeY":24},{"sizeX":24,"x":612,"y":132,"id":1811,"sizeY":24},{"sizeX":48,"x":396,"y":720,"id":1812,"sizeY":48},{"sizeX":48,"x":432,"y":648,"id":1813,"sizeY":48},{"sizeX":48,"x":432,"y":564,"id":1814,"sizeY":48},{"sizeX":24,"x":420,"y":312,"id":1815,"sizeY":24},{"sizeX":24,"x":756,"y":720,"id":1824,"sizeY":24},{"sizeX":24,"x":780,"y":216,"id":1858,"sizeY":24},{"sizeX":24,"x":456,"y":348,"id":1871,"sizeY":24},{"sizeX":24,"x":0,"y":228,"id":1876,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1877,"sizeY":24},{"sizeX":48,"x":300,"y":480,"id":1903,"sizeY":48},{"sizeX":24,"x":0,"y":276,"id":1906,"sizeY":24},{"sizeX":24,"x":456,"y":312,"id":1909,"sizeY":24},{"sizeX":48,"x":504,"y":48,"id":1921,"sizeY":48},{"sizeX":24,"x":324,"y":72,"id":1922,"sizeY":24},{"sizeX":24,"x":324,"y":36,"id":1923,"sizeY":24},{"sizeX":24,"x":324,"y":0,"id":1924,"sizeY":24},{"sizeX":24,"x":360,"y":252,"id":2069,"sizeY":24},{"sizeX":24,"x":324,"y":948,"id":2293,"sizeY":24}],"lineID":5,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 4 - 512 EU (HV)","icon":{"id":"Avaritia:Dire_Crafting","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Finally some power to work with. This tier will help you reach distant planets and gather more rare resources to build even more advanced machines."}},"order":5},{"quests":[{"sizeX":72,"x":456,"y":420,"id":176,"sizeY":72},{"sizeX":48,"x":396,"y":564,"id":186,"sizeY":48},{"sizeX":24,"x":456,"y":528,"id":187,"sizeY":24},{"sizeX":48,"x":384,"y":468,"id":188,"sizeY":48},{"sizeX":48,"x":624,"y":432,"id":189,"sizeY":48},{"sizeX":48,"x":696,"y":432,"id":190,"sizeY":48},{"sizeX":24,"x":756,"y":528,"id":191,"sizeY":24},{"sizeX":24,"x":792,"y":528,"id":192,"sizeY":24},{"sizeX":48,"x":696,"y":516,"id":193,"sizeY":48},{"sizeX":24,"x":708,"y":360,"id":194,"sizeY":24},{"sizeX":24,"x":708,"y":396,"id":195,"sizeY":24},{"sizeX":24,"x":756,"y":444,"id":196,"sizeY":24},{"sizeX":24,"x":756,"y":396,"id":197,"sizeY":24},{"sizeX":24,"x":792,"y":576,"id":198,"sizeY":24},{"sizeX":24,"x":660,"y":312,"id":199,"sizeY":24},{"sizeX":24,"x":660,"y":276,"id":200,"sizeY":24},{"sizeX":24,"x":708,"y":312,"id":206,"sizeY":24},{"sizeX":24,"x":636,"y":612,"id":207,"sizeY":24},{"sizeX":24,"x":636,"y":576,"id":208,"sizeY":24},{"sizeX":24,"x":636,"y":648,"id":209,"sizeY":24},{"sizeX":24,"x":600,"y":612,"id":210,"sizeY":24},{"sizeX":24,"x":636,"y":540,"id":211,"sizeY":24},{"sizeX":24,"x":540,"y":336,"id":212,"sizeY":24},{"sizeX":24,"x":348,"y":264,"id":805,"sizeY":24},{"sizeX":24,"x":312,"y":264,"id":806,"sizeY":24},{"sizeX":24,"x":276,"y":224,"id":807,"sizeY":24},{"sizeX":72,"x":396,"y":768,"id":861,"sizeY":72},{"sizeX":24,"x":744,"y":276,"id":936,"sizeY":24},{"sizeX":24,"x":744,"y":240,"id":937,"sizeY":24},{"sizeX":24,"x":780,"y":276,"id":1003,"sizeY":24},{"sizeX":24,"x":780,"y":240,"id":1004,"sizeY":24},{"sizeX":24,"x":540,"y":504,"id":1005,"sizeY":24},{"sizeX":48,"x":204,"y":144,"id":1223,"sizeY":48},{"sizeX":48,"x":468,"y":144,"id":1224,"sizeY":48},{"sizeX":48,"x":576,"y":144,"id":1228,"sizeY":48},{"sizeX":48,"x":468,"y":324,"id":1229,"sizeY":48},{"sizeX":48,"x":468,"y":252,"id":1230,"sizeY":48},{"sizeX":48,"x":384,"y":144,"id":1234,"sizeY":48},{"sizeX":24,"x":276,"y":372,"id":1241,"sizeY":24},{"sizeX":24,"x":540,"y":372,"id":1242,"sizeY":24},{"sizeX":48,"x":324,"y":636,"id":1243,"sizeY":48},{"sizeX":48,"x":396,"y":636,"id":1244,"sizeY":48},{"sizeX":48,"x":384,"y":312,"id":1245,"sizeY":48},{"sizeX":48,"x":204,"y":252,"id":1246,"sizeY":48},{"sizeX":48,"x":204,"y":312,"id":1247,"sizeY":48},{"sizeX":48,"x":204,"y":12,"id":1248,"sizeY":48},{"sizeX":48,"x":312,"y":144,"id":1249,"sizeY":48},{"sizeX":48,"x":380,"y":12,"id":1250,"sizeY":48},{"sizeX":72,"x":456,"y":0,"id":1251,"sizeY":72},{"sizeX":24,"x":312,"y":372,"id":1252,"sizeY":24},{"sizeX":48,"x":572,"y":12,"id":1261,"sizeY":48},{"sizeX":24,"x":708,"y":276,"id":1262,"sizeY":24},{"sizeX":24,"x":708,"y":240,"id":1263,"sizeY":24},{"sizeX":24,"x":708,"y":204,"id":1264,"sizeY":24},{"sizeX":24,"x":660,"y":240,"id":1265,"sizeY":24},{"sizeX":48,"x":384,"y":252,"id":1406,"sizeY":48},{"sizeX":24,"x":276,"y":264,"id":1407,"sizeY":24},{"sizeX":24,"x":384,"y":720,"id":1408,"sizeY":24},{"sizeX":24,"x":396,"y":528,"id":1415,"sizeY":24},{"sizeX":24,"x":336,"y":720,"id":1416,"sizeY":24},{"sizeX":24,"x":336,"y":792,"id":1418,"sizeY":24},{"sizeX":48,"x":324,"y":564,"id":1461,"sizeY":48},{"sizeX":24,"x":540,"y":420,"id":1474,"sizeY":24},{"sizeX":24,"x":348,"y":372,"id":1480,"sizeY":24},{"sizeX":24,"x":792,"y":612,"id":1481,"sizeY":24},{"sizeX":24,"x":540,"y":468,"id":1525,"sizeY":24},{"sizeX":24,"x":360,"y":528,"id":1656,"sizeY":24},{"sizeX":24,"x":324,"y":528,"id":1657,"sizeY":24},{"sizeX":24,"x":324,"y":492,"id":1658,"sizeY":24},{"sizeX":24,"x":288,"y":492,"id":1659,"sizeY":24},{"sizeX":24,"x":480,"y":792,"id":1847,"sizeY":24},{"sizeX":24,"x":108,"y":168,"id":1878,"sizeY":24},{"sizeX":24,"x":0,"y":168,"id":1879,"sizeY":24},{"sizeX":24,"x":48,"y":168,"id":1880,"sizeY":24},{"sizeX":48,"x":468,"y":636,"id":1891,"sizeY":48},{"sizeX":24,"x":756,"y":576,"id":1898,"sizeY":24},{"sizeX":24,"x":708,"y":576,"id":1899,"sizeY":24},{"sizeX":24,"x":708,"y":612,"id":1900,"sizeY":24},{"sizeX":24,"x":756,"y":612,"id":1901,"sizeY":24},{"sizeX":24,"x":660,"y":396,"id":1902,"sizeY":24},{"sizeX":48,"x":300,"y":312,"id":1925,"sizeY":48},{"sizeX":48,"x":468,"y":560,"id":2018,"sizeY":48},{"sizeX":48,"x":540,"y":636,"id":2023,"sizeY":48},{"sizeX":24,"x":588,"y":468,"id":2210,"sizeY":24},{"sizeX":24,"x":396,"y":372,"id":2294,"sizeY":24},{"sizeX":48,"x":0,"y":324,"id":2296,"sizeY":48},{"sizeX":48,"x":0,"y":432,"id":2297,"sizeY":48},{"sizeX":48,"x":0,"y":564,"id":2298,"sizeY":48},{"sizeX":48,"x":108,"y":468,"id":2299,"sizeY":48},{"sizeX":48,"x":228,"y":432,"id":2300,"sizeY":48},{"sizeX":48,"x":108,"y":396,"id":2301,"sizeY":48},{"sizeX":48,"x":228,"y":564,"id":2302,"sizeY":48}],"lineID":6,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 5 - 2048 EU (EV)","icon":{"id":"IC2:blockGenerator","Count":1,"Damage":5,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Titanium level, fissile energy sources, Applied Energistics 2."}},"order":6},{"quests":[{"sizeX":72,"x":456,"y":384,"id":213,"sizeY":72},{"sizeX":48,"x":468,"y":660,"id":214,"sizeY":48},{"sizeX":72,"x":456,"y":480,"id":215,"sizeY":72},{"sizeX":24,"x":1116,"y":480,"id":216,"sizeY":24},{"sizeX":24,"x":528,"y":672,"id":217,"sizeY":24},{"sizeX":24,"x":528,"y":624,"id":218,"sizeY":24},{"sizeX":24,"x":684,"y":300,"id":219,"sizeY":24},{"sizeX":24,"x":684,"y":264,"id":220,"sizeY":24},{"sizeX":24,"x":720,"y":264,"id":221,"sizeY":24},{"sizeX":24,"x":720,"y":300,"id":222,"sizeY":24},{"sizeX":24,"x":756,"y":264,"id":223,"sizeY":24},{"sizeX":24,"x":336,"y":816,"id":1006,"sizeY":24},{"sizeX":24,"x":432,"y":816,"id":1007,"sizeY":24},{"sizeX":24,"x":528,"y":276,"id":1409,"sizeY":24},{"sizeX":24,"x":528,"y":348,"id":1410,"sizeY":24},{"sizeX":72,"x":348,"y":384,"id":1413,"sizeY":72},{"sizeX":72,"x":252,"y":480,"id":1414,"sizeY":72},{"sizeX":72,"x":696,"y":588,"id":1491,"sizeY":72},{"sizeX":24,"x":528,"y":312,"id":1522,"sizeY":24},{"sizeX":48,"x":360,"y":588,"id":1533,"sizeY":48},{"sizeX":48,"x":564,"y":588,"id":1534,"sizeY":48},{"sizeX":48,"x":264,"y":600,"id":1538,"sizeY":48},{"sizeX":48,"x":360,"y":492,"id":1539,"sizeY":48},{"sizeX":72,"x":1032,"y":456,"id":1665,"sizeY":72},{"sizeX":48,"x":492,"y":744,"id":1666,"sizeY":48},{"sizeX":48,"x":264,"y":744,"id":1667,"sizeY":48},{"sizeX":48,"x":84,"y":492,"id":1669,"sizeY":48},{"sizeX":48,"x":264,"y":924,"id":1670,"sizeY":48},{"sizeX":48,"x":84,"y":924,"id":1671,"sizeY":48},{"sizeX":24,"x":516,"y":936,"id":1672,"sizeY":24},{"sizeX":48,"x":84,"y":612,"id":1673,"sizeY":48},{"sizeX":24,"x":60,"y":576,"id":1674,"sizeY":24},{"sizeX":48,"x":0,"y":492,"id":1675,"sizeY":48},{"sizeX":48,"x":0,"y":396,"id":1676,"sizeY":48},{"sizeX":48,"x":84,"y":396,"id":1677,"sizeY":48},{"sizeX":48,"x":180,"y":276,"id":1678,"sizeY":48},{"sizeX":48,"x":84,"y":276,"id":1679,"sizeY":48},{"sizeX":48,"x":768,"y":180,"id":1691,"sizeY":48},{"sizeX":48,"x":768,"y":0,"id":1692,"sizeY":48},{"sizeX":48,"x":864,"y":0,"id":1693,"sizeY":48},{"sizeX":48,"x":1068,"y":0,"id":1694,"sizeY":48},{"sizeX":48,"x":1248,"y":0,"id":1695,"sizeY":48},{"sizeX":48,"x":864,"y":264,"id":1696,"sizeY":48},{"sizeX":48,"x":1248,"y":924,"id":1697,"sizeY":48},{"sizeX":48,"x":1164,"y":180,"id":1698,"sizeY":48},{"sizeX":48,"x":984,"y":72,"id":1699,"sizeY":48},{"sizeX":48,"x":984,"y":180,"id":1700,"sizeY":48},{"sizeX":48,"x":864,"y":180,"id":1701,"sizeY":48},{"sizeX":48,"x":1092,"y":264,"id":1702,"sizeY":48},{"sizeX":48,"x":984,"y":264,"id":1703,"sizeY":48},{"sizeX":48,"x":984,"y":360,"id":1704,"sizeY":48},{"sizeX":48,"x":264,"y":276,"id":1705,"sizeY":48},{"sizeX":48,"x":360,"y":276,"id":1706,"sizeY":48},{"sizeX":48,"x":468,"y":276,"id":1707,"sizeY":48},{"sizeX":24,"x":60,"y":672,"id":1712,"sizeY":24},{"sizeX":48,"x":192,"y":672,"id":1715,"sizeY":48},{"sizeX":48,"x":192,"y":576,"id":1716,"sizeY":48},{"sizeX":48,"x":192,"y":744,"id":1717,"sizeY":48},{"sizeX":24,"x":480,"y":348,"id":1718,"sizeY":24},{"sizeX":24,"x":516,"y":864,"id":1719,"sizeY":24},{"sizeX":48,"x":264,"y":396,"id":1890,"sizeY":48},{"sizeX":24,"x":204,"y":828,"id":1896,"sizeY":24},{"sizeX":24,"x":204,"y":876,"id":1897,"sizeY":24},{"sizeX":24,"x":144,"y":408,"id":2148,"sizeY":24},{"sizeX":24,"x":180,"y":408,"id":2149,"sizeY":24},{"sizeX":24,"x":180,"y":444,"id":2150,"sizeY":24},{"sizeX":48,"x":720,"y":396,"id":2303,"sizeY":48},{"sizeX":48,"x":864,"y":360,"id":2304,"sizeY":48},{"sizeX":48,"x":864,"y":432,"id":2305,"sizeY":48},{"sizeX":48,"x":864,"y":672,"id":2306,"sizeY":48},{"sizeX":48,"x":792,"y":864,"id":2307,"sizeY":48},{"sizeX":48,"x":720,"y":480,"id":2308,"sizeY":48},{"sizeX":48,"x":612,"y":396,"id":2309,"sizeY":48},{"sizeX":48,"x":612,"y":480,"id":2310,"sizeY":48},{"sizeX":48,"x":360,"y":660,"id":2311,"sizeY":48},{"sizeX":48,"x":972,"y":672,"id":2312,"sizeY":48},{"sizeX":48,"x":972,"y":756,"id":2313,"sizeY":48},{"sizeX":48,"x":864,"y":756,"id":2314,"sizeY":48},{"sizeX":48,"x":972,"y":588,"id":2315,"sizeY":48},{"sizeX":48,"x":1044,"y":756,"id":2316,"sizeY":48},{"sizeX":48,"x":1044,"y":588,"id":2317,"sizeY":48},{"sizeX":48,"x":864,"y":864,"id":2318,"sizeY":48},{"sizeX":48,"x":1116,"y":756,"id":2319,"sizeY":48},{"sizeX":48,"x":1176,"y":588,"id":2321,"sizeY":48},{"sizeX":48,"x":792,"y":432,"id":2322,"sizeY":48},{"sizeX":48,"x":792,"y":528,"id":2323,"sizeY":48},{"sizeX":48,"x":792,"y":612,"id":2324,"sizeY":48},{"sizeX":48,"x":792,"y":708,"id":2325,"sizeY":48},{"sizeX":48,"x":792,"y":792,"id":2326,"sizeY":48},{"sizeX":48,"x":708,"y":864,"id":2327,"sizeY":48},{"sizeX":48,"x":612,"y":864,"id":2328,"sizeY":48},{"sizeX":72,"x":600,"y":744,"id":2329,"sizeY":72},{"sizeX":72,"x":1164,"y":852,"id":2330,"sizeY":72},{"sizeX":72,"x":1032,"y":660,"id":2331,"sizeY":72}],"lineID":7,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 6 - 8192 EU (IV)","icon":{"id":"GalacticraftMars:item.itemTier3Rocket","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Tungsten level, Asteriod dims, assembly line"}},"order":7},{"quests":[{"sizeX":24,"x":108,"y":48,"id":201,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":202,"sizeY":24},{"sizeX":48,"x":312,"y":96,"id":1489,"sizeY":48},{"sizeX":48,"x":240,"y":96,"id":1490,"sizeY":48},{"sizeX":72,"x":300,"y":0,"id":1493,"sizeY":72},{"sizeX":24,"x":180,"y":48,"id":1680,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":1681,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1682,"sizeY":24},{"sizeX":48,"x":240,"y":168,"id":1683,"sizeY":48},{"sizeX":24,"x":180,"y":252,"id":1684,"sizeY":24},{"sizeX":48,"x":240,"y":240,"id":1685,"sizeY":48},{"sizeX":24,"x":180,"y":180,"id":1686,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1687,"sizeY":24},{"sizeX":24,"x":180,"y":216,"id":1688,"sizeY":24},{"sizeX":48,"x":168,"y":96,"id":1689,"sizeY":48},{"sizeX":24,"x":108,"y":180,"id":1708,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1709,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":1710,"sizeY":24},{"sizeX":24,"x":324,"y":288,"id":1711,"sizeY":24},{"sizeX":24,"x":396,"y":60,"id":1720,"sizeY":24},{"sizeX":24,"x":432,"y":60,"id":1721,"sizeY":24},{"sizeX":48,"x":384,"y":96,"id":1722,"sizeY":48},{"sizeX":24,"x":384,"y":24,"id":2024,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":2041,"sizeY":24},{"sizeX":24,"x":252,"y":60,"id":2071,"sizeY":24}],"lineID":8,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Tier 7 - 32768 EU (LuV)","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1170,"OreDict":""},"bg_image":"","bg_size":256,"desc":"If you have made it this far, you should walk with your head held high - you are at the start of the lategame. Endgame is still a long road ahead of you, but you are now an expert at GTNH and most of the mods it comes with. Congrats, and be proud of your Big Dick Energy."}},"order":8},{"quests":[{"sizeX":48,"x":108,"y":84,"id":1197,"sizeY":48},{"sizeX":48,"x":228,"y":168,"id":1198,"sizeY":48},{"sizeX":48,"x":108,"y":168,"id":1199,"sizeY":48},{"sizeX":24,"x":24,"y":84,"id":1200,"sizeY":24},{"sizeX":24,"x":24,"y":120,"id":1201,"sizeY":24},{"sizeX":48,"x":228,"y":96,"id":1202,"sizeY":48},{"sizeX":48,"x":228,"y":12,"id":1203,"sizeY":48},{"sizeX":72,"x":0,"y":0,"id":1212,"sizeY":72},{"sizeX":48,"x":108,"y":12,"id":1213,"sizeY":48}],"lineID":9,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Fusion","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1193,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Making power for the lategame tiers, LuV-UMV"}},"order":9},{"quests":[{"sizeX":24,"x":306,"y":36,"id":627,"sizeY":24},{"sizeX":24,"x":342,"y":0,"id":628,"sizeY":24},{"sizeX":24,"x":378,"y":36,"id":629,"sizeY":24},{"sizeX":24,"x":504,"y":108,"id":630,"sizeY":24},{"sizeX":24,"x":342,"y":36,"id":631,"sizeY":24},{"sizeX":24,"x":468,"y":108,"id":632,"sizeY":24},{"sizeX":24,"x":468,"y":72,"id":633,"sizeY":24},{"sizeX":24,"x":270,"y":36,"id":634,"sizeY":24},{"sizeX":24,"x":270,"y":72,"id":635,"sizeY":24},{"sizeX":24,"x":270,"y":144,"id":636,"sizeY":24},{"sizeX":24,"x":270,"y":108,"id":637,"sizeY":24},{"sizeX":24,"x":270,"y":180,"id":638,"sizeY":24},{"sizeX":24,"x":342,"y":180,"id":665,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":718,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":719,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":720,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":721,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":722,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":723,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":724,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":725,"sizeY":24},{"sizeX":24,"x":504,"y":72,"id":1009,"sizeY":24},{"sizeX":24,"x":426,"y":72,"id":1010,"sizeY":24},{"sizeX":24,"x":270,"y":228,"id":1086,"sizeY":24},{"sizeX":24,"x":306,"y":180,"id":1087,"sizeY":24},{"sizeX":24,"x":342,"y":228,"id":1088,"sizeY":24},{"sizeX":24,"x":306,"y":228,"id":1089,"sizeY":24},{"sizeX":24,"x":426,"y":132,"id":1178,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1270,"sizeY":24},{"sizeX":24,"x":342,"y":72,"id":1272,"sizeY":24},{"sizeX":24,"x":378,"y":108,"id":1275,"sizeY":24},{"sizeX":24,"x":378,"y":72,"id":1276,"sizeY":24},{"sizeX":24,"x":552,"y":36,"id":1277,"sizeY":24},{"sizeX":24,"x":342,"y":108,"id":1278,"sizeY":24},{"sizeX":24,"x":552,"y":72,"id":1280,"sizeY":24},{"sizeX":24,"x":552,"y":108,"id":1281,"sizeY":24},{"sizeX":24,"x":588,"y":36,"id":1282,"sizeY":24},{"sizeX":24,"x":624,"y":36,"id":1283,"sizeY":24},{"sizeX":24,"x":624,"y":0,"id":1284,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1288,"sizeY":24},{"sizeX":24,"x":354,"y":366,"id":1483,"sizeY":24},{"sizeX":24,"x":402,"y":318,"id":1484,"sizeY":24},{"sizeX":24,"x":450,"y":366,"id":1486,"sizeY":24},{"sizeX":24,"x":498,"y":318,"id":1487,"sizeY":24},{"sizeX":24,"x":546,"y":366,"id":1488,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1541,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1542,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1543,"sizeY":24},{"sizeX":24,"x":270,"y":0,"id":1560,"sizeY":24},{"sizeX":24,"x":126,"y":228,"id":1600,"sizeY":24},{"sizeX":24,"x":180,"y":228,"id":1601,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1602,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1603,"sizeY":24},{"sizeX":24,"x":108,"y":300,"id":1604,"sizeY":24},{"sizeX":24,"x":180,"y":300,"id":1605,"sizeY":24},{"sizeX":24,"x":144,"y":300,"id":1606,"sizeY":24},{"sizeX":24,"x":126,"y":336,"id":1607,"sizeY":24},{"sizeX":24,"x":0,"y":264,"id":1737,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1793,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1794,"sizeY":24},{"sizeX":24,"x":180,"y":264,"id":1795,"sizeY":24},{"sizeX":24,"x":72,"y":300,"id":1797,"sizeY":24},{"sizeX":24,"x":36,"y":336,"id":1798,"sizeY":24},{"sizeX":24,"x":36,"y":372,"id":1799,"sizeY":24},{"sizeX":24,"x":0,"y":372,"id":1800,"sizeY":24},{"sizeX":24,"x":0,"y":336,"id":1801,"sizeY":24},{"sizeX":24,"x":108,"y":372,"id":1802,"sizeY":24},{"sizeX":24,"x":180,"y":336,"id":1803,"sizeY":24},{"sizeX":24,"x":216,"y":336,"id":1804,"sizeY":24},{"sizeX":24,"x":144,"y":408,"id":1805,"sizeY":24},{"sizeX":24,"x":72,"y":372,"id":1806,"sizeY":24},{"sizeX":24,"x":252,"y":408,"id":1807,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1808,"sizeY":24},{"sizeX":24,"x":0,"y":408,"id":1809,"sizeY":24},{"sizeX":24,"x":378,"y":180,"id":1836,"sizeY":24},{"sizeX":24,"x":306,"y":144,"id":1854,"sizeY":24},{"sizeX":24,"x":306,"y":108,"id":1855,"sizeY":24},{"sizeX":24,"x":342,"y":144,"id":1857,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1862,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1920,"sizeY":24},{"sizeX":24,"x":36,"y":408,"id":1927,"sizeY":24},{"sizeX":24,"x":72,"y":408,"id":1928,"sizeY":24},{"sizeX":24,"x":108,"y":408,"id":1929,"sizeY":24},{"sizeX":24,"x":216,"y":408,"id":1930,"sizeY":24},{"sizeX":24,"x":36,"y":300,"id":1931,"sizeY":24},{"sizeX":24,"x":180,"y":408,"id":1932,"sizeY":24},{"sizeX":24,"x":0,"y":300,"id":1933,"sizeY":24},{"sizeX":24,"x":216,"y":372,"id":1949,"sizeY":24},{"sizeX":24,"x":252,"y":372,"id":1950,"sizeY":24},{"sizeX":24,"x":288,"y":408,"id":1951,"sizeY":24},{"sizeX":24,"x":72,"y":264,"id":2048,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":2264,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":2265,"sizeY":24},{"sizeX":24,"x":36,"y":264,"id":2266,"sizeY":24}],"lineID":10,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Fishing Farming Cooking","icon":{"id":"harvestcraft:potItem","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Catch it, grow it, eat it!"}},"order":10},{"quests":[{"sizeX":24,"x":204,"y":192,"id":139,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":645,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":647,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":648,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":649,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":650,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":651,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":652,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":653,"sizeY":24},{"sizeX":24,"x":24,"y":408,"id":654,"sizeY":24},{"sizeX":24,"x":0,"y":468,"id":655,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":683,"sizeY":24},{"sizeX":24,"x":204,"y":0,"id":684,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":685,"sizeY":24},{"sizeX":24,"x":180,"y":48,"id":686,"sizeY":24},{"sizeX":24,"x":204,"y":96,"id":687,"sizeY":24},{"sizeX":24,"x":252,"y":96,"id":688,"sizeY":24},{"sizeX":24,"x":300,"y":96,"id":689,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":690,"sizeY":24},{"sizeX":24,"x":108,"y":96,"id":691,"sizeY":24},{"sizeX":24,"x":120,"y":192,"id":692,"sizeY":24},{"sizeX":24,"x":120,"y":252,"id":775,"sizeY":24},{"sizeX":24,"x":180,"y":312,"id":776,"sizeY":24},{"sizeX":24,"x":60,"y":312,"id":777,"sizeY":24},{"sizeX":24,"x":120,"y":312,"id":779,"sizeY":24},{"sizeX":24,"x":228,"y":312,"id":796,"sizeY":24},{"sizeX":24,"x":228,"y":348,"id":797,"sizeY":24},{"sizeX":24,"x":216,"y":408,"id":799,"sizeY":24},{"sizeX":24,"x":96,"y":372,"id":800,"sizeY":24},{"sizeX":24,"x":144,"y":372,"id":801,"sizeY":24},{"sizeX":24,"x":120,"y":408,"id":802,"sizeY":24},{"sizeX":24,"x":96,"y":468,"id":803,"sizeY":24},{"sizeX":24,"x":144,"y":468,"id":804,"sizeY":24},{"sizeX":24,"x":204,"y":144,"id":991,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":997,"sizeY":24},{"sizeX":24,"x":180,"y":348,"id":1419,"sizeY":24},{"sizeX":24,"x":48,"y":216,"id":1442,"sizeY":24},{"sizeX":24,"x":48,"y":252,"id":1443,"sizeY":24},{"sizeX":24,"x":84,"y":252,"id":1444,"sizeY":24},{"sizeX":24,"x":252,"y":48,"id":1779,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":1781,"sizeY":24},{"sizeX":24,"x":324,"y":180,"id":1782,"sizeY":24},{"sizeX":24,"x":324,"y":216,"id":1783,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1784,"sizeY":24},{"sizeX":24,"x":324,"y":288,"id":1785,"sizeY":24},{"sizeX":24,"x":324,"y":324,"id":1786,"sizeY":24},{"sizeX":24,"x":348,"y":96,"id":1839,"sizeY":24},{"sizeX":24,"x":156,"y":252,"id":1848,"sizeY":24},{"sizeX":24,"x":396,"y":96,"id":2057,"sizeY":24},{"sizeX":24,"x":396,"y":144,"id":2058,"sizeY":24},{"sizeX":24,"x":372,"y":288,"id":2112,"sizeY":24},{"sizeX":24,"x":420,"y":216,"id":2113,"sizeY":24},{"sizeX":24,"x":420,"y":180,"id":2114,"sizeY":24},{"sizeX":24,"x":456,"y":324,"id":2115,"sizeY":24},{"sizeX":24,"x":420,"y":252,"id":2116,"sizeY":24},{"sizeX":24,"x":420,"y":288,"id":2117,"sizeY":24},{"sizeX":24,"x":420,"y":360,"id":2118,"sizeY":24},{"sizeX":24,"x":420,"y":324,"id":2139,"sizeY":24}],"lineID":11,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Armors and Jetpacks","icon":{"id":"GraviSuite:graviChestPlate","Count":1,"tag":{"charge":30000000},"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Guiding you through the armor and jetpacks and Adventure Backpacks."}},"order":11},{"quests":[{"sizeX":24,"x":204,"y":0,"id":45,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":74,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":75,"sizeY":24},{"sizeX":48,"x":84,"y":60,"id":76,"sizeY":48},{"sizeX":48,"x":84,"y":144,"id":77,"sizeY":48},{"sizeX":48,"x":84,"y":240,"id":78,"sizeY":48},{"sizeX":48,"x":84,"y":312,"id":79,"sizeY":48},{"sizeX":48,"x":252,"y":144,"id":80,"sizeY":48},{"sizeX":48,"x":144,"y":312,"id":81,"sizeY":48},{"sizeX":24,"x":264,"y":108,"id":82,"sizeY":24},{"sizeX":24,"x":36,"y":300,"id":83,"sizeY":24},{"sizeX":24,"x":324,"y":108,"id":85,"sizeY":24},{"sizeX":48,"x":84,"y":384,"id":86,"sizeY":48},{"sizeX":24,"x":204,"y":60,"id":87,"sizeY":24},{"sizeX":48,"x":144,"y":384,"id":475,"sizeY":48},{"sizeX":48,"x":144,"y":456,"id":476,"sizeY":48},{"sizeX":48,"x":84,"y":456,"id":477,"sizeY":48},{"sizeX":24,"x":204,"y":156,"id":556,"sizeY":24},{"sizeX":24,"x":396,"y":60,"id":559,"sizeY":24},{"sizeX":24,"x":396,"y":0,"id":560,"sizeY":24},{"sizeX":24,"x":444,"y":0,"id":561,"sizeY":24},{"sizeX":24,"x":444,"y":60,"id":562,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":695,"sizeY":24},{"sizeX":24,"x":36,"y":60,"id":696,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":697,"sizeY":24},{"sizeX":24,"x":204,"y":108,"id":698,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":699,"sizeY":24},{"sizeX":24,"x":36,"y":204,"id":755,"sizeY":24},{"sizeX":24,"x":36,"y":252,"id":756,"sizeY":24},{"sizeX":24,"x":264,"y":204,"id":761,"sizeY":24},{"sizeX":24,"x":324,"y":156,"id":762,"sizeY":24},{"sizeX":24,"x":324,"y":204,"id":763,"sizeY":24},{"sizeX":24,"x":204,"y":204,"id":764,"sizeY":24},{"sizeX":24,"x":360,"y":108,"id":765,"sizeY":24},{"sizeX":24,"x":468,"y":192,"id":766,"sizeY":24},{"sizeX":24,"x":492,"y":0,"id":767,"sizeY":24},{"sizeX":24,"x":420,"y":156,"id":768,"sizeY":24},{"sizeX":24,"x":156,"y":252,"id":781,"sizeY":24},{"sizeX":24,"x":588,"y":60,"id":783,"sizeY":24},{"sizeX":24,"x":540,"y":0,"id":784,"sizeY":24},{"sizeX":24,"x":492,"y":60,"id":786,"sizeY":24},{"sizeX":24,"x":492,"y":108,"id":787,"sizeY":24},{"sizeX":24,"x":468,"y":156,"id":788,"sizeY":24},{"sizeX":24,"x":360,"y":60,"id":870,"sizeY":24},{"sizeX":24,"x":444,"y":108,"id":876,"sizeY":24},{"sizeX":48,"x":240,"y":312,"id":940,"sizeY":48},{"sizeX":48,"x":0,"y":144,"id":941,"sizeY":48},{"sizeX":24,"x":156,"y":60,"id":954,"sizeY":24},{"sizeX":24,"x":156,"y":204,"id":1179,"sizeY":24},{"sizeX":48,"x":468,"y":432,"id":1412,"sizeY":48},{"sizeX":48,"x":252,"y":0,"id":1503,"sizeY":48},{"sizeX":24,"x":396,"y":108,"id":1545,"sizeY":24},{"sizeX":24,"x":420,"y":192,"id":1652,"sizeY":24},{"sizeX":24,"x":540,"y":60,"id":1654,"sizeY":24},{"sizeX":24,"x":540,"y":108,"id":1740,"sizeY":24},{"sizeX":24,"x":360,"y":156,"id":1742,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":1743,"sizeY":24},{"sizeX":24,"x":552,"y":444,"id":1787,"sizeY":24},{"sizeX":48,"x":84,"y":528,"id":1817,"sizeY":48},{"sizeX":24,"x":360,"y":252,"id":1818,"sizeY":24},{"sizeX":24,"x":324,"y":396,"id":1820,"sizeY":24},{"sizeX":24,"x":516,"y":192,"id":1822,"sizeY":24},{"sizeX":24,"x":372,"y":396,"id":1825,"sizeY":24},{"sizeX":24,"x":420,"y":396,"id":1826,"sizeY":24},{"sizeX":24,"x":420,"y":432,"id":1827,"sizeY":24},{"sizeX":24,"x":372,"y":432,"id":1828,"sizeY":24},{"sizeX":24,"x":324,"y":432,"id":1829,"sizeY":24},{"sizeX":24,"x":324,"y":468,"id":1830,"sizeY":24},{"sizeX":24,"x":264,"y":60,"id":1832,"sizeY":24},{"sizeX":48,"x":144,"y":528,"id":1833,"sizeY":48},{"sizeX":24,"x":156,"y":156,"id":1853,"sizeY":24},{"sizeX":24,"x":588,"y":108,"id":1893,"sizeY":24},{"sizeX":24,"x":588,"y":156,"id":1894,"sizeY":24},{"sizeX":48,"x":192,"y":240,"id":1904,"sizeY":48},{"sizeX":24,"x":480,"y":396,"id":1905,"sizeY":24},{"sizeX":24,"x":552,"y":396,"id":2027,"sizeY":24},{"sizeX":24,"x":216,"y":468,"id":2044,"sizeY":24},{"sizeX":24,"x":264,"y":468,"id":2045,"sizeY":24},{"sizeX":24,"x":324,"y":324,"id":2144,"sizeY":24},{"sizeX":24,"x":264,"y":516,"id":2320,"sizeY":24}],"lineID":12,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Multiblock Goals","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":1000,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This set is a global tracker for multiblock structure goals. As you can build several parts of many multiblocks way earlier than the respective tier. Check back often."}},"order":12},{"quests":[{"sizeX":24,"x":36,"y":216,"id":1464,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":1935,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1936,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1937,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":1938,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":1939,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1940,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1941,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1942,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1943,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":1944,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1945,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1946,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1947,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1948,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1952,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":1953,"sizeY":24},{"sizeX":24,"x":216,"y":72,"id":1955,"sizeY":24},{"sizeX":24,"x":216,"y":108,"id":1956,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":1957,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1958,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":1959,"sizeY":24},{"sizeX":24,"x":216,"y":180,"id":1960,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1961,"sizeY":24},{"sizeX":24,"x":288,"y":180,"id":1962,"sizeY":24},{"sizeX":24,"x":216,"y":216,"id":1963,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1964,"sizeY":24},{"sizeX":24,"x":288,"y":144,"id":1965,"sizeY":24},{"sizeX":24,"x":288,"y":108,"id":1966,"sizeY":24},{"sizeX":24,"x":252,"y":72,"id":1967,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":1968,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1969,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1970,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1971,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1972,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":1973,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1974,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":1975,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1976,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1977,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1978,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1979,"sizeY":24},{"sizeX":24,"x":0,"y":252,"id":1980,"sizeY":24},{"sizeX":24,"x":36,"y":252,"id":1981,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1982,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":1983,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1984,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1985,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":1986,"sizeY":24},{"sizeX":24,"x":72,"y":252,"id":2070,"sizeY":24},{"sizeX":24,"x":180,"y":108,"id":2105,"sizeY":24},{"sizeX":24,"x":0,"y":288,"id":2138,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":2160,"sizeY":24}],"lineID":13,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Building Better Bases","icon":{"id":"chisel:futura","Count":1,"Damage":3,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Tired of torches everywhere making your base look like a loser built it? Make your base look like a winner with these quests. (under construction)"}},"order":13},{"quests":[{"sizeX":24,"x":48,"y":96,"id":106,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":107,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":108,"sizeY":24},{"sizeX":24,"x":216,"y":48,"id":109,"sizeY":24},{"sizeX":24,"x":216,"y":96,"id":110,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":111,"sizeY":24},{"sizeX":24,"x":156,"y":48,"id":112,"sizeY":24},{"sizeX":24,"x":156,"y":204,"id":1208,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":1209,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1210,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":1211,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1550,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":1551,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1552,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1553,"sizeY":24}],"lineID":14,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Steve Carts","icon":{"id":"StevesCarts:CartModule","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Basic auto farming and mining. Protect them from lightning strikes!"}},"order":14},{"quests":[{"sizeX":24,"x":0,"y":0,"id":1623,"sizeY":24},{"sizeX":24,"x":0,"y":42,"id":1624,"sizeY":24},{"sizeX":24,"x":0,"y":78,"id":1625,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":1626,"sizeY":24},{"sizeX":24,"x":48,"y":150,"id":1627,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":1628,"sizeY":24},{"sizeX":24,"x":48,"y":198,"id":1629,"sizeY":24},{"sizeX":24,"x":96,"y":120,"id":1630,"sizeY":24},{"sizeX":24,"x":150,"y":120,"id":1631,"sizeY":24},{"sizeX":24,"x":150,"y":78,"id":1632,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":1633,"sizeY":24},{"sizeX":24,"x":150,"y":162,"id":1634,"sizeY":24},{"sizeX":24,"x":204,"y":162,"id":1635,"sizeY":24},{"sizeX":24,"x":204,"y":78,"id":1636,"sizeY":24},{"sizeX":24,"x":204,"y":30,"id":1637,"sizeY":24},{"sizeX":24,"x":252,"y":30,"id":1638,"sizeY":24},{"sizeX":24,"x":252,"y":78,"id":1639,"sizeY":24},{"sizeX":24,"x":300,"y":78,"id":1640,"sizeY":24},{"sizeX":24,"x":150,"y":30,"id":1641,"sizeY":24},{"sizeX":24,"x":300,"y":30,"id":1642,"sizeY":24}],"lineID":15,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Project Red","icon":{"id":"ProjRed|Transportation:projectred.transportation.routingchip","Count":1,"Damage":2,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Low tier storage and automation. You'll need a forming press to get started."}},"order":15},{"quests":[{"sizeX":24,"x":36,"y":0,"id":872,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":873,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":880,"sizeY":24},{"sizeX":24,"x":348,"y":0,"id":881,"sizeY":24},{"sizeX":24,"x":444,"y":0,"id":882,"sizeY":24},{"sizeX":24,"x":396,"y":0,"id":883,"sizeY":24},{"sizeX":24,"x":204,"y":0,"id":884,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":885,"sizeY":24},{"sizeX":24,"x":486,"y":0,"id":886,"sizeY":24},{"sizeX":24,"x":300,"y":0,"id":888,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":949,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":950,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":955,"sizeY":24},{"sizeX":24,"x":252,"y":144,"id":956,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":957,"sizeY":24},{"sizeX":24,"x":204,"y":144,"id":958,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":959,"sizeY":24},{"sizeX":24,"x":300,"y":144,"id":960,"sizeY":24},{"sizeX":24,"x":348,"y":144,"id":961,"sizeY":24},{"sizeX":24,"x":444,"y":144,"id":963,"sizeY":24},{"sizeX":24,"x":444,"y":180,"id":964,"sizeY":24},{"sizeX":24,"x":480,"y":108,"id":965,"sizeY":24},{"sizeX":24,"x":480,"y":144,"id":966,"sizeY":24},{"sizeX":24,"x":480,"y":180,"id":967,"sizeY":24},{"sizeX":24,"x":516,"y":180,"id":968,"sizeY":24},{"sizeX":24,"x":480,"y":216,"id":969,"sizeY":24},{"sizeX":24,"x":516,"y":216,"id":970,"sizeY":24},{"sizeX":24,"x":516,"y":252,"id":971,"sizeY":24},{"sizeX":24,"x":588,"y":144,"id":972,"sizeY":24},{"sizeX":24,"x":588,"y":108,"id":973,"sizeY":24},{"sizeX":24,"x":732,"y":144,"id":974,"sizeY":24},{"sizeX":24,"x":624,"y":144,"id":975,"sizeY":24},{"sizeX":24,"x":768,"y":144,"id":976,"sizeY":24},{"sizeX":24,"x":624,"y":108,"id":977,"sizeY":24},{"sizeX":24,"x":660,"y":108,"id":978,"sizeY":24},{"sizeX":24,"x":696,"y":108,"id":979,"sizeY":24},{"sizeX":24,"x":732,"y":108,"id":980,"sizeY":24},{"sizeX":24,"x":768,"y":108,"id":981,"sizeY":24},{"sizeX":24,"x":804,"y":144,"id":982,"sizeY":24},{"sizeX":24,"x":108,"y":276,"id":983,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":984,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1022,"sizeY":24},{"sizeX":24,"x":156,"y":180,"id":1023,"sizeY":24},{"sizeX":24,"x":204,"y":180,"id":1024,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1025,"sizeY":24},{"sizeX":24,"x":300,"y":180,"id":1026,"sizeY":24},{"sizeX":24,"x":348,"y":180,"id":1027,"sizeY":24},{"sizeX":24,"x":396,"y":180,"id":1028,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1029,"sizeY":24},{"sizeX":24,"x":156,"y":216,"id":1030,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1031,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1032,"sizeY":24},{"sizeX":24,"x":300,"y":216,"id":1033,"sizeY":24},{"sizeX":24,"x":348,"y":216,"id":1034,"sizeY":24},{"sizeX":24,"x":444,"y":216,"id":1036,"sizeY":24},{"sizeX":24,"x":516,"y":288,"id":1037,"sizeY":24},{"sizeX":24,"x":480,"y":252,"id":1038,"sizeY":24},{"sizeX":24,"x":480,"y":288,"id":1039,"sizeY":24},{"sizeX":24,"x":480,"y":324,"id":1040,"sizeY":24},{"sizeX":24,"x":480,"y":360,"id":1041,"sizeY":24},{"sizeX":24,"x":156,"y":276,"id":1042,"sizeY":24},{"sizeX":24,"x":804,"y":108,"id":1043,"sizeY":24},{"sizeX":24,"x":444,"y":252,"id":1044,"sizeY":24},{"sizeX":24,"x":444,"y":288,"id":1045,"sizeY":24},{"sizeX":24,"x":588,"y":0,"id":1046,"sizeY":24},{"sizeX":24,"x":0,"y":348,"id":1047,"sizeY":24},{"sizeX":24,"x":36,"y":384,"id":1048,"sizeY":24},{"sizeX":24,"x":0,"y":420,"id":1049,"sizeY":24},{"sizeX":24,"x":0,"y":276,"id":1050,"sizeY":24},{"sizeX":24,"x":36,"y":276,"id":1051,"sizeY":24},{"sizeX":24,"x":36,"y":312,"id":1052,"sizeY":24},{"sizeX":24,"x":36,"y":420,"id":1053,"sizeY":24},{"sizeX":24,"x":72,"y":420,"id":1054,"sizeY":24},{"sizeX":24,"x":36,"y":348,"id":1056,"sizeY":24},{"sizeX":24,"x":72,"y":348,"id":1057,"sizeY":24},{"sizeX":24,"x":108,"y":348,"id":1058,"sizeY":24},{"sizeX":24,"x":144,"y":348,"id":1059,"sizeY":24},{"sizeX":24,"x":180,"y":348,"id":1060,"sizeY":24},{"sizeX":24,"x":216,"y":348,"id":1061,"sizeY":24},{"sizeX":24,"x":252,"y":348,"id":1062,"sizeY":24},{"sizeX":24,"x":0,"y":384,"id":1063,"sizeY":24},{"sizeX":24,"x":288,"y":348,"id":1064,"sizeY":24},{"sizeX":24,"x":324,"y":348,"id":1065,"sizeY":24},{"sizeX":24,"x":360,"y":348,"id":1066,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1069,"sizeY":24},{"sizeX":24,"x":156,"y":36,"id":1073,"sizeY":24},{"sizeX":24,"x":204,"y":36,"id":1074,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":1075,"sizeY":24},{"sizeX":24,"x":300,"y":36,"id":1076,"sizeY":24},{"sizeX":24,"x":348,"y":36,"id":1077,"sizeY":24},{"sizeX":24,"x":396,"y":36,"id":1078,"sizeY":24},{"sizeX":24,"x":444,"y":36,"id":1079,"sizeY":24},{"sizeX":24,"x":486,"y":36,"id":1080,"sizeY":24},{"sizeX":24,"x":552,"y":180,"id":1161,"sizeY":24},{"sizeX":24,"x":552,"y":216,"id":1162,"sizeY":24},{"sizeX":24,"x":60,"y":144,"id":1163,"sizeY":24},{"sizeX":24,"x":624,"y":36,"id":1165,"sizeY":24},{"sizeX":24,"x":288,"y":420,"id":1169,"sizeY":24},{"sizeX":24,"x":324,"y":420,"id":1170,"sizeY":24},{"sizeX":24,"x":660,"y":0,"id":1171,"sizeY":24},{"sizeX":24,"x":696,"y":0,"id":1173,"sizeY":24},{"sizeX":24,"x":732,"y":0,"id":1174,"sizeY":24},{"sizeX":24,"x":768,"y":0,"id":1175,"sizeY":24},{"sizeX":24,"x":804,"y":0,"id":1176,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1192,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1193,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1194,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1195,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1196,"sizeY":24},{"sizeX":24,"x":660,"y":144,"id":1206,"sizeY":24},{"sizeX":24,"x":696,"y":144,"id":1207,"sizeY":24},{"sizeX":24,"x":360,"y":420,"id":1287,"sizeY":24},{"sizeX":24,"x":840,"y":360,"id":1297,"sizeY":24},{"sizeX":24,"x":840,"y":396,"id":1307,"sizeY":24},{"sizeX":24,"x":216,"y":420,"id":1366,"sizeY":24},{"sizeX":24,"x":204,"y":276,"id":1425,"sizeY":24},{"sizeX":24,"x":252,"y":276,"id":1438,"sizeY":24},{"sizeX":24,"x":300,"y":276,"id":1455,"sizeY":24},{"sizeX":24,"x":696,"y":36,"id":1479,"sizeY":24},{"sizeX":24,"x":588,"y":72,"id":1492,"sizeY":24},{"sizeX":24,"x":588,"y":36,"id":1523,"sizeY":24},{"sizeX":24,"x":552,"y":288,"id":1608,"sizeY":24},{"sizeX":24,"x":552,"y":324,"id":1609,"sizeY":24},{"sizeX":24,"x":60,"y":180,"id":1610,"sizeY":24},{"sizeX":24,"x":60,"y":216,"id":1611,"sizeY":24},{"sizeX":24,"x":552,"y":360,"id":1616,"sizeY":24},{"sizeX":24,"x":552,"y":252,"id":1618,"sizeY":24},{"sizeX":24,"x":660,"y":36,"id":1619,"sizeY":24},{"sizeX":24,"x":252,"y":420,"id":1644,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1780,"sizeY":24},{"sizeX":24,"x":552,"y":0,"id":1816,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":1859,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":1860,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":1861,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":1881,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1882,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1883,"sizeY":24},{"sizeX":24,"x":624,"y":72,"id":1884,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":1885,"sizeY":24},{"sizeX":24,"x":552,"y":36,"id":1886,"sizeY":24},{"sizeX":24,"x":660,"y":72,"id":1889,"sizeY":24},{"sizeX":24,"x":804,"y":72,"id":1892,"sizeY":24},{"sizeX":24,"x":624,"y":0,"id":1895,"sizeY":24},{"sizeX":24,"x":156,"y":72,"id":1934,"sizeY":24},{"sizeX":24,"x":72,"y":312,"id":2080,"sizeY":24},{"sizeX":24,"x":732,"y":36,"id":2151,"sizeY":24},{"sizeX":24,"x":768,"y":36,"id":2152,"sizeY":24}],"lineID":16,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Coins, Coins, Coins","icon":{"id":"dreamcraft:item.CoinTechnicianIII","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"These quests will guide you to use your Coins wisely and buy some useful or fancy stuff.\nZoom out using mousewheel to see all the amazing things for sale!"}},"order":16},{"quests":[{"sizeX":24,"x":240,"y":0,"id":1416,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1417,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":1418,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1419,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1420,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":1421,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":1422,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":1423,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":2025,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":2028,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":2029,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":2030,"sizeY":24},{"sizeX":24,"x":384,"y":96,"id":2031,"sizeY":24},{"sizeX":24,"x":384,"y":48,"id":2032,"sizeY":24},{"sizeX":24,"x":384,"y":0,"id":2033,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":2034,"sizeY":24},{"sizeX":24,"x":264,"y":144,"id":2035,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":2036,"sizeY":24},{"sizeX":24,"x":120,"y":144,"id":2037,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2038,"sizeY":24},{"sizeX":24,"x":408,"y":144,"id":2039,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":2040,"sizeY":24},{"sizeX":24,"x":432,"y":72,"id":2049,"sizeY":24},{"sizeX":24,"x":432,"y":24,"id":2053,"sizeY":24},{"sizeX":24,"x":192,"y":192,"id":2054,"sizeY":24}],"lineID":17,"properties":{"betterquesting":{"visibility":"NORMAL","name":"GT++ ","icon":{"id":"gregtech:gt.blockmachines","Count":1,"Damage":810,"OreDict":""},"bg_image":"","bg_size":256,"desc":"GT++ adds new functionality to GT, including high speed multiblocks - Under Construction"}},"order":17},{"quests":[{"sizeX":24,"x":48,"y":48,"id":576,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":577,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":578,"sizeY":24},{"sizeX":24,"x":48,"y":336,"id":580,"sizeY":24},{"sizeX":24,"x":168,"y":264,"id":581,"sizeY":24},{"sizeX":24,"x":204,"y":168,"id":582,"sizeY":24},{"sizeX":24,"x":204,"y":264,"id":583,"sizeY":24},{"sizeX":24,"x":240,"y":264,"id":584,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":585,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":586,"sizeY":24},{"sizeX":24,"x":204,"y":300,"id":588,"sizeY":24},{"sizeX":24,"x":168,"y":120,"id":589,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":590,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":591,"sizeY":24},{"sizeX":24,"x":168,"y":204,"id":592,"sizeY":24},{"sizeX":24,"x":240,"y":228,"id":593,"sizeY":24},{"sizeX":24,"x":276,"y":228,"id":594,"sizeY":24},{"sizeX":24,"x":312,"y":228,"id":595,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":994,"sizeY":24},{"sizeX":24,"x":336,"y":12,"id":1115,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":1214,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1215,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":1216,"sizeY":24},{"sizeX":24,"x":132,"y":264,"id":1217,"sizeY":24},{"sizeX":24,"x":132,"y":228,"id":1218,"sizeY":24},{"sizeX":24,"x":132,"y":192,"id":1219,"sizeY":24},{"sizeX":24,"x":96,"y":228,"id":1220,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":2051,"sizeY":24},{"sizeX":24,"x":132,"y":144,"id":2052,"sizeY":24},{"sizeX":24,"x":96,"y":180,"id":2055,"sizeY":24},{"sizeX":24,"x":336,"y":60,"id":2083,"sizeY":24},{"sizeX":24,"x":372,"y":108,"id":2084,"sizeY":24},{"sizeX":24,"x":372,"y":12,"id":2085,"sizeY":24},{"sizeX":24,"x":300,"y":60,"id":2107,"sizeY":24},{"sizeX":24,"x":372,"y":156,"id":2121,"sizeY":24},{"sizeX":24,"x":372,"y":60,"id":2122,"sizeY":24},{"sizeX":24,"x":426,"y":12,"id":2124,"sizeY":24},{"sizeX":24,"x":426,"y":156,"id":2125,"sizeY":24},{"sizeX":24,"x":474,"y":156,"id":2126,"sizeY":24},{"sizeX":24,"x":426,"y":108,"id":2127,"sizeY":24},{"sizeX":24,"x":474,"y":12,"id":2128,"sizeY":24},{"sizeX":24,"x":522,"y":12,"id":2129,"sizeY":24},{"sizeX":24,"x":570,"y":12,"id":2130,"sizeY":24},{"sizeX":24,"x":522,"y":60,"id":2131,"sizeY":24},{"sizeX":24,"x":570,"y":60,"id":2132,"sizeY":24},{"sizeX":24,"x":522,"y":156,"id":2133,"sizeY":24},{"sizeX":24,"x":570,"y":156,"id":2134,"sizeY":24},{"sizeX":24,"x":570,"y":204,"id":2135,"sizeY":24},{"sizeX":24,"x":474,"y":108,"id":2256,"sizeY":24},{"sizeX":24,"x":522,"y":108,"id":2257,"sizeY":24},{"sizeX":24,"x":372,"y":204,"id":2263,"sizeY":24}],"lineID":18,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Forestry and Multi-farms","icon":{"id":"Forestry:factory","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Automated Farms, tree breeding, and more....."}},"order":18},{"quests":[{"sizeX":24,"x":48,"y":0,"id":1116,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1117,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":1118,"sizeY":24},{"sizeX":24,"x":96,"y":48,"id":1119,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1120,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":1121,"sizeY":24},{"sizeX":24,"x":192,"y":48,"id":1122,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":2153,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":2154,"sizeY":24},{"sizeX":24,"x":288,"y":48,"id":2155,"sizeY":24},{"sizeX":24,"x":240,"y":0,"id":2156,"sizeY":24},{"sizeX":24,"x":240,"y":48,"id":2157,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":2158,"sizeY":24},{"sizeX":24,"x":24,"y":24,"id":2159,"sizeY":24},{"sizeX":24,"x":288,"y":144,"id":2162,"sizeY":24},{"sizeX":24,"x":240,"y":144,"id":2163,"sizeY":24},{"sizeX":24,"x":192,"y":144,"id":2164,"sizeY":24},{"sizeX":24,"x":240,"y":240,"id":2165,"sizeY":24},{"sizeX":24,"x":288,"y":240,"id":2166,"sizeY":24},{"sizeX":24,"x":336,"y":240,"id":2167,"sizeY":24},{"sizeX":24,"x":288,"y":192,"id":2168,"sizeY":24},{"sizeX":24,"x":240,"y":192,"id":2169,"sizeY":24},{"sizeX":24,"x":192,"y":192,"id":2170,"sizeY":24},{"sizeX":24,"x":336,"y":48,"id":2171,"sizeY":24},{"sizeX":24,"x":336,"y":288,"id":2172,"sizeY":24},{"sizeX":24,"x":288,"y":288,"id":2173,"sizeY":24},{"sizeX":24,"x":240,"y":336,"id":2174,"sizeY":24},{"sizeX":24,"x":240,"y":288,"id":2175,"sizeY":24},{"sizeX":24,"x":192,"y":336,"id":2176,"sizeY":24},{"sizeX":24,"x":144,"y":336,"id":2177,"sizeY":24},{"sizeX":24,"x":144,"y":384,"id":2178,"sizeY":24},{"sizeX":24,"x":192,"y":288,"id":2179,"sizeY":24},{"sizeX":24,"x":144,"y":288,"id":2180,"sizeY":24},{"sizeX":24,"x":96,"y":288,"id":2181,"sizeY":24},{"sizeX":24,"x":240,"y":432,"id":2182,"sizeY":24},{"sizeX":24,"x":192,"y":432,"id":2183,"sizeY":24},{"sizeX":24,"x":144,"y":432,"id":2184,"sizeY":24},{"sizeX":24,"x":144,"y":240,"id":2185,"sizeY":24},{"sizeX":24,"x":336,"y":432,"id":2186,"sizeY":24},{"sizeX":24,"x":288,"y":432,"id":2187,"sizeY":24},{"sizeX":24,"x":288,"y":480,"id":2188,"sizeY":24},{"sizeX":24,"x":240,"y":480,"id":2189,"sizeY":24},{"sizeX":24,"x":240,"y":384,"id":2190,"sizeY":24},{"sizeX":24,"x":192,"y":384,"id":2191,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":2192,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":2193,"sizeY":24},{"sizeX":24,"x":336,"y":144,"id":2194,"sizeY":24},{"sizeX":24,"x":384,"y":96,"id":2195,"sizeY":24},{"sizeX":24,"x":336,"y":192,"id":2196,"sizeY":24},{"sizeX":24,"x":384,"y":192,"id":2197,"sizeY":24},{"sizeX":24,"x":384,"y":144,"id":2198,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":2199,"sizeY":24},{"sizeX":24,"x":384,"y":288,"id":2200,"sizeY":24},{"sizeX":24,"x":288,"y":384,"id":2201,"sizeY":24},{"sizeX":24,"x":336,"y":384,"id":2202,"sizeY":24},{"sizeX":24,"x":384,"y":384,"id":2203,"sizeY":24},{"sizeX":24,"x":336,"y":528,"id":2204,"sizeY":24},{"sizeX":24,"x":384,"y":528,"id":2205,"sizeY":24},{"sizeX":24,"x":288,"y":528,"id":2206,"sizeY":24},{"sizeX":24,"x":240,"y":576,"id":2207,"sizeY":24},{"sizeX":24,"x":240,"y":528,"id":2208,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":2209,"sizeY":24},{"sizeX":24,"x":48,"y":48,"id":2211,"sizeY":24},{"sizeX":24,"x":600,"y":144,"id":2212,"sizeY":24},{"sizeX":24,"x":504,"y":0,"id":2213,"sizeY":24},{"sizeX":24,"x":600,"y":48,"id":2214,"sizeY":24},{"sizeX":24,"x":552,"y":48,"id":2215,"sizeY":24},{"sizeX":24,"x":552,"y":0,"id":2216,"sizeY":24},{"sizeX":24,"x":552,"y":144,"id":2217,"sizeY":24},{"sizeX":24,"x":552,"y":96,"id":2218,"sizeY":24},{"sizeX":24,"x":648,"y":144,"id":2219,"sizeY":24},{"sizeX":24,"x":744,"y":288,"id":2220,"sizeY":24},{"sizeX":24,"x":696,"y":336,"id":2221,"sizeY":24},{"sizeX":24,"x":696,"y":240,"id":2222,"sizeY":24},{"sizeX":24,"x":696,"y":192,"id":2223,"sizeY":24},{"sizeX":24,"x":744,"y":192,"id":2224,"sizeY":24},{"sizeX":24,"x":744,"y":240,"id":2225,"sizeY":24},{"sizeX":24,"x":744,"y":336,"id":2226,"sizeY":24},{"sizeX":24,"x":696,"y":288,"id":2227,"sizeY":24},{"sizeX":24,"x":696,"y":48,"id":2228,"sizeY":24},{"sizeX":24,"x":744,"y":48,"id":2229,"sizeY":24},{"sizeX":24,"x":792,"y":48,"id":2230,"sizeY":24},{"sizeX":24,"x":696,"y":96,"id":2231,"sizeY":24},{"sizeX":24,"x":648,"y":192,"id":2232,"sizeY":24},{"sizeX":24,"x":696,"y":0,"id":2233,"sizeY":24},{"sizeX":24,"x":744,"y":0,"id":2234,"sizeY":24},{"sizeX":24,"x":792,"y":0,"id":2235,"sizeY":24},{"sizeX":24,"x":744,"y":384,"id":2236,"sizeY":24},{"sizeX":24,"x":696,"y":384,"id":2237,"sizeY":24},{"sizeX":24,"x":792,"y":336,"id":2238,"sizeY":24},{"sizeX":24,"x":504,"y":48,"id":2239,"sizeY":24},{"sizeX":24,"x":504,"y":96,"id":2240,"sizeY":24},{"sizeX":24,"x":840,"y":336,"id":2241,"sizeY":24},{"sizeX":24,"x":888,"y":336,"id":2242,"sizeY":24},{"sizeX":24,"x":504,"y":192,"id":2243,"sizeY":24},{"sizeX":24,"x":696,"y":144,"id":2244,"sizeY":24},{"sizeX":24,"x":744,"y":144,"id":2245,"sizeY":24},{"sizeX":24,"x":792,"y":144,"id":2246,"sizeY":24},{"sizeX":24,"x":840,"y":144,"id":2247,"sizeY":24},{"sizeX":24,"x":840,"y":96,"id":2248,"sizeY":24},{"sizeX":24,"x":840,"y":48,"id":2249,"sizeY":24},{"sizeX":24,"x":840,"y":0,"id":2250,"sizeY":24},{"sizeX":24,"x":48,"y":336,"id":2251,"sizeY":24},{"sizeX":24,"x":96,"y":336,"id":2252,"sizeY":24},{"sizeX":24,"x":384,"y":240,"id":2254,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":2258,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":2269,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":2270,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":2271,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2272,"sizeY":24},{"sizeX":24,"x":48,"y":192,"id":2273,"sizeY":24},{"sizeX":24,"x":504,"y":240,"id":2274,"sizeY":24},{"sizeX":24,"x":552,"y":240,"id":2275,"sizeY":24},{"sizeX":24,"x":600,"y":240,"id":2276,"sizeY":24},{"sizeX":24,"x":696,"y":432,"id":2277,"sizeY":24},{"sizeX":24,"x":648,"y":432,"id":2278,"sizeY":24},{"sizeX":24,"x":600,"y":432,"id":2279,"sizeY":24},{"sizeX":24,"x":552,"y":432,"id":2280,"sizeY":24},{"sizeX":24,"x":504,"y":432,"id":2281,"sizeY":24},{"sizeX":24,"x":552,"y":384,"id":2282,"sizeY":24},{"sizeX":24,"x":600,"y":480,"id":2283,"sizeY":24},{"sizeX":24,"x":552,"y":480,"id":2284,"sizeY":24},{"sizeX":24,"x":648,"y":480,"id":2285,"sizeY":24},{"sizeX":24,"x":552,"y":288,"id":2287,"sizeY":24},{"sizeX":24,"x":504,"y":288,"id":2288,"sizeY":24},{"sizeX":24,"x":600,"y":288,"id":2289,"sizeY":24},{"sizeX":24,"x":96,"y":240,"id":2290,"sizeY":24},{"sizeX":24,"x":48,"y":240,"id":2291,"sizeY":24},{"sizeX":24,"x":0,"y":240,"id":2292,"sizeY":24}],"lineID":19,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Be(e) Breeding","icon":{"id":"Forestry:beePrincessGE","Count":1,"tag":{"MaxH":60,"Mate":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergy","UID0":"gregtech.bee.speciesEnergy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]},"Health":60,"IsAnalyzed":0,"Genome":{"Chromosomes":[{"UID1":"gregtech.bee.speciesEnergy","UID0":"gregtech.bee.speciesEnergy","Slot":0},{"UID1":"forestry.speedSlower","UID0":"forestry.speedSlower","Slot":1},{"UID1":"forestry.lifespanLonger","UID0":"forestry.lifespanLonger","Slot":2},{"UID1":"forestry.fertilityNormal","UID0":"forestry.fertilityNormal","Slot":3},{"UID1":"forestry.toleranceDown2","UID0":"forestry.toleranceDown2","Slot":4},{"UID1":"forestry.boolTrue","UID0":"forestry.boolTrue","Slot":5},{"UID1":"forestry.toleranceBoth1","UID0":"forestry.toleranceBoth1","Slot":7},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":8},{"UID1":"forestry.boolFalse","UID0":"forestry.boolFalse","Slot":9},{"UID1":"forestry.flowersNether","UID0":"forestry.flowersNether","Slot":10},{"UID1":"forestry.floweringAverage","UID0":"forestry.floweringAverage","Slot":11},{"UID1":"forestry.territoryAverage","UID0":"forestry.territoryAverage","Slot":12},{"UID1":"forestry.effectIgnition","UID0":"forestry.effectIgnition","Slot":13}]}},"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Breeding Bees for Better Bling (experimental, may cause honey leakage)"}},"order":19},{"quests":[{"sizeX":24,"x":0,"y":84,"id":500,"sizeY":24},{"sizeX":24,"x":0,"y":120,"id":501,"sizeY":24},{"sizeX":24,"x":72,"y":120,"id":502,"sizeY":24},{"sizeX":24,"x":114,"y":84,"id":503,"sizeY":24},{"sizeX":24,"x":156,"y":120,"id":504,"sizeY":24},{"sizeX":24,"x":204,"y":84,"id":505,"sizeY":24},{"sizeX":24,"x":108,"y":192,"id":506,"sizeY":24},{"sizeX":24,"x":156,"y":156,"id":507,"sizeY":24},{"sizeX":24,"x":108,"y":228,"id":508,"sizeY":24},{"sizeX":24,"x":36,"y":228,"id":509,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":510,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":511,"sizeY":24},{"sizeX":24,"x":0,"y":228,"id":512,"sizeY":24},{"sizeX":24,"x":156,"y":228,"id":513,"sizeY":24},{"sizeX":24,"x":72,"y":156,"id":514,"sizeY":24},{"sizeX":24,"x":36,"y":156,"id":515,"sizeY":24},{"sizeX":24,"x":0,"y":156,"id":516,"sizeY":24},{"sizeX":24,"x":72,"y":228,"id":517,"sizeY":24},{"sizeX":24,"x":72,"y":192,"id":518,"sizeY":24},{"sizeX":24,"x":342,"y":336,"id":519,"sizeY":24},{"sizeX":24,"x":90,"y":336,"id":520,"sizeY":24},{"sizeX":24,"x":162,"y":336,"id":521,"sizeY":24},{"sizeX":24,"x":54,"y":336,"id":522,"sizeY":24},{"sizeX":24,"x":18,"y":336,"id":523,"sizeY":24},{"sizeX":24,"x":270,"y":336,"id":524,"sizeY":24},{"sizeX":24,"x":126,"y":336,"id":525,"sizeY":24},{"sizeX":24,"x":198,"y":336,"id":526,"sizeY":24},{"sizeX":24,"x":306,"y":336,"id":527,"sizeY":24},{"sizeX":24,"x":234,"y":336,"id":528,"sizeY":24},{"sizeX":24,"x":72,"y":84,"id":992,"sizeY":24},{"sizeX":24,"x":72,"y":48,"id":993,"sizeY":24},{"sizeX":24,"x":108,"y":48,"id":995,"sizeY":24},{"sizeX":24,"x":156,"y":0,"id":996,"sizeY":24},{"sizeX":24,"x":204,"y":156,"id":1111,"sizeY":24},{"sizeX":24,"x":36,"y":120,"id":1112,"sizeY":24},{"sizeX":24,"x":114,"y":120,"id":1113,"sizeY":24},{"sizeX":24,"x":204,"y":192,"id":1114,"sizeY":24},{"sizeX":24,"x":252,"y":192,"id":1123,"sizeY":24},{"sizeX":24,"x":156,"y":48,"id":1367,"sizeY":24},{"sizeX":24,"x":36,"y":84,"id":1511,"sizeY":24},{"sizeX":24,"x":156,"y":84,"id":1512,"sizeY":24},{"sizeX":24,"x":204,"y":228,"id":1513,"sizeY":24},{"sizeX":24,"x":252,"y":228,"id":1514,"sizeY":24},{"sizeX":24,"x":300,"y":228,"id":1515,"sizeY":24},{"sizeX":24,"x":252,"y":264,"id":1516,"sizeY":24},{"sizeX":24,"x":252,"y":156,"id":2089,"sizeY":24},{"sizeX":24,"x":156,"y":192,"id":2090,"sizeY":24},{"sizeX":24,"x":300,"y":192,"id":2091,"sizeY":24},{"sizeX":24,"x":300,"y":156,"id":2092,"sizeY":24},{"sizeX":24,"x":348,"y":156,"id":2093,"sizeY":24},{"sizeX":24,"x":348,"y":192,"id":2094,"sizeY":24},{"sizeX":24,"x":204,"y":120,"id":2106,"sizeY":24},{"sizeX":24,"x":252,"y":84,"id":2108,"sizeY":24},{"sizeX":24,"x":252,"y":120,"id":2109,"sizeY":24},{"sizeX":24,"x":204,"y":264,"id":2255,"sizeY":24}],"lineID":20,"properties":{"betterquesting":{"visibility":"NORMAL","name":"How to be(e)","icon":{"id":"Forestry:beehives","Count":1,"Damage":1,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A non-tiered quest set that is meant as an in game, quest based tutorial and guide to bees. Since they are a really helpful tool to advance forward."}},"order":20},{"quests":[{"sizeX":24,"x":144,"y":0,"id":1954,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":2081,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":2082,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":2088,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":2095,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":2096,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":2097,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":2098,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":2099,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":2100,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":2101,"sizeY":24},{"sizeX":24,"x":216,"y":72,"id":2102,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":2103,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2104,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":2110,"sizeY":24}],"lineID":21,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Slice and splice","icon":{"id":"Genetics:labMachine","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"An introduction to using Binnie's Genetics mod for bees, trees, and Botany flowers. (under construction)"}},"order":21},{"quests":[{"sizeX":24,"x":216,"y":0,"id":224,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":225,"sizeY":24},{"sizeX":24,"x":396,"y":72,"id":226,"sizeY":24},{"sizeX":24,"x":312,"y":72,"id":227,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":229,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":230,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":231,"sizeY":24},{"sizeX":24,"x":432,"y":72,"id":232,"sizeY":24},{"sizeX":24,"x":84,"y":144,"id":233,"sizeY":24},{"sizeX":24,"x":432,"y":144,"id":234,"sizeY":24},{"sizeX":24,"x":360,"y":108,"id":235,"sizeY":24},{"sizeX":24,"x":396,"y":108,"id":236,"sizeY":24},{"sizeX":24,"x":360,"y":180,"id":237,"sizeY":24},{"sizeX":24,"x":360,"y":216,"id":238,"sizeY":24},{"sizeX":24,"x":312,"y":216,"id":239,"sizeY":24},{"sizeX":24,"x":312,"y":180,"id":240,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":241,"sizeY":24},{"sizeX":24,"x":84,"y":252,"id":242,"sizeY":24},{"sizeX":24,"x":180,"y":252,"id":243,"sizeY":24},{"sizeX":24,"x":288,"y":336,"id":244,"sizeY":24},{"sizeX":24,"x":360,"y":372,"id":245,"sizeY":24},{"sizeX":24,"x":432,"y":336,"id":246,"sizeY":24},{"sizeX":24,"x":288,"y":408,"id":247,"sizeY":24},{"sizeX":24,"x":432,"y":408,"id":248,"sizeY":24},{"sizeX":24,"x":288,"y":372,"id":249,"sizeY":24},{"sizeX":24,"x":432,"y":372,"id":250,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":251,"sizeY":24},{"sizeX":24,"x":312,"y":252,"id":252,"sizeY":24},{"sizeX":24,"x":312,"y":144,"id":253,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":254,"sizeY":24},{"sizeX":24,"x":240,"y":144,"id":255,"sizeY":24},{"sizeX":24,"x":240,"y":180,"id":256,"sizeY":24},{"sizeX":24,"x":312,"y":108,"id":257,"sizeY":24},{"sizeX":24,"x":432,"y":252,"id":258,"sizeY":24},{"sizeX":24,"x":396,"y":252,"id":259,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":610,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":798,"sizeY":24},{"sizeX":24,"x":180,"y":216,"id":1002,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1070,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1071,"sizeY":24},{"sizeX":24,"x":360,"y":72,"id":1096,"sizeY":24},{"sizeX":24,"x":432,"y":180,"id":1100,"sizeY":24},{"sizeX":24,"x":468,"y":180,"id":1101,"sizeY":24},{"sizeX":24,"x":504,"y":180,"id":1103,"sizeY":24},{"sizeX":24,"x":468,"y":216,"id":1104,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1106,"sizeY":24},{"sizeX":24,"x":84,"y":36,"id":1158,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":1159,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":1177,"sizeY":24},{"sizeX":24,"x":240,"y":216,"id":1286,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":1368,"sizeY":24},{"sizeX":24,"x":240,"y":108,"id":1369,"sizeY":24},{"sizeX":24,"x":276,"y":108,"id":1370,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":1565,"sizeY":24},{"sizeX":24,"x":276,"y":72,"id":1778,"sizeY":24},{"sizeX":24,"x":132,"y":36,"id":1837,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1838,"sizeY":24},{"sizeX":24,"x":396,"y":216,"id":1912,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":1995,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1996,"sizeY":24},{"sizeX":24,"x":144,"y":216,"id":1997,"sizeY":24},{"sizeX":24,"x":432,"y":216,"id":1998,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":2042,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2046,"sizeY":24},{"sizeX":24,"x":312,"y":36,"id":2050,"sizeY":24},{"sizeX":24,"x":132,"y":0,"id":2059,"sizeY":24},{"sizeX":24,"x":312,"y":288,"id":2060,"sizeY":24},{"sizeX":24,"x":342,"y":288,"id":2061,"sizeY":24},{"sizeX":24,"x":342,"y":324,"id":2062,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":2063,"sizeY":24},{"sizeX":24,"x":240,"y":36,"id":2065,"sizeY":24},{"sizeX":24,"x":276,"y":36,"id":2066,"sizeY":24},{"sizeX":24,"x":468,"y":252,"id":2067,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":2146,"sizeY":24},{"sizeX":24,"x":120,"y":108,"id":2147,"sizeY":24},{"sizeX":24,"x":396,"y":288,"id":2259,"sizeY":24}],"lineID":22,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Novice Thaumaturge","icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"aqua":5000,"terra":5000,"ignis":5000,"cap":"gold","rod":"greatwood","ordo":5000,"perditio":5000,"aer":5000},"Damage":9,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Magic lies beyond. Great achievements, but also a lot of work. I shall be your guide. Follow my instructions, and you shall become a great wizard, like me."}},"order":22},{"quests":[{"sizeX":24,"x":132,"y":96,"id":260,"sizeY":24},{"sizeX":24,"x":408,"y":132,"id":261,"sizeY":24},{"sizeX":24,"x":408,"y":96,"id":262,"sizeY":24},{"sizeX":24,"x":360,"y":132,"id":263,"sizeY":24},{"sizeX":24,"x":276,"y":120,"id":264,"sizeY":24},{"sizeX":24,"x":240,"y":96,"id":265,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":266,"sizeY":24},{"sizeX":24,"x":276,"y":192,"id":267,"sizeY":24},{"sizeX":24,"x":276,"y":156,"id":268,"sizeY":24},{"sizeX":24,"x":276,"y":36,"id":269,"sizeY":24},{"sizeX":24,"x":276,"y":0,"id":270,"sizeY":24},{"sizeX":24,"x":276,"y":72,"id":271,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":272,"sizeY":24},{"sizeX":24,"x":408,"y":204,"id":273,"sizeY":24},{"sizeX":24,"x":408,"y":168,"id":274,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":275,"sizeY":24},{"sizeX":24,"x":96,"y":168,"id":276,"sizeY":24},{"sizeX":24,"x":96,"y":132,"id":277,"sizeY":24},{"sizeX":24,"x":132,"y":216,"id":278,"sizeY":24},{"sizeX":24,"x":504,"y":168,"id":279,"sizeY":24},{"sizeX":24,"x":540,"y":168,"id":280,"sizeY":24},{"sizeX":24,"x":576,"y":168,"id":281,"sizeY":24},{"sizeX":24,"x":576,"y":132,"id":282,"sizeY":24},{"sizeX":24,"x":504,"y":204,"id":283,"sizeY":24},{"sizeX":24,"x":504,"y":252,"id":284,"sizeY":24},{"sizeX":24,"x":504,"y":132,"id":285,"sizeY":24},{"sizeX":24,"x":540,"y":96,"id":286,"sizeY":24},{"sizeX":24,"x":540,"y":132,"id":287,"sizeY":24},{"sizeX":24,"x":468,"y":132,"id":288,"sizeY":24},{"sizeX":24,"x":576,"y":96,"id":289,"sizeY":24},{"sizeX":24,"x":96,"y":288,"id":290,"sizeY":24},{"sizeX":24,"x":228,"y":252,"id":291,"sizeY":24},{"sizeX":24,"x":276,"y":252,"id":292,"sizeY":24},{"sizeX":24,"x":324,"y":252,"id":293,"sizeY":24},{"sizeX":24,"x":372,"y":252,"id":294,"sizeY":24},{"sizeX":24,"x":168,"y":288,"id":295,"sizeY":24},{"sizeX":24,"x":132,"y":288,"id":296,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":297,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":298,"sizeY":24},{"sizeX":24,"x":168,"y":252,"id":299,"sizeY":24},{"sizeX":24,"x":228,"y":288,"id":300,"sizeY":24},{"sizeX":24,"x":96,"y":252,"id":301,"sizeY":24},{"sizeX":24,"x":168,"y":132,"id":302,"sizeY":24},{"sizeX":24,"x":360,"y":168,"id":303,"sizeY":24},{"sizeX":24,"x":360,"y":204,"id":304,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":305,"sizeY":24},{"sizeX":24,"x":204,"y":132,"id":306,"sizeY":24},{"sizeX":24,"x":468,"y":96,"id":833,"sizeY":24},{"sizeX":24,"x":204,"y":36,"id":877,"sizeY":24},{"sizeX":24,"x":324,"y":168,"id":878,"sizeY":24},{"sizeX":24,"x":204,"y":72,"id":879,"sizeY":24},{"sizeX":24,"x":324,"y":204,"id":887,"sizeY":24},{"sizeX":24,"x":132,"y":48,"id":1055,"sizeY":24},{"sizeX":24,"x":132,"y":12,"id":1097,"sizeY":24},{"sizeX":24,"x":168,"y":12,"id":1098,"sizeY":24},{"sizeX":24,"x":96,"y":12,"id":1099,"sizeY":24},{"sizeX":24,"x":408,"y":48,"id":1102,"sizeY":24},{"sizeX":24,"x":408,"y":0,"id":1105,"sizeY":24},{"sizeX":24,"x":324,"y":132,"id":1191,"sizeY":24},{"sizeX":24,"x":48,"y":216,"id":1382,"sizeY":24},{"sizeX":24,"x":48,"y":168,"id":1383,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":1401,"sizeY":24},{"sizeX":24,"x":444,"y":168,"id":1402,"sizeY":24},{"sizeX":24,"x":60,"y":12,"id":1875,"sizeY":24},{"sizeX":24,"x":204,"y":168,"id":1992,"sizeY":24},{"sizeX":24,"x":240,"y":132,"id":1993,"sizeY":24},{"sizeX":24,"x":240,"y":168,"id":1994,"sizeY":24},{"sizeX":24,"x":336,"y":72,"id":2020,"sizeY":24},{"sizeX":24,"x":378,"y":72,"id":2021,"sizeY":24},{"sizeX":24,"x":336,"y":36,"id":2022,"sizeY":24},{"sizeX":24,"x":48,"y":252,"id":2064,"sizeY":24},{"sizeX":24,"x":408,"y":252,"id":2068,"sizeY":24},{"sizeX":24,"x":276,"y":288,"id":2267,"sizeY":24},{"sizeX":24,"x":444,"y":48,"id":2268,"sizeY":24}],"lineID":23,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Adept Thaumaturgy","icon":{"id":"Thaumcraft:WandCasting","Count":1,"tag":{"cap":"orichalcum","rod":"neutronium_staff","AttributeModifiers":[{"UUIDMost":-3801225194067177500,"UUIDLeast":-6586624321849019000,"Amount":6,"AttributeName":"generic.attackDamage","Operation":0,"Name":"Weapon modifier"}]},"Damage":2000,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Warp included."}},"order":23},{"quests":[{"sizeX":24,"x":144,"y":0,"id":307,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":309,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":310,"sizeY":24},{"sizeX":24,"x":192,"y":180,"id":311,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":312,"sizeY":24},{"sizeX":24,"x":192,"y":108,"id":313,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":314,"sizeY":24},{"sizeX":24,"x":192,"y":144,"id":315,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":316,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":317,"sizeY":24},{"sizeX":24,"x":192,"y":72,"id":318,"sizeY":24},{"sizeX":24,"x":48,"y":144,"id":319,"sizeY":24},{"sizeX":24,"x":96,"y":72,"id":320,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":321,"sizeY":24},{"sizeX":24,"x":48,"y":180,"id":322,"sizeY":24},{"sizeX":24,"x":48,"y":108,"id":323,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":324,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":325,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":326,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":327,"sizeY":24},{"sizeX":24,"x":288,"y":72,"id":328,"sizeY":24},{"sizeX":24,"x":96,"y":36,"id":329,"sizeY":24},{"sizeX":24,"x":96,"y":180,"id":330,"sizeY":24},{"sizeX":24,"x":96,"y":144,"id":331,"sizeY":24},{"sizeX":24,"x":48,"y":36,"id":1109,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":1110,"sizeY":24}],"lineID":24,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Kaaami, Haaaami, ... HA!","icon":{"id":"ThaumicTinkerer:kamiResource","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Ultimate (magical) POWER!!!"}},"order":24},{"quests":[{"sizeX":24,"x":132,"y":0,"id":1372,"sizeY":24},{"sizeX":24,"x":132,"y":36,"id":1373,"sizeY":24},{"sizeX":24,"x":84,"y":36,"id":1374,"sizeY":24},{"sizeX":24,"x":180,"y":36,"id":1375,"sizeY":24},{"sizeX":24,"x":228,"y":36,"id":1376,"sizeY":24},{"sizeX":24,"x":132,"y":72,"id":1377,"sizeY":24},{"sizeX":24,"x":228,"y":72,"id":1378,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1380,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":1381,"sizeY":24},{"sizeX":24,"x":84,"y":72,"id":1384,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":1385,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1386,"sizeY":24},{"sizeX":24,"x":84,"y":108,"id":1387,"sizeY":24},{"sizeX":24,"x":84,"y":144,"id":1388,"sizeY":24},{"sizeX":24,"x":84,"y":180,"id":1389,"sizeY":24},{"sizeX":24,"x":132,"y":108,"id":1390,"sizeY":24},{"sizeX":24,"x":132,"y":180,"id":1391,"sizeY":24},{"sizeX":24,"x":180,"y":180,"id":1392,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1393,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1394,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1395,"sizeY":24},{"sizeX":24,"x":228,"y":180,"id":1396,"sizeY":24},{"sizeX":24,"x":228,"y":216,"id":1397,"sizeY":24},{"sizeX":24,"x":276,"y":216,"id":1398,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":1399,"sizeY":24},{"sizeX":24,"x":276,"y":108,"id":1400,"sizeY":24}],"lineID":25,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Focus on Wand Foci","icon":{"id":"Thaumcraft:FocusPrimal","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Did you know which wand focus is useful and which not?"}},"order":25},{"quests":[{"sizeX":24,"x":42,"y":42,"id":1332,"sizeY":24},{"sizeX":24,"x":210,"y":42,"id":1333,"sizeY":24},{"sizeX":24,"x":252,"y":42,"id":1334,"sizeY":24},{"sizeX":24,"x":0,"y":42,"id":1335,"sizeY":24},{"sizeX":24,"x":42,"y":84,"id":1336,"sizeY":24},{"sizeX":24,"x":0,"y":84,"id":1337,"sizeY":24},{"sizeX":24,"x":42,"y":126,"id":1338,"sizeY":24},{"sizeX":24,"x":186,"y":0,"id":1339,"sizeY":24},{"sizeX":24,"x":168,"y":42,"id":1340,"sizeY":24},{"sizeX":24,"x":234,"y":0,"id":1341,"sizeY":24},{"sizeX":24,"x":210,"y":84,"id":1342,"sizeY":24},{"sizeX":24,"x":294,"y":0,"id":1343,"sizeY":24},{"sizeX":24,"x":294,"y":42,"id":1344,"sizeY":24},{"sizeX":24,"x":294,"y":84,"id":1345,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":1346,"sizeY":24},{"sizeX":24,"x":336,"y":42,"id":1347,"sizeY":24},{"sizeX":24,"x":336,"y":84,"id":1348,"sizeY":24},{"sizeX":24,"x":126,"y":0,"id":1349,"sizeY":24},{"sizeX":24,"x":126,"y":42,"id":1350,"sizeY":24},{"sizeX":24,"x":126,"y":84,"id":1351,"sizeY":24},{"sizeX":24,"x":84,"y":84,"id":1352,"sizeY":24},{"sizeX":24,"x":42,"y":0,"id":1353,"sizeY":24},{"sizeX":24,"x":84,"y":0,"id":1354,"sizeY":24},{"sizeX":24,"x":294,"y":126,"id":1355,"sizeY":24},{"sizeX":24,"x":294,"y":168,"id":1356,"sizeY":24},{"sizeX":24,"x":84,"y":42,"id":1357,"sizeY":24},{"sizeX":24,"x":168,"y":84,"id":1358,"sizeY":24},{"sizeX":24,"x":168,"y":126,"id":1359,"sizeY":24},{"sizeX":24,"x":210,"y":126,"id":1360,"sizeY":24},{"sizeX":24,"x":378,"y":0,"id":1361,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1362,"sizeY":24},{"sizeX":24,"x":378,"y":42,"id":2260,"sizeY":24},{"sizeX":24,"x":378,"y":84,"id":2261,"sizeY":24},{"sizeX":24,"x":378,"y":126,"id":2262,"sizeY":24}],"lineID":26,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Electro Magic","icon":{"id":"EMT:electricCloud","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This Tab focus on Electro Magic Tools and Thaumic Energistics. These are some nice mods, that will help you with machinery and magic."}},"order":26},{"quests":[{"sizeX":24,"x":66,"y":36,"id":332,"sizeY":24},{"sizeX":24,"x":156,"y":180,"id":333,"sizeY":24},{"sizeX":24,"x":168,"y":72,"id":334,"sizeY":24},{"sizeX":24,"x":396,"y":288,"id":335,"sizeY":24},{"sizeX":24,"x":210,"y":162,"id":336,"sizeY":24},{"sizeX":24,"x":204,"y":108,"id":337,"sizeY":24},{"sizeX":24,"x":588,"y":444,"id":338,"sizeY":24},{"sizeX":24,"x":348,"y":384,"id":339,"sizeY":24},{"sizeX":24,"x":300,"y":360,"id":340,"sizeY":24},{"sizeX":24,"x":264,"y":384,"id":341,"sizeY":24},{"sizeX":24,"x":276,"y":420,"id":342,"sizeY":24},{"sizeX":24,"x":324,"y":246,"id":343,"sizeY":24},{"sizeX":24,"x":456,"y":240,"id":344,"sizeY":24},{"sizeX":24,"x":336,"y":312,"id":345,"sizeY":24},{"sizeX":24,"x":456,"y":312,"id":346,"sizeY":24},{"sizeX":24,"x":480,"y":276,"id":347,"sizeY":24},{"sizeX":24,"x":360,"y":222,"id":348,"sizeY":24},{"sizeX":24,"x":324,"y":408,"id":349,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1554,"sizeY":24},{"sizeX":24,"x":108,"y":84,"id":1555,"sizeY":24},{"sizeX":24,"x":24,"y":204,"id":1556,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1557,"sizeY":24},{"sizeX":24,"x":48,"y":156,"id":1558,"sizeY":24},{"sizeX":24,"x":108,"y":120,"id":1559,"sizeY":24},{"sizeX":24,"x":24,"y":36,"id":1560,"sizeY":24},{"sizeX":24,"x":120,"y":156,"id":1561,"sizeY":24},{"sizeX":24,"x":252,"y":180,"id":1562,"sizeY":24},{"sizeX":24,"x":276,"y":144,"id":1563,"sizeY":24},{"sizeX":24,"x":324,"y":132,"id":1564,"sizeY":24},{"sizeX":24,"x":372,"y":156,"id":1566,"sizeY":24},{"sizeX":24,"x":396,"y":204,"id":1567,"sizeY":24},{"sizeX":24,"x":84,"y":168,"id":1568,"sizeY":24},{"sizeX":24,"x":36,"y":120,"id":1569,"sizeY":24},{"sizeX":24,"x":444,"y":360,"id":1570,"sizeY":24},{"sizeX":24,"x":384,"y":336,"id":1571,"sizeY":24},{"sizeX":24,"x":456,"y":456,"id":1572,"sizeY":24},{"sizeX":24,"x":408,"y":384,"id":1573,"sizeY":24},{"sizeX":24,"x":396,"y":432,"id":1574,"sizeY":24},{"sizeX":24,"x":96,"y":216,"id":1575,"sizeY":24},{"sizeX":24,"x":516,"y":408,"id":1576,"sizeY":24},{"sizeX":24,"x":588,"y":396,"id":1577,"sizeY":24},{"sizeX":24,"x":648,"y":432,"id":1578,"sizeY":24},{"sizeX":24,"x":708,"y":468,"id":1579,"sizeY":24},{"sizeX":24,"x":684,"y":324,"id":1580,"sizeY":24},{"sizeX":24,"x":600,"y":348,"id":1581,"sizeY":24},{"sizeX":24,"x":792,"y":492,"id":1582,"sizeY":24},{"sizeX":24,"x":732,"y":528,"id":1583,"sizeY":24},{"sizeX":24,"x":540,"y":600,"id":1584,"sizeY":24},{"sizeX":24,"x":540,"y":480,"id":1585,"sizeY":24},{"sizeX":24,"x":504,"y":528,"id":1586,"sizeY":24},{"sizeX":24,"x":492,"y":576,"id":1587,"sizeY":24},{"sizeX":24,"x":576,"y":492,"id":1588,"sizeY":24},{"sizeX":24,"x":504,"y":492,"id":1589,"sizeY":24},{"sizeX":24,"x":456,"y":624,"id":1590,"sizeY":24},{"sizeX":24,"x":540,"y":528,"id":1591,"sizeY":24},{"sizeX":24,"x":540,"y":672,"id":1592,"sizeY":24},{"sizeX":24,"x":504,"y":636,"id":1593,"sizeY":24},{"sizeX":24,"x":588,"y":660,"id":1594,"sizeY":24},{"sizeX":24,"x":576,"y":624,"id":1595,"sizeY":24},{"sizeX":24,"x":468,"y":672,"id":1596,"sizeY":24},{"sizeX":24,"x":588,"y":576,"id":1597,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1645,"sizeY":24},{"sizeX":24,"x":306,"y":282,"id":1646,"sizeY":24},{"sizeX":24,"x":216,"y":456,"id":1647,"sizeY":24},{"sizeX":24,"x":240,"y":324,"id":1648,"sizeY":24},{"sizeX":24,"x":120,"y":0,"id":1649,"sizeY":24},{"sizeX":24,"x":180,"y":12,"id":1650,"sizeY":24},{"sizeX":24,"x":204,"y":48,"id":1651,"sizeY":24}],"lineID":27,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Look to the edges","icon":{"id":"witchery:witchesovenidle","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Granny Weatherwax would approve."}},"order":27},{"quests":[{"sizeX":24,"x":0,"y":0,"id":161,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":164,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":177,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":407,"sizeY":24},{"sizeX":24,"x":156,"y":72,"id":408,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":409,"sizeY":24},{"sizeX":24,"x":276,"y":0,"id":410,"sizeY":24},{"sizeX":24,"x":240,"y":120,"id":411,"sizeY":24},{"sizeX":24,"x":240,"y":72,"id":412,"sizeY":24},{"sizeX":24,"x":276,"y":96,"id":413,"sizeY":24},{"sizeX":24,"x":312,"y":72,"id":414,"sizeY":24},{"sizeX":24,"x":312,"y":120,"id":415,"sizeY":24},{"sizeX":24,"x":108,"y":120,"id":1325,"sizeY":24}],"lineID":28,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Paying the highest price","icon":{"id":"AWWayofTime:blankSlate","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"When regular magic just won't cover it, pay demons to do it for you! The cost might scare some people... But no risk no fun!"}},"order":28},{"quests":[{"sizeX":24,"x":336,"y":36,"id":228,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":416,"sizeY":24},{"sizeX":24,"x":72,"y":168,"id":417,"sizeY":24},{"sizeX":24,"x":0,"y":168,"id":418,"sizeY":24},{"sizeX":24,"x":36,"y":168,"id":419,"sizeY":24},{"sizeX":24,"x":372,"y":0,"id":420,"sizeY":24},{"sizeX":24,"x":300,"y":0,"id":421,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":422,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":423,"sizeY":24},{"sizeX":24,"x":300,"y":72,"id":424,"sizeY":24},{"sizeX":24,"x":336,"y":72,"id":425,"sizeY":24},{"sizeX":24,"x":300,"y":108,"id":426,"sizeY":24},{"sizeX":24,"x":372,"y":108,"id":427,"sizeY":24},{"sizeX":24,"x":372,"y":72,"id":428,"sizeY":24},{"sizeX":24,"x":300,"y":168,"id":429,"sizeY":24},{"sizeX":24,"x":264,"y":168,"id":430,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":431,"sizeY":24},{"sizeX":24,"x":216,"y":168,"id":432,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":433,"sizeY":24},{"sizeX":24,"x":144,"y":168,"id":434,"sizeY":24},{"sizeX":24,"x":180,"y":168,"id":435,"sizeY":24},{"sizeX":24,"x":108,"y":168,"id":436,"sizeY":24},{"sizeX":24,"x":216,"y":108,"id":437,"sizeY":24},{"sizeX":24,"x":336,"y":108,"id":438,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":463,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":926,"sizeY":24},{"sizeX":24,"x":264,"y":72,"id":927,"sizeY":24}],"lineID":29,"properties":{"betterquesting":{"visibility":"NORMAL","name":"More blood, more stuff","icon":{"id":"AWWayofTime:magicianBloodOrb","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Advanced Blood Magic? My veins feel weird..."}},"order":29},{"quests":[{"sizeX":24,"x":0,"y":72,"id":406,"sizeY":24},{"sizeX":24,"x":252,"y":108,"id":700,"sizeY":24},{"sizeX":24,"x":252,"y":72,"id":701,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":702,"sizeY":24},{"sizeX":24,"x":144,"y":36,"id":703,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":704,"sizeY":24},{"sizeX":24,"x":252,"y":36,"id":706,"sizeY":24},{"sizeX":24,"x":288,"y":36,"id":707,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":708,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":709,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":710,"sizeY":24},{"sizeX":24,"x":324,"y":36,"id":711,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":712,"sizeY":24},{"sizeX":24,"x":288,"y":72,"id":713,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":714,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":715,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":928,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":929,"sizeY":24}],"lineID":30,"properties":{"betterquesting":{"visibility":"NORMAL","name":"They are coming...","icon":{"id":"AWWayofTime:bloodMagicBaseItems","Count":1,"Damage":28,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The spirits that I've called... Demon invasions and beyond. Really deep into dark magic!"}},"order":30},{"quests":[{"sizeX":24,"x":108,"y":42,"id":1745,"sizeY":24},{"sizeX":24,"x":90,"y":0,"id":1746,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":1747,"sizeY":24},{"sizeX":24,"x":60,"y":60,"id":1748,"sizeY":24},{"sizeX":24,"x":156,"y":24,"id":1749,"sizeY":24},{"sizeX":24,"x":156,"y":144,"id":1750,"sizeY":24},{"sizeX":24,"x":216,"y":144,"id":1751,"sizeY":24},{"sizeX":24,"x":60,"y":24,"id":1752,"sizeY":24},{"sizeX":24,"x":60,"y":144,"id":1753,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1754,"sizeY":24},{"sizeX":24,"x":30,"y":144,"id":1755,"sizeY":24},{"sizeX":24,"x":186,"y":144,"id":1756,"sizeY":24},{"sizeX":24,"x":126,"y":0,"id":1757,"sizeY":24},{"sizeX":24,"x":156,"y":60,"id":1758,"sizeY":24},{"sizeX":24,"x":108,"y":102,"id":1759,"sizeY":24},{"sizeX":24,"x":90,"y":144,"id":1760,"sizeY":24},{"sizeX":24,"x":138,"y":216,"id":1761,"sizeY":24},{"sizeX":24,"x":126,"y":144,"id":1762,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1763,"sizeY":24},{"sizeX":24,"x":198,"y":216,"id":1764,"sizeY":24},{"sizeX":24,"x":108,"y":270,"id":1765,"sizeY":24},{"sizeX":24,"x":126,"y":312,"id":1766,"sizeY":24},{"sizeX":24,"x":162,"y":312,"id":1767,"sizeY":24},{"sizeX":24,"x":54,"y":312,"id":1768,"sizeY":24},{"sizeX":24,"x":90,"y":312,"id":1769,"sizeY":24},{"sizeX":24,"x":18,"y":312,"id":1771,"sizeY":24},{"sizeX":24,"x":162,"y":348,"id":1772,"sizeY":24},{"sizeX":24,"x":126,"y":348,"id":1773,"sizeY":24},{"sizeX":24,"x":90,"y":348,"id":1774,"sizeY":24},{"sizeX":24,"x":54,"y":348,"id":1775,"sizeY":24},{"sizeX":24,"x":18,"y":348,"id":1776,"sizeY":24},{"sizeX":24,"x":72,"y":270,"id":1777,"sizeY":24}],"lineID":31,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Open Computers","icon":{"id":"OpenComputers:item","Count":1,"Damage":103,"OreDict":""},"bg_image":"","bg_size":256,"desc":"The magical world of ingame programming!"}},"order":31},{"quests":[{"sizeX":24,"x":72,"y":0,"id":1989,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1990,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":1991,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1999,"sizeY":24},{"sizeX":24,"x":108,"y":108,"id":2000,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":2001,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":2002,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":2003,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":2004,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":2009,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":2010,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":2011,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":2012,"sizeY":24},{"sizeX":24,"x":180,"y":72,"id":2013,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2015,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":2016,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2017,"sizeY":24},{"sizeX":24,"x":72,"y":-36,"id":2019,"sizeY":24}],"lineID":32,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Stacy's Factory Manager","icon":{"id":"StevesFactoryManager:BlockMachineManagerName","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Right? Right."}},"order":32},{"quests":[{"sizeX":24,"x":132,"y":0,"id":490,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":666,"sizeY":24},{"sizeX":24,"x":216,"y":36,"id":667,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":668,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":669,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":670,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":671,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":672,"sizeY":24},{"sizeX":24,"x":408,"y":36,"id":674,"sizeY":24},{"sizeX":24,"x":360,"y":36,"id":675,"sizeY":24},{"sizeX":24,"x":384,"y":72,"id":676,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":677,"sizeY":24},{"sizeX":24,"x":216,"y":96,"id":866,"sizeY":24},{"sizeX":24,"x":132,"y":48,"id":874,"sizeY":24},{"sizeX":24,"x":264,"y":0,"id":1181,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":1182,"sizeY":24},{"sizeX":24,"x":312,"y":0,"id":1183,"sizeY":24},{"sizeX":24,"x":360,"y":0,"id":1184,"sizeY":24},{"sizeX":24,"x":408,"y":0,"id":1185,"sizeY":24},{"sizeX":24,"x":168,"y":96,"id":1186,"sizeY":24},{"sizeX":24,"x":216,"y":168,"id":1187,"sizeY":24},{"sizeX":24,"x":168,"y":168,"id":1188,"sizeY":24},{"sizeX":24,"x":264,"y":168,"id":1189,"sizeY":24},{"sizeX":24,"x":312,"y":168,"id":1190,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":1379,"sizeY":24},{"sizeX":24,"x":216,"y":216,"id":1810,"sizeY":24}],"lineID":33,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Transportation","icon":{"id":"minecraft:activator_rail","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"From four legged steeds to iron horses"}},"order":33},{"quests":[{"sizeX":24,"x":384,"y":336,"id":204,"sizeY":24},{"sizeX":24,"x":384,"y":372,"id":205,"sizeY":24},{"sizeX":24,"x":120,"y":0,"id":809,"sizeY":24},{"sizeX":24,"x":108,"y":216,"id":810,"sizeY":24},{"sizeX":24,"x":36,"y":60,"id":811,"sizeY":24},{"sizeX":24,"x":120,"y":60,"id":812,"sizeY":24},{"sizeX":24,"x":156,"y":96,"id":813,"sizeY":24},{"sizeX":24,"x":84,"y":96,"id":814,"sizeY":24},{"sizeX":24,"x":204,"y":96,"id":815,"sizeY":24},{"sizeX":24,"x":252,"y":132,"id":816,"sizeY":24},{"sizeX":24,"x":252,"y":96,"id":817,"sizeY":24},{"sizeX":24,"x":288,"y":132,"id":818,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":819,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":820,"sizeY":24},{"sizeX":24,"x":0,"y":216,"id":821,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":822,"sizeY":24},{"sizeX":24,"x":252,"y":0,"id":823,"sizeY":24},{"sizeX":24,"x":288,"y":96,"id":824,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":827,"sizeY":24},{"sizeX":24,"x":336,"y":132,"id":828,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":829,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":830,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":831,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":832,"sizeY":24},{"sizeX":24,"x":168,"y":216,"id":1067,"sizeY":24},{"sizeX":24,"x":72,"y":252,"id":1068,"sizeY":24},{"sizeX":24,"x":168,"y":252,"id":1072,"sizeY":24},{"sizeX":24,"x":36,"y":336,"id":1371,"sizeY":24},{"sizeX":24,"x":204,"y":216,"id":1426,"sizeY":24},{"sizeX":24,"x":300,"y":252,"id":1427,"sizeY":24},{"sizeX":24,"x":252,"y":216,"id":1428,"sizeY":24},{"sizeX":24,"x":300,"y":300,"id":1429,"sizeY":24},{"sizeX":24,"x":300,"y":216,"id":1430,"sizeY":24},{"sizeX":24,"x":336,"y":216,"id":1431,"sizeY":24},{"sizeX":24,"x":252,"y":252,"id":1432,"sizeY":24},{"sizeX":24,"x":252,"y":168,"id":1433,"sizeY":24},{"sizeX":24,"x":336,"y":168,"id":1434,"sizeY":24},{"sizeX":24,"x":288,"y":168,"id":1435,"sizeY":24},{"sizeX":24,"x":384,"y":168,"id":1436,"sizeY":24},{"sizeX":24,"x":204,"y":252,"id":1437,"sizeY":24},{"sizeX":24,"x":132,"y":336,"id":1439,"sizeY":24},{"sizeX":24,"x":132,"y":252,"id":1440,"sizeY":24},{"sizeX":24,"x":72,"y":288,"id":1441,"sizeY":24},{"sizeX":24,"x":108,"y":288,"id":1445,"sizeY":24},{"sizeX":24,"x":300,"y":372,"id":1446,"sizeY":24},{"sizeX":24,"x":336,"y":408,"id":1447,"sizeY":24},{"sizeX":24,"x":228,"y":468,"id":1448,"sizeY":24},{"sizeX":24,"x":336,"y":372,"id":1449,"sizeY":24},{"sizeX":24,"x":384,"y":408,"id":1450,"sizeY":24},{"sizeX":24,"x":420,"y":408,"id":1451,"sizeY":24},{"sizeX":24,"x":420,"y":372,"id":1452,"sizeY":24},{"sizeX":24,"x":300,"y":408,"id":1453,"sizeY":24},{"sizeX":24,"x":300,"y":540,"id":1454,"sizeY":24},{"sizeX":24,"x":336,"y":468,"id":1456,"sizeY":24},{"sizeX":24,"x":264,"y":468,"id":1457,"sizeY":24},{"sizeX":24,"x":384,"y":468,"id":1458,"sizeY":24},{"sizeX":24,"x":420,"y":468,"id":1459,"sizeY":24},{"sizeX":24,"x":192,"y":468,"id":1460,"sizeY":24},{"sizeX":24,"x":336,"y":252,"id":1462,"sizeY":24},{"sizeX":24,"x":300,"y":576,"id":1463,"sizeY":24},{"sizeX":24,"x":336,"y":336,"id":1464,"sizeY":24},{"sizeX":24,"x":228,"y":300,"id":1465,"sizeY":24},{"sizeX":24,"x":228,"y":336,"id":1466,"sizeY":24},{"sizeX":24,"x":264,"y":300,"id":1467,"sizeY":24},{"sizeX":24,"x":336,"y":300,"id":1468,"sizeY":24},{"sizeX":24,"x":264,"y":336,"id":1469,"sizeY":24},{"sizeX":24,"x":228,"y":372,"id":1470,"sizeY":24},{"sizeX":24,"x":264,"y":372,"id":1471,"sizeY":24},{"sizeX":24,"x":384,"y":252,"id":1472,"sizeY":24},{"sizeX":24,"x":156,"y":468,"id":1473,"sizeY":24},{"sizeX":24,"x":342,"y":540,"id":1530,"sizeY":24},{"sizeX":24,"x":384,"y":576,"id":1531,"sizeY":24},{"sizeX":24,"x":342,"y":576,"id":1532,"sizeY":24},{"sizeX":24,"x":342,"y":624,"id":1535,"sizeY":24},{"sizeX":24,"x":300,"y":624,"id":1723,"sizeY":24},{"sizeX":24,"x":228,"y":624,"id":1724,"sizeY":24},{"sizeX":24,"x":204,"y":564,"id":1725,"sizeY":24},{"sizeX":24,"x":96,"y":624,"id":1726,"sizeY":24},{"sizeX":24,"x":216,"y":720,"id":1727,"sizeY":24},{"sizeX":24,"x":156,"y":552,"id":1728,"sizeY":24},{"sizeX":24,"x":192,"y":648,"id":1729,"sizeY":24},{"sizeX":24,"x":192,"y":600,"id":1730,"sizeY":24},{"sizeX":24,"x":216,"y":528,"id":1731,"sizeY":24},{"sizeX":24,"x":426,"y":540,"id":1732,"sizeY":24},{"sizeX":24,"x":426,"y":576,"id":1733,"sizeY":24},{"sizeX":24,"x":384,"y":540,"id":1734,"sizeY":24},{"sizeX":24,"x":72,"y":180,"id":1742,"sizeY":24},{"sizeX":24,"x":372,"y":300,"id":1743,"sizeY":24},{"sizeX":24,"x":168,"y":288,"id":1840,"sizeY":24},{"sizeX":24,"x":72,"y":144,"id":2072,"sizeY":24}],"lineID":34,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Space Race","icon":{"id":"GalaxySpace:item.Tier6Rocket","Count":1,"Damage":4,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A guide to help you start Galacticraft and reach the Moon"}},"order":34},{"quests":[{"sizeX":24,"x":228,"y":48,"id":178,"sizeY":24},{"sizeX":24,"x":228,"y":12,"id":179,"sizeY":24},{"sizeX":24,"x":468,"y":48,"id":180,"sizeY":24},{"sizeX":24,"x":144,"y":72,"id":181,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":182,"sizeY":24},{"sizeX":24,"x":264,"y":96,"id":183,"sizeY":24},{"sizeX":24,"x":192,"y":72,"id":184,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":185,"sizeY":24},{"sizeX":24,"x":108,"y":36,"id":203,"sizeY":24},{"sizeX":24,"x":468,"y":96,"id":1253,"sizeY":24},{"sizeX":24,"x":468,"y":144,"id":1254,"sizeY":24},{"sizeX":24,"x":516,"y":48,"id":1255,"sizeY":24},{"sizeX":24,"x":516,"y":96,"id":1256,"sizeY":24},{"sizeX":24,"x":516,"y":144,"id":1257,"sizeY":24},{"sizeX":24,"x":144,"y":288,"id":1258,"sizeY":24},{"sizeX":24,"x":0,"y":180,"id":1259,"sizeY":24},{"sizeX":24,"x":264,"y":180,"id":1260,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":1290,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":1291,"sizeY":24},{"sizeX":24,"x":228,"y":96,"id":1292,"sizeY":24},{"sizeX":24,"x":228,"y":144,"id":1293,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":1294,"sizeY":24},{"sizeX":24,"x":108,"y":180,"id":1295,"sizeY":24},{"sizeX":24,"x":144,"y":108,"id":1296,"sizeY":24},{"sizeX":24,"x":144,"y":252,"id":1298,"sizeY":24},{"sizeX":24,"x":144,"y":180,"id":1299,"sizeY":24},{"sizeX":24,"x":144,"y":216,"id":1300,"sizeY":24},{"sizeX":24,"x":72,"y":108,"id":1301,"sizeY":24},{"sizeX":24,"x":36,"y":108,"id":1302,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":1303,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":1304,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":1305,"sizeY":24},{"sizeX":24,"x":36,"y":180,"id":1306,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":1308,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":1309,"sizeY":24},{"sizeX":24,"x":312,"y":48,"id":1310,"sizeY":24},{"sizeX":24,"x":312,"y":96,"id":1311,"sizeY":24},{"sizeX":24,"x":312,"y":144,"id":1312,"sizeY":24},{"sizeX":24,"x":360,"y":48,"id":1313,"sizeY":24},{"sizeX":24,"x":360,"y":96,"id":1314,"sizeY":24},{"sizeX":24,"x":360,"y":144,"id":1315,"sizeY":24},{"sizeX":24,"x":396,"y":48,"id":1316,"sizeY":24},{"sizeX":24,"x":396,"y":96,"id":1317,"sizeY":24},{"sizeX":24,"x":396,"y":144,"id":1318,"sizeY":24},{"sizeX":24,"x":432,"y":96,"id":1319,"sizeY":24},{"sizeX":24,"x":312,"y":180,"id":1326,"sizeY":24},{"sizeX":24,"x":264,"y":48,"id":1327,"sizeY":24},{"sizeX":24,"x":264,"y":12,"id":1328,"sizeY":24},{"sizeX":24,"x":72,"y":216,"id":1329,"sizeY":24},{"sizeX":24,"x":36,"y":216,"id":1330,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":1331,"sizeY":24},{"sizeX":24,"x":192,"y":36,"id":2119,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":2120,"sizeY":24},{"sizeX":24,"x":192,"y":108,"id":2136,"sizeY":24},{"sizeX":24,"x":264,"y":144,"id":2137,"sizeY":24}],"lineID":35,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Applied Energistics","icon":{"id":"appliedenergistics2:item.ItemBasicStorageCell.64k","Count":1,"tag":{},"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"AE2 focuses on creating a compact, easily accessible, considerably extendible storage system called an ME Network. "}},"order":35},{"quests":[{"sizeX":24,"x":0,"y":0,"id":2005,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":2006,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":2007,"sizeY":24},{"sizeX":24,"x":0,"y":108,"id":2008,"sizeY":24}],"lineID":36,"properties":{"betterquesting":{"visibility":"NORMAL","name":"An Age of Tech","icon":{"id":"tectech:gt.blockcasingsTT","Count":1,"Damage":9,"OreDict":""},"bg_image":"","bg_size":256,"desc":"I've been keeping a watchful eye on your technological advance - it's time to see the dreams of a technological future! I shall guide you to a whole new complicated series of machinery. Be wary though, these machines will test your resolve (and energy limits) to the extreme. (under construction)"}},"order":36},{"quests":[{"sizeX":24,"x":336,"y":132,"id":537,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":900,"sizeY":24},{"sizeX":24,"x":96,"y":0,"id":901,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":902,"sizeY":24},{"sizeX":24,"x":48,"y":0,"id":903,"sizeY":24},{"sizeX":24,"x":192,"y":0,"id":904,"sizeY":24},{"sizeX":24,"x":240,"y":0,"id":905,"sizeY":24},{"sizeX":24,"x":336,"y":0,"id":906,"sizeY":24},{"sizeX":24,"x":288,"y":0,"id":907,"sizeY":24},{"sizeX":24,"x":384,"y":0,"id":908,"sizeY":24},{"sizeX":24,"x":444,"y":132,"id":909,"sizeY":24},{"sizeX":24,"x":192,"y":96,"id":910,"sizeY":24},{"sizeX":24,"x":372,"y":132,"id":911,"sizeY":24},{"sizeX":24,"x":408,"y":132,"id":912,"sizeY":24},{"sizeX":24,"x":228,"y":132,"id":913,"sizeY":24},{"sizeX":24,"x":264,"y":132,"id":914,"sizeY":24},{"sizeX":24,"x":300,"y":132,"id":915,"sizeY":24},{"sizeX":24,"x":336,"y":96,"id":916,"sizeY":24},{"sizeX":24,"x":408,"y":96,"id":917,"sizeY":24},{"sizeX":24,"x":0,"y":60,"id":918,"sizeY":24},{"sizeX":24,"x":48,"y":60,"id":919,"sizeY":24},{"sizeX":24,"x":96,"y":60,"id":920,"sizeY":24},{"sizeX":24,"x":144,"y":60,"id":921,"sizeY":24},{"sizeX":24,"x":192,"y":60,"id":922,"sizeY":24},{"sizeX":24,"x":240,"y":60,"id":923,"sizeY":24},{"sizeX":24,"x":288,"y":60,"id":924,"sizeY":24},{"sizeX":24,"x":336,"y":60,"id":925,"sizeY":24},{"sizeX":24,"x":192,"y":132,"id":985,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":2073,"sizeY":24},{"sizeX":24,"x":48,"y":96,"id":2074,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":2075,"sizeY":24},{"sizeX":24,"x":48,"y":132,"id":2076,"sizeY":24},{"sizeX":24,"x":0,"y":132,"id":2077,"sizeY":24},{"sizeX":24,"x":96,"y":132,"id":2078,"sizeY":24},{"sizeX":24,"x":48,"y":168,"id":2079,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":2111,"sizeY":24}],"lineID":37,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Kill all the things","icon":{"id":"TwilightForest:item.trophy","Count":1,"Damage":2,"OreDict":""},"bg_image":"","bg_size":256,"desc":"This world is full of nasty things. Time to kill some and improve your reputation."}},"order":37},{"quests":[{"sizeX":24,"x":0,"y":0,"id":600,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":601,"sizeY":24},{"sizeX":24,"x":0,"y":36,"id":602,"sizeY":24},{"sizeX":24,"x":72,"y":36,"id":603,"sizeY":24},{"sizeX":24,"x":108,"y":72,"id":605,"sizeY":24},{"sizeX":24,"x":36,"y":72,"id":606,"sizeY":24},{"sizeX":24,"x":72,"y":72,"id":607,"sizeY":24},{"sizeX":24,"x":36,"y":36,"id":986,"sizeY":24},{"sizeX":24,"x":36,"y":0,"id":2286,"sizeY":24}],"lineID":38,"properties":{"betterquesting":{"visibility":"NORMAL","name":"To grind, or not to grind","icon":{"id":"ExtraUtilities:defoliageAxe","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"That is the question. Do you want good tools? Well, then go grind stuff! The rewards of these quests are worth it, trust me."}},"order":38},{"quests":[{"sizeX":24,"x":252,"y":72,"id":308,"sizeY":24},{"sizeX":24,"x":204,"y":72,"id":350,"sizeY":24},{"sizeX":24,"x":0,"y":72,"id":351,"sizeY":24},{"sizeX":24,"x":48,"y":72,"id":352,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":353,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":354,"sizeY":24},{"sizeX":24,"x":96,"y":36,"id":355,"sizeY":24},{"sizeX":24,"x":156,"y":36,"id":356,"sizeY":24},{"sizeX":24,"x":96,"y":72,"id":357,"sizeY":24},{"sizeX":24,"x":96,"y":108,"id":358,"sizeY":24},{"sizeX":24,"x":156,"y":108,"id":359,"sizeY":24},{"sizeX":24,"x":108,"y":144,"id":360,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":361,"sizeY":24}],"lineID":39,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Quests","icon":{"id":"minecraft:writable_book","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary quest-line with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":39},{"quests":[{"sizeX":24,"x":0,"y":32,"id":362,"sizeY":24},{"sizeX":24,"x":32,"y":32,"id":363,"sizeY":24},{"sizeX":24,"x":64,"y":32,"id":364,"sizeY":24},{"sizeX":24,"x":96,"y":32,"id":365,"sizeY":24},{"sizeX":24,"x":160,"y":32,"id":366,"sizeY":24},{"sizeX":24,"x":128,"y":32,"id":367,"sizeY":24},{"sizeX":24,"x":192,"y":32,"id":368,"sizeY":24},{"sizeX":24,"x":224,"y":32,"id":369,"sizeY":24},{"sizeX":24,"x":256,"y":32,"id":370,"sizeY":24},{"sizeX":24,"x":288,"y":32,"id":371,"sizeY":24},{"sizeX":24,"x":320,"y":32,"id":372,"sizeY":24},{"sizeX":24,"x":352,"y":32,"id":373,"sizeY":24},{"sizeX":24,"x":384,"y":32,"id":374,"sizeY":24},{"sizeX":24,"x":64,"y":64,"id":375,"sizeY":24},{"sizeX":24,"x":96,"y":64,"id":376,"sizeY":24},{"sizeX":24,"x":384,"y":64,"id":377,"sizeY":24},{"sizeX":24,"x":352,"y":64,"id":378,"sizeY":24},{"sizeX":24,"x":320,"y":64,"id":379,"sizeY":24},{"sizeX":24,"x":288,"y":64,"id":380,"sizeY":24},{"sizeX":24,"x":256,"y":64,"id":381,"sizeY":24},{"sizeX":24,"x":224,"y":64,"id":382,"sizeY":24},{"sizeX":24,"x":192,"y":64,"id":383,"sizeY":24},{"sizeX":24,"x":160,"y":64,"id":384,"sizeY":24},{"sizeX":24,"x":128,"y":64,"id":385,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":386,"sizeY":24},{"sizeX":24,"x":0,"y":64,"id":387,"sizeY":24},{"sizeX":24,"x":32,"y":64,"id":388,"sizeY":24},{"sizeX":24,"x":224,"y":128,"id":389,"sizeY":24},{"sizeX":24,"x":192,"y":128,"id":390,"sizeY":24},{"sizeX":24,"x":256,"y":128,"id":391,"sizeY":24},{"sizeX":24,"x":32,"y":96,"id":392,"sizeY":24},{"sizeX":24,"x":64,"y":96,"id":393,"sizeY":24},{"sizeX":24,"x":96,"y":96,"id":394,"sizeY":24},{"sizeX":24,"x":128,"y":96,"id":395,"sizeY":24},{"sizeX":24,"x":160,"y":128,"id":396,"sizeY":24},{"sizeX":24,"x":288,"y":128,"id":397,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":464,"sizeY":24}],"lineID":40,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Tier X","icon":{"id":"DraconicEvolution:chaosCrystal","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary quest-line with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":40},{"quests":[{"sizeX":24,"x":0,"y":0,"id":398,"sizeY":24},{"sizeX":24,"x":0,"y":32,"id":399,"sizeY":24},{"sizeX":24,"x":0,"y":64,"id":400,"sizeY":24},{"sizeX":24,"x":32,"y":0,"id":401,"sizeY":24},{"sizeX":24,"x":64,"y":32,"id":402,"sizeY":24},{"sizeX":24,"x":64,"y":0,"id":403,"sizeY":24},{"sizeX":24,"x":64,"y":64,"id":404,"sizeY":24},{"sizeX":24,"x":32,"y":32,"id":405,"sizeY":24}],"lineID":41,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Legendary Infinity","icon":{"id":"minecraft:dragon_egg","Count":1,"Damage":0,"OreDict":""},"bg_image":"","bg_size":256,"desc":"A legendary questline with difficult tasks, expensive recipes and potentially dangerous locations. Are you prepared?"}},"order":41},{"quests":[{"sizeX":24,"x":36,"y":0,"id":439,"sizeY":24},{"sizeX":24,"x":0,"y":0,"id":441,"sizeY":24},{"sizeX":24,"x":72,"y":0,"id":443,"sizeY":24},{"sizeX":24,"x":108,"y":0,"id":445,"sizeY":24},{"sizeX":24,"x":144,"y":0,"id":447,"sizeY":24},{"sizeX":24,"x":180,"y":0,"id":449,"sizeY":24},{"sizeX":24,"x":0,"y":144,"id":564,"sizeY":24},{"sizeX":24,"x":36,"y":144,"id":565,"sizeY":24},{"sizeX":24,"x":144,"y":144,"id":566,"sizeY":24},{"sizeX":24,"x":180,"y":144,"id":567,"sizeY":24},{"sizeX":24,"x":0,"y":48,"id":568,"sizeY":24},{"sizeX":24,"x":36,"y":48,"id":569,"sizeY":24},{"sizeX":24,"x":72,"y":48,"id":570,"sizeY":24},{"sizeX":24,"x":108,"y":48,"id":571,"sizeY":24},{"sizeX":24,"x":0,"y":96,"id":572,"sizeY":24},{"sizeX":24,"x":36,"y":96,"id":573,"sizeY":24},{"sizeX":24,"x":144,"y":96,"id":574,"sizeY":24},{"sizeX":24,"x":180,"y":96,"id":575,"sizeY":24},{"sizeX":24,"x":0,"y":192,"id":678,"sizeY":24},{"sizeX":24,"x":36,"y":192,"id":679,"sizeY":24},{"sizeX":24,"x":72,"y":192,"id":680,"sizeY":24},{"sizeX":24,"x":144,"y":192,"id":681,"sizeY":24},{"sizeX":24,"x":180,"y":192,"id":682,"sizeY":24},{"sizeX":24,"x":216,"y":0,"id":1690,"sizeY":24}],"lineID":42,"properties":{"betterquesting":{"visibility":"NORMAL","name":"Reward Area","icon":{"id":"enhancedlootbags:lootbag","Count":1,"tag":{"ench":[{"lvl":3,"id":35}]},"Damage":44,"OreDict":""},"bg_image":"","bg_size":256,"desc":"Upgrade your loot bags!"}},"order":42}],"questSettings":{"betterquesting":{"livesMax":10,"pack_name":"GT-New-Horizons","home_anchor_y":0,"livesDef":3,"home_anchor_x":0.5,"hardcore":0,"home_image":"dreamcraft:textures/gui/gtnh_title.png","party_enable":1,"pack_version":2075,"editMode":0,"home_offset_x":-128,"home_offset_y":0}}} diff --git a/src/Server/Search.fs b/src/Server/Search.fs new file mode 100644 index 0000000..6eb87ae --- /dev/null +++ b/src/Server/Search.fs @@ -0,0 +1,56 @@ +module Search + +open Lucene.Net.Util +open Lucene.Net.Store +open System.IO +open Lucene.Net.Index +open Shared +open Lucene.Net.Documents +open Lucene.Net.Search +open Lucene.Net.QueryParsers.Simple +open System.Collections.Generic +open System.Linq + +[] +let VERSION = LuceneVersion.LUCENE_48 + +let questSearch quests = + let storage = new RAMDirectory() //new MMapDirectory(DirectoryInfo("./lucene-index")) + let analyzer = new Lucene.Net.Analysis.Standard.StandardAnalyzer(VERSION) + let indexConfig = IndexWriterConfig(VERSION, analyzer) + let writer = new IndexWriter(storage, indexConfig) + + let questToDoc (quest: Quest) = + let doc = Document() + doc.AddInt32Field("ID", quest.Id, Field.Store.YES) |> ignore + doc.AddTextField("Name", quest.Name, Field.Store.YES) |> ignore + doc.AddTextField("Description", quest.Description, Field.Store.YES) |> ignore + doc :> IIndexableField seq + + quests + |> List.map questToDoc + |> writer.AddDocuments + do writer.Flush(true, true) + + let reader = writer.GetReader(false) + let searcher = IndexSearcher(reader) + + let parser = + SimpleQueryParser + (analyzer, + dict + [ "Name", 0.5f + "Description", 0.5f ]) + + let getDoc id = + let doc = searcher.Doc(id) + { Id = doc.GetField("ID").GetInt32Value().GetValueOrDefault() + Name = doc.Get("Name") + Description = doc.Get("Description") } + + fun searchText -> + let query = parser.Parse(searchText) + searcher.Search(query, 20).ScoreDocs + |> Array.toList + |> List.sortBy (fun d -> d.Score) + |> List.map (fun d -> d.Doc |> getDoc) diff --git a/src/Server/Server.fs b/src/Server/Server.fs index 97ad83d..da82edf 100644 --- a/src/Server/Server.fs +++ b/src/Server/Server.fs @@ -28,34 +28,41 @@ let questSources = [ "2.0.7.5", Parsers.BQv1.parser "./SampleData/DefaultQuests-2.0.7.5-cleaned-minified.json" - "2.0.7.6c-dev", - Parsers.BQv3.parser "./SampleData/DefaultQuests-2.0.7.6c-dev-cleaned-minified.json" + "2.0.7.7-dev", + Parsers.BQv3.parser "./SampleData/DefaultQuests-2.0.7.7-dev-cleaned-minified.json" ] - "2.0.7.6d-dev", - Parsers.BQv3.parser "./SampleData/DefaultQuests-2.0.7.6d-dev-cleaned-minified.json" - - "2.0.7.6e-dev", - Parsers.BQv3.parser "./SampleData/DefaultQuests-2.0.7.6e-dev-cleaned-minified.json" ] + |> List.map (fun (id,parser) -> (id,parser, Search.questSearch parser.getQuests)) let recipeSources = [ "2.0.7.5", - Async.RunSynchronously <| Parsers.RecEx.parser "./SampleData/v2.0.7.5-gt-shaped-shapeless-cleaned-minified.json" ] + Parsers.RecEx.parser "./SampleData/v2.0.7.5-gt-shaped-shapeless-cleaned-minified.json", "" ] + +let fst3 (a,b,c) = a +let snd3 (a,b,c) = b +let trd3 (a,b,c) = c let parserBySourceId list (src:Source) = list - |> List.where (fst >> ((=) src)) + |> List.where (fst3 >> ((=) src)) + |> List.exactlyOne + |> snd3 + +let searcherBySourceId list (src:Source) = + list + |> List.where (fst3 >> ((=) src)) |> List.exactlyOne - |> snd + |> trd3 -let rnd = System.Random() let api : IApi = - { questSources = fun () -> async { return questSources |> List.map fst } + { questSources = fun () -> async { return questSources |> List.map fst3 } quests = fun src -> async { return (parserBySourceId questSources src).getQuests } questLines = fun src -> async { return (parserBySourceId questSources src).getQuestLines } questLineById = fun src id -> async { return (parserBySourceId questSources src).getQuestLineById id } - recipeSources = fun () -> async { return recipeSources |> List.map fst } - recipes = fun src -> async { return ((parserBySourceId recipeSources src).getRecipes |> List.choose (fun i -> if rnd.Next(0,10000) <= 1 then Some i else None)) }; - items = fun src -> async {return (parserBySourceId recipeSources src).getItems} } + questSearch = fun (src,searchText) -> async { return searchText |> (searcherBySourceId questSources src) } + recipeSources = fun () -> async { return recipeSources |> List.map fst3 } + items = fun src -> async { + let! parser = parserBySourceId recipeSources src + return parser.getItems} } let webApp = Remoting.createApi() diff --git a/src/Server/Server.fsproj b/src/Server/Server.fsproj index 7de1bdf..d74cbeb 100644 --- a/src/Server/Server.fsproj +++ b/src/Server/Server.fsproj @@ -1,14 +1,15 @@ - - Exe - netcoreapp3.0 - - - - - - - - - + + Exe + netcoreapp3.0 + + + + + + + + + + \ No newline at end of file diff --git a/src/Server/paket.references b/src/Server/paket.references index e008ffe..ac9c33f 100644 --- a/src/Server/paket.references +++ b/src/Server/paket.references @@ -3,3 +3,6 @@ group Server Saturn Fable.Remoting.Giraffe Fsharp.Data + Lucene.Net + Lucene.Net.Analysis.Common + Lucene.Net.QueryParser diff --git a/src/Shared/Shared.fs b/src/Shared/Shared.fs index 12141a7..5bed6d0 100644 --- a/src/Shared/Shared.fs +++ b/src/Shared/Shared.fs @@ -35,6 +35,13 @@ type QuestLine = { QuestLineInfo: QuestLineInfo Quests: QuestLineQuest list } +type QuestSearchResult = + { Id: int + Name: string + Description: string } + +//Recipes + type GregtechDetails = { MachineName: string } @@ -58,9 +65,10 @@ type Recipe = type IApi = { questSources: unit -> Async - quests: string -> Async - questLines: string -> Async + quests: Source -> Async + questLines: Source -> Async questLineById: string -> int -> Async + questSearch: Source * string -> Async recipeSources: unit -> Async - recipes: string -> Async + //recipes: string -> Async items: string -> Async }